├── .gitignore ├── README.md ├── pen-testing └── port-scanner.py └── pwd-crackers ├── .swp ├── Will-Ferrel.jpg ├── dictionary.txt ├── passwords.txt ├── test.zip ├── unix-pwd-crack.py └── zip-crack.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/README.md -------------------------------------------------------------------------------- /pen-testing/port-scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/pen-testing/port-scanner.py -------------------------------------------------------------------------------- /pwd-crackers/.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/pwd-crackers/.swp -------------------------------------------------------------------------------- /pwd-crackers/Will-Ferrel.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwd-crackers/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/pwd-crackers/dictionary.txt -------------------------------------------------------------------------------- /pwd-crackers/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/pwd-crackers/passwords.txt -------------------------------------------------------------------------------- /pwd-crackers/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/pwd-crackers/test.zip -------------------------------------------------------------------------------- /pwd-crackers/unix-pwd-crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/pwd-crackers/unix-pwd-crack.py -------------------------------------------------------------------------------- /pwd-crackers/zip-crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igniteflow/violent-python/HEAD/pwd-crackers/zip-crack.py --------------------------------------------------------------------------------