├── .gitignore ├── Readme.md ├── gui.py ├── image ├── image_FfW59jouoI.png ├── image_G1BzmSRkhb.png ├── image_YTpT2NSM6S.png ├── image_tlFhf0xVCi.png ├── image_uHisy_fry6.png └── image_zOH3TYB-Y1.png ├── logs ├── __init__.py └── log.py ├── rendered_jsonl_wrapped_response.html ├── requirements.txt ├── test ├── test.class ├── test.py ├── test2.py └── test3.py ├── util ├── __init__.py ├── decrypter.py ├── formater.py ├── jsonReader.py ├── jsonl2html.py └── pcapReader.py ├── webshell.pcap ├── webshell.pcap_decrypted.jsonl └── webshell ├── Behinder.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/Readme.md -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/gui.py -------------------------------------------------------------------------------- /image/image_FfW59jouoI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/image/image_FfW59jouoI.png -------------------------------------------------------------------------------- /image/image_G1BzmSRkhb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/image/image_G1BzmSRkhb.png -------------------------------------------------------------------------------- /image/image_YTpT2NSM6S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/image/image_YTpT2NSM6S.png -------------------------------------------------------------------------------- /image/image_tlFhf0xVCi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/image/image_tlFhf0xVCi.png -------------------------------------------------------------------------------- /image/image_uHisy_fry6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/image/image_uHisy_fry6.png -------------------------------------------------------------------------------- /image/image_zOH3TYB-Y1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/image/image_zOH3TYB-Y1.png -------------------------------------------------------------------------------- /logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/logs/log.py -------------------------------------------------------------------------------- /rendered_jsonl_wrapped_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/rendered_jsonl_wrapped_response.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/test/test.class -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/test/test2.py -------------------------------------------------------------------------------- /test/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/test/test3.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/decrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/util/decrypter.py -------------------------------------------------------------------------------- /util/formater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/util/formater.py -------------------------------------------------------------------------------- /util/jsonReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/util/jsonReader.py -------------------------------------------------------------------------------- /util/jsonl2html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/util/jsonl2html.py -------------------------------------------------------------------------------- /util/pcapReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/util/pcapReader.py -------------------------------------------------------------------------------- /webshell.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/webshell.pcap -------------------------------------------------------------------------------- /webshell.pcap_decrypted.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/webshell.pcap_decrypted.jsonl -------------------------------------------------------------------------------- /webshell/Behinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intbjw/webshell-decryptor/HEAD/webshell/Behinder.py -------------------------------------------------------------------------------- /webshell/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------