├── Syngress.Violent.Python.a.Cookbook.for.Hackers.2013.pdf ├── pysqrl └── .idea │ ├── pysqrl.iml │ ├── scopes │ └── scope_settings.xml │ └── workspace.xml └── violent_python ├── .idea ├── .name ├── dictionaries │ └── root.xml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml ├── violent_python.iml └── workspace.xml ├── Introduction ├── iteration.py ├── socket_test.py └── socket_test.pyc ├── Port_Scanner.py ├── network_analysis └── printGeo.py ├── sniff ├── google-searches.py └── test-sniff.py ├── sqlite3 └── printProfile.py └── ssh_botnet └── sshConnect.py /Syngress.Violent.Python.a.Cookbook.for.Hackers.2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/Syngress.Violent.Python.a.Cookbook.for.Hackers.2013.pdf -------------------------------------------------------------------------------- /pysqrl/.idea/pysqrl.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/pysqrl/.idea/pysqrl.iml -------------------------------------------------------------------------------- /pysqrl/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/pysqrl/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /pysqrl/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/pysqrl/.idea/workspace.xml -------------------------------------------------------------------------------- /violent_python/.idea/.name: -------------------------------------------------------------------------------- 1 | violent_python -------------------------------------------------------------------------------- /violent_python/.idea/dictionaries/root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/dictionaries/root.xml -------------------------------------------------------------------------------- /violent_python/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/encodings.xml -------------------------------------------------------------------------------- /violent_python/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /violent_python/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /violent_python/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/misc.xml -------------------------------------------------------------------------------- /violent_python/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/modules.xml -------------------------------------------------------------------------------- /violent_python/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /violent_python/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/vcs.xml -------------------------------------------------------------------------------- /violent_python/.idea/violent_python.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/violent_python.iml -------------------------------------------------------------------------------- /violent_python/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/.idea/workspace.xml -------------------------------------------------------------------------------- /violent_python/Introduction/iteration.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /violent_python/Introduction/socket_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/Introduction/socket_test.py -------------------------------------------------------------------------------- /violent_python/Introduction/socket_test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/Introduction/socket_test.pyc -------------------------------------------------------------------------------- /violent_python/Port_Scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/Port_Scanner.py -------------------------------------------------------------------------------- /violent_python/network_analysis/printGeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/network_analysis/printGeo.py -------------------------------------------------------------------------------- /violent_python/sniff/google-searches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/sniff/google-searches.py -------------------------------------------------------------------------------- /violent_python/sniff/test-sniff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/sniff/test-sniff.py -------------------------------------------------------------------------------- /violent_python/sqlite3/printProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/sqlite3/printProfile.py -------------------------------------------------------------------------------- /violent_python/ssh_botnet/sshConnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reconSF/python/HEAD/violent_python/ssh_botnet/sshConnect.py --------------------------------------------------------------------------------