├── .gitattributes ├── readme.md ├── xyz.spoofer.final.sln └── xyz.spoofer.final ├── btfile ├── bytetofile.cpp └── bytetofile.hpp ├── bytes ├── bytes.hpp ├── font.h └── logo.hpp ├── caches.cpp ├── caches.h ├── client ├── client.cpp ├── client.h ├── common.cpp └── common.h ├── encrypt ├── md5.cpp ├── md5.h └── xor.h ├── hwid.cpp ├── hwid.h ├── imgui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx9.cpp ├── imgui_impl_dx9.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── main.cpp ├── main.h ├── menus.cpp ├── menus.h ├── spoof ├── caches.cpp ├── caches.h ├── cleaner │ ├── clean.c │ ├── clean.h │ ├── stdafx.h │ ├── util.c │ └── util.h ├── spoof.cpp └── spoof.h ├── xyz.spoofer.final.vcxproj ├── xyz.spoofer.final.vcxproj.filters └── xyz.spoofer.final.vcxproj.user /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/.gitattributes -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/readme.md -------------------------------------------------------------------------------- /xyz.spoofer.final.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final.sln -------------------------------------------------------------------------------- /xyz.spoofer.final/btfile/bytetofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/btfile/bytetofile.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/btfile/bytetofile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/btfile/bytetofile.hpp -------------------------------------------------------------------------------- /xyz.spoofer.final/bytes/bytes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/bytes/bytes.hpp -------------------------------------------------------------------------------- /xyz.spoofer.final/bytes/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/bytes/font.h -------------------------------------------------------------------------------- /xyz.spoofer.final/bytes/logo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/bytes/logo.hpp -------------------------------------------------------------------------------- /xyz.spoofer.final/caches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/caches.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/caches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/caches.h -------------------------------------------------------------------------------- /xyz.spoofer.final/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/client/client.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/client/client.h -------------------------------------------------------------------------------- /xyz.spoofer.final/client/common.cpp: -------------------------------------------------------------------------------- 1 | #include "common.h" -------------------------------------------------------------------------------- /xyz.spoofer.final/client/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/client/common.h -------------------------------------------------------------------------------- /xyz.spoofer.final/encrypt/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/encrypt/md5.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/encrypt/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/encrypt/md5.h -------------------------------------------------------------------------------- /xyz.spoofer.final/encrypt/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/encrypt/xor.h -------------------------------------------------------------------------------- /xyz.spoofer.final/hwid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/hwid.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/hwid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/hwid.h -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imconfig.h -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui.h -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui_internal.h -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /xyz.spoofer.final/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /xyz.spoofer.final/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/main.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/main.h -------------------------------------------------------------------------------- /xyz.spoofer.final/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/menus.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/menus.h -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/caches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/caches.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/caches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/caches.h -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/cleaner/clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/cleaner/clean.c -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/cleaner/clean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/cleaner/clean.h -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/cleaner/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/cleaner/stdafx.h -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/cleaner/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/cleaner/util.c -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/cleaner/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/cleaner/util.h -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/spoof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/spoof.cpp -------------------------------------------------------------------------------- /xyz.spoofer.final/spoof/spoof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/spoof/spoof.h -------------------------------------------------------------------------------- /xyz.spoofer.final/xyz.spoofer.final.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/xyz.spoofer.final.vcxproj -------------------------------------------------------------------------------- /xyz.spoofer.final/xyz.spoofer.final.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/xyz.spoofer.final.vcxproj.filters -------------------------------------------------------------------------------- /xyz.spoofer.final/xyz.spoofer.final.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/semihcevik/hwidspoofer/HEAD/xyz.spoofer.final/xyz.spoofer.final.vcxproj.user --------------------------------------------------------------------------------