├── .gitattributes ├── .gitignore ├── README.md ├── c ├── FakeBFP4F │ ├── FakeBFP4F.sln │ └── FakeBFP4F │ │ ├── FakeBFP4F.cpp │ │ └── FakeBFP4F.vcproj ├── PnkDecode │ ├── Decoder │ │ ├── Decoder.vcproj │ │ └── main.cpp │ └── PnkDecoder.sln ├── main.cpp ├── pintools │ ├── MemWatcher │ │ ├── MemWatcher.cpp │ │ ├── MemWatcher.sln │ │ ├── MemWatcher.vcproj │ │ └── makefile │ └── PnkBstrBLogger │ │ ├── PnkBstrBLogger.cpp │ │ ├── PnkBstrBLogger.h │ │ ├── PnkBstrBLogger.sln │ │ ├── PnkBstrBLogger.sln.old │ │ ├── PnkBstrBLogger.vcproj │ │ ├── PnkBstrBLogger.vcproj.8.00.old │ │ └── makefile └── randomtools │ ├── PnkNetDecryptLoader │ ├── PnkNetDecryptLoader.sln │ └── PnkNetDecryptLoader │ │ ├── PnkNetDecryptLoader.vcproj │ │ ├── main.cpp │ │ └── zoop.txt │ ├── misc_funcs │ ├── misc_funcs.sln │ └── misc_funcs │ │ ├── main.cpp │ │ └── misc_funcs.vcproj │ ├── pattern_struct │ ├── pattern_struct.sln │ └── pattern_struct │ │ ├── main.cpp │ │ └── pattern_struct.vcproj │ ├── pbag_loader │ ├── pbag_loader.sln │ └── pbag_loader │ │ ├── main.cpp │ │ └── pbag_loader.vcproj │ ├── pbcl_uncompress_tests │ ├── pbcl_uncompress_tests.sln │ └── pbcl_uncompress_tests │ │ ├── main.cpp │ │ └── pbcl_uncompress_tests.vcproj │ └── pnkbstrb_decrypt │ ├── pnkbstrb_decrypt.sln │ └── pnkbstrb_decrypt │ ├── main.cpp │ └── pnkbstrb_decrypt.vcproj ├── clients └── crass │ ├── crass.sln │ └── crass │ ├── Client.cs │ ├── Options.cs │ ├── PnkBstrAClient.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Utils.cs │ ├── crass.csproj │ └── pbclClient.cs ├── emulators ├── FnkBstrServices │ ├── FnkBstrA │ │ ├── FnkBstrA.cs │ │ ├── FnkBstrA.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FnkBstrB │ │ ├── FnkBstrB.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── FnkBstrServices.sln │ ├── Options │ │ ├── Options.cs │ │ ├── Options.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── UDPSocketService │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SocketService.csproj │ │ ├── UDPClientService.cs │ │ ├── UDPServerService.cs │ │ └── UDPServices.cs └── external │ └── ServiceInstaller.dll ├── notes ├── all-jumps.txt ├── decryption-asm.txt ├── encryption-algo.txt ├── func_xor_results.txt ├── master_dns_talk.txt ├── original_pbcl_to_server_c_translation.txt ├── pbag_notes.txt ├── pbcl_ca_hits.txt ├── pbcl_function.txt ├── pbcl_notes.txt └── punkbuster analysis steps.txt ├── py ├── PnkDecoder.exe ├── addr_mov.py ├── auto_func_unxor.py ├── auto_name_obfuscated_funcs.py ├── base_resolve.py ├── buff_differences.py ├── code_xref.py ├── data_xref.py ├── decrypt_qq_commands.py ├── pnkbstr_decoder - Copy.py ├── pnkbstr_decoder.py ├── print_func_xor.pbcl.py └── ret_calls.py └── service installers └── AAA ├── AAA.sln ├── AAA ├── AAA.csproj ├── Options.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs └── ServiceInstaller ├── Properties └── AssemblyInfo.cs ├── ServiceInstaller.cs └── ServiceInstaller.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | priv8 toolz -------------------------------------------------------------------------------- /c/FakeBFP4F/FakeBFP4F.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/FakeBFP4F/FakeBFP4F.sln -------------------------------------------------------------------------------- /c/FakeBFP4F/FakeBFP4F/FakeBFP4F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/FakeBFP4F/FakeBFP4F/FakeBFP4F.cpp -------------------------------------------------------------------------------- /c/FakeBFP4F/FakeBFP4F/FakeBFP4F.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/FakeBFP4F/FakeBFP4F/FakeBFP4F.vcproj -------------------------------------------------------------------------------- /c/PnkDecode/Decoder/Decoder.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/PnkDecode/Decoder/Decoder.vcproj -------------------------------------------------------------------------------- /c/PnkDecode/Decoder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/PnkDecode/Decoder/main.cpp -------------------------------------------------------------------------------- /c/PnkDecode/PnkDecoder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/PnkDecode/PnkDecoder.sln -------------------------------------------------------------------------------- /c/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/main.cpp -------------------------------------------------------------------------------- /c/pintools/MemWatcher/MemWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/MemWatcher/MemWatcher.cpp -------------------------------------------------------------------------------- /c/pintools/MemWatcher/MemWatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/MemWatcher/MemWatcher.sln -------------------------------------------------------------------------------- /c/pintools/MemWatcher/MemWatcher.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/MemWatcher/MemWatcher.vcproj -------------------------------------------------------------------------------- /c/pintools/MemWatcher/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/MemWatcher/makefile -------------------------------------------------------------------------------- /c/pintools/PnkBstrBLogger/PnkBstrBLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/PnkBstrBLogger/PnkBstrBLogger.cpp -------------------------------------------------------------------------------- /c/pintools/PnkBstrBLogger/PnkBstrBLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/PnkBstrBLogger/PnkBstrBLogger.h -------------------------------------------------------------------------------- /c/pintools/PnkBstrBLogger/PnkBstrBLogger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/PnkBstrBLogger/PnkBstrBLogger.sln -------------------------------------------------------------------------------- /c/pintools/PnkBstrBLogger/PnkBstrBLogger.sln.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/PnkBstrBLogger/PnkBstrBLogger.sln.old -------------------------------------------------------------------------------- /c/pintools/PnkBstrBLogger/PnkBstrBLogger.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/PnkBstrBLogger/PnkBstrBLogger.vcproj -------------------------------------------------------------------------------- /c/pintools/PnkBstrBLogger/PnkBstrBLogger.vcproj.8.00.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/PnkBstrBLogger/PnkBstrBLogger.vcproj.8.00.old -------------------------------------------------------------------------------- /c/pintools/PnkBstrBLogger/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/pintools/PnkBstrBLogger/makefile -------------------------------------------------------------------------------- /c/randomtools/PnkNetDecryptLoader/PnkNetDecryptLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/PnkNetDecryptLoader/PnkNetDecryptLoader.sln -------------------------------------------------------------------------------- /c/randomtools/PnkNetDecryptLoader/PnkNetDecryptLoader/PnkNetDecryptLoader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/PnkNetDecryptLoader/PnkNetDecryptLoader/PnkNetDecryptLoader.vcproj -------------------------------------------------------------------------------- /c/randomtools/PnkNetDecryptLoader/PnkNetDecryptLoader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/PnkNetDecryptLoader/PnkNetDecryptLoader/main.cpp -------------------------------------------------------------------------------- /c/randomtools/PnkNetDecryptLoader/PnkNetDecryptLoader/zoop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/PnkNetDecryptLoader/PnkNetDecryptLoader/zoop.txt -------------------------------------------------------------------------------- /c/randomtools/misc_funcs/misc_funcs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/misc_funcs/misc_funcs.sln -------------------------------------------------------------------------------- /c/randomtools/misc_funcs/misc_funcs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/misc_funcs/misc_funcs/main.cpp -------------------------------------------------------------------------------- /c/randomtools/misc_funcs/misc_funcs/misc_funcs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/misc_funcs/misc_funcs/misc_funcs.vcproj -------------------------------------------------------------------------------- /c/randomtools/pattern_struct/pattern_struct.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pattern_struct/pattern_struct.sln -------------------------------------------------------------------------------- /c/randomtools/pattern_struct/pattern_struct/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pattern_struct/pattern_struct/main.cpp -------------------------------------------------------------------------------- /c/randomtools/pattern_struct/pattern_struct/pattern_struct.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pattern_struct/pattern_struct/pattern_struct.vcproj -------------------------------------------------------------------------------- /c/randomtools/pbag_loader/pbag_loader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pbag_loader/pbag_loader.sln -------------------------------------------------------------------------------- /c/randomtools/pbag_loader/pbag_loader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pbag_loader/pbag_loader/main.cpp -------------------------------------------------------------------------------- /c/randomtools/pbag_loader/pbag_loader/pbag_loader.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pbag_loader/pbag_loader/pbag_loader.vcproj -------------------------------------------------------------------------------- /c/randomtools/pbcl_uncompress_tests/pbcl_uncompress_tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pbcl_uncompress_tests/pbcl_uncompress_tests.sln -------------------------------------------------------------------------------- /c/randomtools/pbcl_uncompress_tests/pbcl_uncompress_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pbcl_uncompress_tests/pbcl_uncompress_tests/main.cpp -------------------------------------------------------------------------------- /c/randomtools/pbcl_uncompress_tests/pbcl_uncompress_tests/pbcl_uncompress_tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pbcl_uncompress_tests/pbcl_uncompress_tests/pbcl_uncompress_tests.vcproj -------------------------------------------------------------------------------- /c/randomtools/pnkbstrb_decrypt/pnkbstrb_decrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pnkbstrb_decrypt/pnkbstrb_decrypt.sln -------------------------------------------------------------------------------- /c/randomtools/pnkbstrb_decrypt/pnkbstrb_decrypt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pnkbstrb_decrypt/pnkbstrb_decrypt/main.cpp -------------------------------------------------------------------------------- /c/randomtools/pnkbstrb_decrypt/pnkbstrb_decrypt/pnkbstrb_decrypt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/c/randomtools/pnkbstrb_decrypt/pnkbstrb_decrypt/pnkbstrb_decrypt.vcproj -------------------------------------------------------------------------------- /clients/crass/crass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass.sln -------------------------------------------------------------------------------- /clients/crass/crass/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass/Client.cs -------------------------------------------------------------------------------- /clients/crass/crass/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass/Options.cs -------------------------------------------------------------------------------- /clients/crass/crass/PnkBstrAClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass/PnkBstrAClient.cs -------------------------------------------------------------------------------- /clients/crass/crass/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass/Program.cs -------------------------------------------------------------------------------- /clients/crass/crass/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /clients/crass/crass/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass/Utils.cs -------------------------------------------------------------------------------- /clients/crass/crass/crass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass/crass.csproj -------------------------------------------------------------------------------- /clients/crass/crass/pbclClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/clients/crass/crass/pbclClient.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/FnkBstrA/FnkBstrA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/FnkBstrA/FnkBstrA.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/FnkBstrA/FnkBstrA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/FnkBstrA/FnkBstrA.csproj -------------------------------------------------------------------------------- /emulators/FnkBstrServices/FnkBstrA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/FnkBstrA/Program.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/FnkBstrA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/FnkBstrA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/FnkBstrB/FnkBstrB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/FnkBstrB/FnkBstrB.csproj -------------------------------------------------------------------------------- /emulators/FnkBstrServices/FnkBstrB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/FnkBstrB/Program.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/FnkBstrB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/FnkBstrB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/FnkBstrServices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/FnkBstrServices.sln -------------------------------------------------------------------------------- /emulators/FnkBstrServices/Options/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/Options/Options.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/Options/Options.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/Options/Options.csproj -------------------------------------------------------------------------------- /emulators/FnkBstrServices/Options/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/Options/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/UDPSocketService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/UDPSocketService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/UDPSocketService/SocketService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/UDPSocketService/SocketService.csproj -------------------------------------------------------------------------------- /emulators/FnkBstrServices/UDPSocketService/UDPClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/UDPSocketService/UDPClientService.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/UDPSocketService/UDPServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/UDPSocketService/UDPServerService.cs -------------------------------------------------------------------------------- /emulators/FnkBstrServices/UDPSocketService/UDPServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/FnkBstrServices/UDPSocketService/UDPServices.cs -------------------------------------------------------------------------------- /emulators/external/ServiceInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/emulators/external/ServiceInstaller.dll -------------------------------------------------------------------------------- /notes/all-jumps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/all-jumps.txt -------------------------------------------------------------------------------- /notes/decryption-asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/decryption-asm.txt -------------------------------------------------------------------------------- /notes/encryption-algo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/encryption-algo.txt -------------------------------------------------------------------------------- /notes/func_xor_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/func_xor_results.txt -------------------------------------------------------------------------------- /notes/master_dns_talk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/master_dns_talk.txt -------------------------------------------------------------------------------- /notes/original_pbcl_to_server_c_translation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/original_pbcl_to_server_c_translation.txt -------------------------------------------------------------------------------- /notes/pbag_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/pbag_notes.txt -------------------------------------------------------------------------------- /notes/pbcl_ca_hits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/pbcl_ca_hits.txt -------------------------------------------------------------------------------- /notes/pbcl_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/pbcl_function.txt -------------------------------------------------------------------------------- /notes/pbcl_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/pbcl_notes.txt -------------------------------------------------------------------------------- /notes/punkbuster analysis steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/notes/punkbuster analysis steps.txt -------------------------------------------------------------------------------- /py/PnkDecoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/PnkDecoder.exe -------------------------------------------------------------------------------- /py/addr_mov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/addr_mov.py -------------------------------------------------------------------------------- /py/auto_func_unxor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/auto_func_unxor.py -------------------------------------------------------------------------------- /py/auto_name_obfuscated_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/auto_name_obfuscated_funcs.py -------------------------------------------------------------------------------- /py/base_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/base_resolve.py -------------------------------------------------------------------------------- /py/buff_differences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/buff_differences.py -------------------------------------------------------------------------------- /py/code_xref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/code_xref.py -------------------------------------------------------------------------------- /py/data_xref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/data_xref.py -------------------------------------------------------------------------------- /py/decrypt_qq_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/decrypt_qq_commands.py -------------------------------------------------------------------------------- /py/pnkbstr_decoder - Copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/pnkbstr_decoder - Copy.py -------------------------------------------------------------------------------- /py/pnkbstr_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/pnkbstr_decoder.py -------------------------------------------------------------------------------- /py/print_func_xor.pbcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/print_func_xor.pbcl.py -------------------------------------------------------------------------------- /py/ret_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/py/ret_calls.py -------------------------------------------------------------------------------- /service installers/AAA/AAA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/service installers/AAA/AAA.sln -------------------------------------------------------------------------------- /service installers/AAA/AAA/AAA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/service installers/AAA/AAA/AAA.csproj -------------------------------------------------------------------------------- /service installers/AAA/AAA/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/service installers/AAA/AAA/Options.cs -------------------------------------------------------------------------------- /service installers/AAA/AAA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/service installers/AAA/AAA/Program.cs -------------------------------------------------------------------------------- /service installers/AAA/AAA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/service installers/AAA/AAA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /service installers/AAA/ServiceInstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/service installers/AAA/ServiceInstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /service installers/AAA/ServiceInstaller/ServiceInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/service installers/AAA/ServiceInstaller/ServiceInstaller.cs -------------------------------------------------------------------------------- /service installers/AAA/ServiceInstaller/ServiceInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wirepair/GHAST_priv8/HEAD/service installers/AAA/ServiceInstaller/ServiceInstaller.csproj --------------------------------------------------------------------------------