├── README.md ├── brc4 ├── README.md ├── brc4.yara ├── brc4_unpack.py └── requirements.txt ├── ghidra_scripts ├── README.md └── oski_decrypt_strings.py └── stack.py /README.md: -------------------------------------------------------------------------------- 1 | # Malware Analysis 2 | -------------------------------------------------------------------------------- /brc4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthw/malware_analysis/HEAD/brc4/README.md -------------------------------------------------------------------------------- /brc4/brc4.yara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthw/malware_analysis/HEAD/brc4/brc4.yara -------------------------------------------------------------------------------- /brc4/brc4_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthw/malware_analysis/HEAD/brc4/brc4_unpack.py -------------------------------------------------------------------------------- /brc4/requirements.txt: -------------------------------------------------------------------------------- 1 | angr 2 | capstone 3 | pefile 4 | pycryptodome 5 | unicorn 6 | -------------------------------------------------------------------------------- /ghidra_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthw/malware_analysis/HEAD/ghidra_scripts/README.md -------------------------------------------------------------------------------- /ghidra_scripts/oski_decrypt_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthw/malware_analysis/HEAD/ghidra_scripts/oski_decrypt_strings.py -------------------------------------------------------------------------------- /stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthw/malware_analysis/HEAD/stack.py --------------------------------------------------------------------------------