mmts

MM tools script


License
MIT
Install
pip install mmts==0.0.2

Documentation

MMTS

MM tools scripts

blogs

Desfuscation

Insatall

$ pip install mmts

Usage

1. Command

# decmd
# In the `$cmd_file` file, there is one obfuscation command per line. After the execution is completed, a `$cmd_file.clear` file is generated in the current directory, and the command after deobfuscation is saved.
$ mmts-decmd $cmd_file

# parse lnk
$ mmts-parselnk $cmd_file

2. Quick Start

decmd

from mmts import de_dosfuscation_work

def main():
    clear_str = de_dosfuscation_work("mix_str")
    print(clear)

if __name__ == "__main__":
    main()

Example

decmd