├── LICENSE ├── README.md ├── SRE.py ├── SREwin.py ├── api_analyse.py ├── config ├── api_key.txt └── yara-rules.zip ├── disasm_extracts.py ├── integrity_analyse.py ├── ioc_extracts.py ├── malicious_behavior_analyse.py ├── metadata_analyse.py ├── packer_detections.py ├── requirements.txt ├── strings_analyse.py ├── vt_check_adv.py ├── vt_check_json.py └── vt_checks.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/README.md -------------------------------------------------------------------------------- /SRE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/SRE.py -------------------------------------------------------------------------------- /SREwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/SREwin.py -------------------------------------------------------------------------------- /api_analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/api_analyse.py -------------------------------------------------------------------------------- /config/api_key.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /config/yara-rules.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/config/yara-rules.zip -------------------------------------------------------------------------------- /disasm_extracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/disasm_extracts.py -------------------------------------------------------------------------------- /integrity_analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/integrity_analyse.py -------------------------------------------------------------------------------- /ioc_extracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/ioc_extracts.py -------------------------------------------------------------------------------- /malicious_behavior_analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/malicious_behavior_analyse.py -------------------------------------------------------------------------------- /metadata_analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/metadata_analyse.py -------------------------------------------------------------------------------- /packer_detections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/packer_detections.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/requirements.txt -------------------------------------------------------------------------------- /strings_analyse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/strings_analyse.py -------------------------------------------------------------------------------- /vt_check_adv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/vt_check_adv.py -------------------------------------------------------------------------------- /vt_check_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/vt_check_json.py -------------------------------------------------------------------------------- /vt_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malsearchs/Static-Reverse-Engineering-SRE/HEAD/vt_checks.py --------------------------------------------------------------------------------