Skip to content

a232319779/mmts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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