├── .gitattributes ├── README.md ├── decrypt_l0rdix_c2.py ├── deobfuscate_ostap.py ├── graph_similar_document_images ├── README.md ├── graph_similar_document_images.py ├── image_hash_signatures.txt ├── images │ ├── graph_similar_document_images_screenshot_1.png │ └── graph_similar_document_images_screenshot_2.png └── requirements.txt └── graph_similar_strings ├── README.md ├── graph_similar_strings.py ├── images └── graph_similar_strings_screenshot_1.png └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /decrypt_l0rdix_c2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/decrypt_l0rdix_c2.py -------------------------------------------------------------------------------- /deobfuscate_ostap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/deobfuscate_ostap.py -------------------------------------------------------------------------------- /graph_similar_document_images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_document_images/README.md -------------------------------------------------------------------------------- /graph_similar_document_images/graph_similar_document_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_document_images/graph_similar_document_images.py -------------------------------------------------------------------------------- /graph_similar_document_images/image_hash_signatures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_document_images/image_hash_signatures.txt -------------------------------------------------------------------------------- /graph_similar_document_images/images/graph_similar_document_images_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_document_images/images/graph_similar_document_images_screenshot_1.png -------------------------------------------------------------------------------- /graph_similar_document_images/images/graph_similar_document_images_screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_document_images/images/graph_similar_document_images_screenshot_2.png -------------------------------------------------------------------------------- /graph_similar_document_images/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_document_images/requirements.txt -------------------------------------------------------------------------------- /graph_similar_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_strings/README.md -------------------------------------------------------------------------------- /graph_similar_strings/graph_similar_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_strings/graph_similar_strings.py -------------------------------------------------------------------------------- /graph_similar_strings/images/graph_similar_strings_screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_strings/images/graph_similar_strings_screenshot_1.png -------------------------------------------------------------------------------- /graph_similar_strings/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptogramfan/Malware-Analysis-Scripts/HEAD/graph_similar_strings/requirements.txt --------------------------------------------------------------------------------