├── .gitignore ├── LICENSE ├── README.md ├── kernel driver ├── README.md ├── mapDriver.sln └── mapDriver │ ├── Driver.c │ ├── Types.h │ ├── mapDriver.inf │ ├── mapDriver.vcxproj │ └── mapDriver.vcxproj.filters ├── online map ├── README.md ├── map.html └── map.jpg └── usermode app ├── README.md ├── hackControl.sln ├── hackControl ├── CURLWrapper.hpp ├── GameDataParser.hpp ├── KReader.hpp ├── Types.hpp ├── hackControl.vcxproj ├── hackControl.vcxproj.filters ├── main.cpp └── ~AutoRecover.hackControl.vcxproj ├── json └── json.hpp └── libcurl-vc-x64-release-static-ipv6-sspi-winssl ├── include └── curl │ ├── curl.h │ ├── curlver.h │ ├── easy.h │ ├── mprintf.h │ ├── multi.h │ ├── stdcheaders.h │ ├── system.h │ └── typecheck-gcc.h └── lib └── libcurl_a.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/README.md -------------------------------------------------------------------------------- /kernel driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/kernel driver/README.md -------------------------------------------------------------------------------- /kernel driver/mapDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/kernel driver/mapDriver.sln -------------------------------------------------------------------------------- /kernel driver/mapDriver/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/kernel driver/mapDriver/Driver.c -------------------------------------------------------------------------------- /kernel driver/mapDriver/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/kernel driver/mapDriver/Types.h -------------------------------------------------------------------------------- /kernel driver/mapDriver/mapDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/kernel driver/mapDriver/mapDriver.inf -------------------------------------------------------------------------------- /kernel driver/mapDriver/mapDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/kernel driver/mapDriver/mapDriver.vcxproj -------------------------------------------------------------------------------- /kernel driver/mapDriver/mapDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/kernel driver/mapDriver/mapDriver.vcxproj.filters -------------------------------------------------------------------------------- /online map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/online map/README.md -------------------------------------------------------------------------------- /online map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/online map/map.html -------------------------------------------------------------------------------- /online map/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/online map/map.jpg -------------------------------------------------------------------------------- /usermode app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/README.md -------------------------------------------------------------------------------- /usermode app/hackControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl.sln -------------------------------------------------------------------------------- /usermode app/hackControl/CURLWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl/CURLWrapper.hpp -------------------------------------------------------------------------------- /usermode app/hackControl/GameDataParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl/GameDataParser.hpp -------------------------------------------------------------------------------- /usermode app/hackControl/KReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl/KReader.hpp -------------------------------------------------------------------------------- /usermode app/hackControl/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl/Types.hpp -------------------------------------------------------------------------------- /usermode app/hackControl/hackControl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl/hackControl.vcxproj -------------------------------------------------------------------------------- /usermode app/hackControl/hackControl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl/hackControl.vcxproj.filters -------------------------------------------------------------------------------- /usermode app/hackControl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl/main.cpp -------------------------------------------------------------------------------- /usermode app/hackControl/~AutoRecover.hackControl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/hackControl/~AutoRecover.hackControl.vcxproj -------------------------------------------------------------------------------- /usermode app/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/json/json.hpp -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/curl.h -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/curlver.h -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/easy.h -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/mprintf.h -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/multi.h -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/system.h -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/lib/libcurl_a.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jussihi/PUBG-map-hack/HEAD/usermode app/libcurl-vc-x64-release-static-ipv6-sspi-winssl/lib/libcurl_a.lib --------------------------------------------------------------------------------