├── .gitignore ├── LICENSE ├── combinations.py ├── ez_b64 ├── inject_shellcode.py ├── pdf_dumper.py ├── pem_extract.py ├── permutations.py ├── rot_alpha.py ├── rsa_wrapper.py ├── tcp_client.py ├── udp_client.py ├── wordlist_add_digits.py └── xor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/combinations.py -------------------------------------------------------------------------------- /ez_b64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/ez_b64 -------------------------------------------------------------------------------- /inject_shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/inject_shellcode.py -------------------------------------------------------------------------------- /pdf_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/pdf_dumper.py -------------------------------------------------------------------------------- /pem_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/pem_extract.py -------------------------------------------------------------------------------- /permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/permutations.py -------------------------------------------------------------------------------- /rot_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/rot_alpha.py -------------------------------------------------------------------------------- /rsa_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/rsa_wrapper.py -------------------------------------------------------------------------------- /tcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/tcp_client.py -------------------------------------------------------------------------------- /udp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/udp_client.py -------------------------------------------------------------------------------- /wordlist_add_digits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/wordlist_add_digits.py -------------------------------------------------------------------------------- /xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Matir/analysis-tools/HEAD/xor.py --------------------------------------------------------------------------------