├── .gitignore ├── LICENSE ├── README.md ├── ta505_examples ├── README.md └── ta505_examples.zip ├── ta505_gifs ├── README.md ├── TAFOF_getandgodll_xls.gif └── TAFOF_silence.gif ├── ta505_unpacker.py └── ta505_unpacker_scripts ├── __init__.py ├── ta505_decode_code.py ├── ta505_gen_funcs.py ├── ta505_get_exec_xor.py └── ta505_xls_bin_extractor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/README.md -------------------------------------------------------------------------------- /ta505_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_examples/README.md -------------------------------------------------------------------------------- /ta505_examples/ta505_examples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_examples/ta505_examples.zip -------------------------------------------------------------------------------- /ta505_gifs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_gifs/README.md -------------------------------------------------------------------------------- /ta505_gifs/TAFOF_getandgodll_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_gifs/TAFOF_getandgodll_xls.gif -------------------------------------------------------------------------------- /ta505_gifs/TAFOF_silence.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_gifs/TAFOF_silence.gif -------------------------------------------------------------------------------- /ta505_unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_unpacker.py -------------------------------------------------------------------------------- /ta505_unpacker_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ta505_unpacker_scripts/ta505_decode_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_unpacker_scripts/ta505_decode_code.py -------------------------------------------------------------------------------- /ta505_unpacker_scripts/ta505_gen_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_unpacker_scripts/ta505_gen_funcs.py -------------------------------------------------------------------------------- /ta505_unpacker_scripts/ta505_get_exec_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_unpacker_scripts/ta505_get_exec_xor.py -------------------------------------------------------------------------------- /ta505_unpacker_scripts/ta505_xls_bin_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tera0017/TAFOF-Unpacker/HEAD/ta505_unpacker_scripts/ta505_xls_bin_extractor.py --------------------------------------------------------------------------------