├── .gitignore ├── .gitmodules ├── .idea ├── .name ├── hacking-tools.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── ddos ├── .gitignore ├── bootstrap.sh ├── child.py ├── config.py ├── controller.py ├── requirements.txt ├── run.py └── tests.py ├── file_hasher ├── .idea │ ├── .name │ ├── dictionaries │ │ └── girish.xml │ ├── encodings.xml │ ├── file_hasher.iml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── vcs.xml │ └── workspace.xml ├── _pfish.py ├── _pfish_tools.py └── fileSystemReport1.csv ├── port_scanner └── portScan.py ├── pyhashcat ├── .idea │ ├── .name │ ├── misc.xml │ ├── modules.xml │ ├── pychashcat.iml │ ├── vcs.xml │ └── workspace.xml ├── pyhashcat │ ├── Hasher.py │ ├── cli.py │ ├── keyGenerator.py │ └── main.py ├── sre_yield │ ├── __init__.py │ ├── cachingseq.py │ ├── fastdivmod.py │ └── tests │ │ ├── __init__.py │ │ ├── test_bigrange.py │ │ ├── test_cachingseq.py │ │ ├── test_fastdivmod.py │ │ ├── test_slicing.py │ │ ├── test_sre_yield.py │ │ └── test_sre_yield_slow.py └── tests │ ├── sre_test.py │ ├── test_command_line.py │ ├── test_hash_compare.py │ └── test_key_generator.py └── webioTools ├── __init__.py ├── formsubmitter.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | pyhashcat/.idea/* 3 | *.py.bak 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | hacking-tools -------------------------------------------------------------------------------- /.idea/hacking-tools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/.idea/hacking-tools.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/README.md -------------------------------------------------------------------------------- /ddos/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /ddos/bootstrap.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ddos/child.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/ddos/child.py -------------------------------------------------------------------------------- /ddos/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/ddos/config.py -------------------------------------------------------------------------------- /ddos/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/ddos/controller.py -------------------------------------------------------------------------------- /ddos/requirements.txt: -------------------------------------------------------------------------------- 1 | asyncio_redis 2 | aiohttp 3 | cchardet 4 | -------------------------------------------------------------------------------- /ddos/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/ddos/run.py -------------------------------------------------------------------------------- /ddos/tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file_hasher/.idea/.name: -------------------------------------------------------------------------------- 1 | file_hasher -------------------------------------------------------------------------------- /file_hasher/.idea/dictionaries/girish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/.idea/dictionaries/girish.xml -------------------------------------------------------------------------------- /file_hasher/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/.idea/encodings.xml -------------------------------------------------------------------------------- /file_hasher/.idea/file_hasher.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/.idea/file_hasher.iml -------------------------------------------------------------------------------- /file_hasher/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/.idea/misc.xml -------------------------------------------------------------------------------- /file_hasher/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/.idea/modules.xml -------------------------------------------------------------------------------- /file_hasher/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /file_hasher/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/.idea/vcs.xml -------------------------------------------------------------------------------- /file_hasher/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/.idea/workspace.xml -------------------------------------------------------------------------------- /file_hasher/_pfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/_pfish.py -------------------------------------------------------------------------------- /file_hasher/_pfish_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/_pfish_tools.py -------------------------------------------------------------------------------- /file_hasher/fileSystemReport1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/file_hasher/fileSystemReport1.csv -------------------------------------------------------------------------------- /port_scanner/portScan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/port_scanner/portScan.py -------------------------------------------------------------------------------- /pyhashcat/.idea/.name: -------------------------------------------------------------------------------- 1 | pychashcat -------------------------------------------------------------------------------- /pyhashcat/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/.idea/misc.xml -------------------------------------------------------------------------------- /pyhashcat/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/.idea/modules.xml -------------------------------------------------------------------------------- /pyhashcat/.idea/pychashcat.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/.idea/pychashcat.iml -------------------------------------------------------------------------------- /pyhashcat/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/.idea/vcs.xml -------------------------------------------------------------------------------- /pyhashcat/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/.idea/workspace.xml -------------------------------------------------------------------------------- /pyhashcat/pyhashcat/Hasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/pyhashcat/Hasher.py -------------------------------------------------------------------------------- /pyhashcat/pyhashcat/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/pyhashcat/cli.py -------------------------------------------------------------------------------- /pyhashcat/pyhashcat/keyGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/pyhashcat/keyGenerator.py -------------------------------------------------------------------------------- /pyhashcat/pyhashcat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/pyhashcat/main.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/__init__.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/cachingseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/cachingseq.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/fastdivmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/fastdivmod.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhashcat/sre_yield/tests/test_bigrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/tests/test_bigrange.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/tests/test_cachingseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/tests/test_cachingseq.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/tests/test_fastdivmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/tests/test_fastdivmod.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/tests/test_slicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/tests/test_slicing.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/tests/test_sre_yield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/tests/test_sre_yield.py -------------------------------------------------------------------------------- /pyhashcat/sre_yield/tests/test_sre_yield_slow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/sre_yield/tests/test_sre_yield_slow.py -------------------------------------------------------------------------------- /pyhashcat/tests/sre_test.py: -------------------------------------------------------------------------------- 1 | __author__ = 'girish' 2 | -------------------------------------------------------------------------------- /pyhashcat/tests/test_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/tests/test_command_line.py -------------------------------------------------------------------------------- /pyhashcat/tests/test_hash_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/tests/test_hash_compare.py -------------------------------------------------------------------------------- /pyhashcat/tests/test_key_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/pyhashcat/tests/test_key_generator.py -------------------------------------------------------------------------------- /webioTools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'girish' 2 | -------------------------------------------------------------------------------- /webioTools/formsubmitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/girishramnani/hacking-tools/HEAD/webioTools/formsubmitter.py -------------------------------------------------------------------------------- /webioTools/requirements.txt: -------------------------------------------------------------------------------- 1 | pyside 2 | ghost.py 3 | --------------------------------------------------------------------------------