├── .gitignore ├── .gitignore_global ├── =Others= ├── bin2db.py ├── maze_bfs.py ├── myPwn.py ├── pexpect_Ix.py └── printOpcode.py ├── Angr └── myAngr.py ├── Brainfuck ├── bfCode.bf ├── brainfuck2HLPL_c.py ├── brainfuck2HLPL_py.py ├── res.c └── res.py ├── IDAprocess ├── IDAPython │ ├── nop_JunkCode.py │ └── patch_SMC.py └── aProcOfManyEquals │ ├── aProcOfManyEquals.py │ └── aProcOfManyEquals.txt ├── LICENSE ├── README.md ├── VMprotect ├── VMinterpreter.py ├── assembly.txt ├── printf_VMinterpreter.py └── printf_assembly.txt └── _CRYPTO_ ├── Base64 └── transBase64.py ├── DES ├── DES ├── DES.cpp └── DES.py ├── Generate_inv_SBox.py ├── MD5 ├── MD5 ├── MD5.c ├── MD5.py ├── MD5_std └── MD5_std.c └── RC4 ├── RC4 ├── RC4.cpp └── RC4.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/.gitignore_global -------------------------------------------------------------------------------- /=Others=/bin2db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/=Others=/bin2db.py -------------------------------------------------------------------------------- /=Others=/maze_bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/=Others=/maze_bfs.py -------------------------------------------------------------------------------- /=Others=/myPwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/=Others=/myPwn.py -------------------------------------------------------------------------------- /=Others=/pexpect_Ix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/=Others=/pexpect_Ix.py -------------------------------------------------------------------------------- /=Others=/printOpcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/=Others=/printOpcode.py -------------------------------------------------------------------------------- /Angr/myAngr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/Angr/myAngr.py -------------------------------------------------------------------------------- /Brainfuck/bfCode.bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/Brainfuck/bfCode.bf -------------------------------------------------------------------------------- /Brainfuck/brainfuck2HLPL_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/Brainfuck/brainfuck2HLPL_c.py -------------------------------------------------------------------------------- /Brainfuck/brainfuck2HLPL_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/Brainfuck/brainfuck2HLPL_py.py -------------------------------------------------------------------------------- /Brainfuck/res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/Brainfuck/res.c -------------------------------------------------------------------------------- /Brainfuck/res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/Brainfuck/res.py -------------------------------------------------------------------------------- /IDAprocess/IDAPython/nop_JunkCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/IDAprocess/IDAPython/nop_JunkCode.py -------------------------------------------------------------------------------- /IDAprocess/IDAPython/patch_SMC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/IDAprocess/IDAPython/patch_SMC.py -------------------------------------------------------------------------------- /IDAprocess/aProcOfManyEquals/aProcOfManyEquals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/IDAprocess/aProcOfManyEquals/aProcOfManyEquals.py -------------------------------------------------------------------------------- /IDAprocess/aProcOfManyEquals/aProcOfManyEquals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/IDAprocess/aProcOfManyEquals/aProcOfManyEquals.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/README.md -------------------------------------------------------------------------------- /VMprotect/VMinterpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/VMprotect/VMinterpreter.py -------------------------------------------------------------------------------- /VMprotect/assembly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/VMprotect/assembly.txt -------------------------------------------------------------------------------- /VMprotect/printf_VMinterpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/VMprotect/printf_VMinterpreter.py -------------------------------------------------------------------------------- /VMprotect/printf_assembly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/VMprotect/printf_assembly.txt -------------------------------------------------------------------------------- /_CRYPTO_/Base64/transBase64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/Base64/transBase64.py -------------------------------------------------------------------------------- /_CRYPTO_/DES/DES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/DES/DES -------------------------------------------------------------------------------- /_CRYPTO_/DES/DES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/DES/DES.cpp -------------------------------------------------------------------------------- /_CRYPTO_/DES/DES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/DES/DES.py -------------------------------------------------------------------------------- /_CRYPTO_/Generate_inv_SBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/Generate_inv_SBox.py -------------------------------------------------------------------------------- /_CRYPTO_/MD5/MD5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/MD5/MD5 -------------------------------------------------------------------------------- /_CRYPTO_/MD5/MD5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/MD5/MD5.c -------------------------------------------------------------------------------- /_CRYPTO_/MD5/MD5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/MD5/MD5.py -------------------------------------------------------------------------------- /_CRYPTO_/MD5/MD5_std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/MD5/MD5_std -------------------------------------------------------------------------------- /_CRYPTO_/MD5/MD5_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/MD5/MD5_std.c -------------------------------------------------------------------------------- /_CRYPTO_/RC4/RC4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/RC4/RC4 -------------------------------------------------------------------------------- /_CRYPTO_/RC4/RC4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/RC4/RC4.cpp -------------------------------------------------------------------------------- /_CRYPTO_/RC4/RC4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c10udlnk/myReverseExps/HEAD/_CRYPTO_/RC4/RC4.py --------------------------------------------------------------------------------