├── .gitignore ├── HookDll.sdf ├── HookDll.sln ├── HookDll.v12.suo ├── HookDll ├── AdrBigDick.h ├── HookDll.cpp ├── HookDll.vcxproj ├── HookDll.vcxproj.filters ├── HookDll.vcxproj.user ├── ReadMe.txt ├── dllmain.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── LICENSE ├── README.md └── ipch ├── hookdll-21fce010 └── hookdll-8f9ad859.ipch └── hookdll-33ddeb8a └── hookdll-8f9ad859.ipch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/.gitignore -------------------------------------------------------------------------------- /HookDll.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll.sdf -------------------------------------------------------------------------------- /HookDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll.sln -------------------------------------------------------------------------------- /HookDll.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll.v12.suo -------------------------------------------------------------------------------- /HookDll/AdrBigDick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll/AdrBigDick.h -------------------------------------------------------------------------------- /HookDll/HookDll.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /HookDll/HookDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll/HookDll.vcxproj -------------------------------------------------------------------------------- /HookDll/HookDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll/HookDll.vcxproj.filters -------------------------------------------------------------------------------- /HookDll/HookDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll/HookDll.vcxproj.user -------------------------------------------------------------------------------- /HookDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll/ReadMe.txt -------------------------------------------------------------------------------- /HookDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll/dllmain.cpp -------------------------------------------------------------------------------- /HookDll/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /HookDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/HookDll/stdafx.h -------------------------------------------------------------------------------- /HookDll/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HellKitty-In-VC 2 | Ring3 Rootkit Backdoor. 3 | - Support For Win7 x32bit / XP 4 | -------------------------------------------------------------------------------- /ipch/hookdll-21fce010/hookdll-8f9ad859.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/ipch/hookdll-21fce010/hookdll-8f9ad859.ipch -------------------------------------------------------------------------------- /ipch/hookdll-33ddeb8a/hookdll-8f9ad859.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/HellKitty-In-VC/HEAD/ipch/hookdll-33ddeb8a/hookdll-8f9ad859.ipch --------------------------------------------------------------------------------