├── -Rainbow---EFI-main ├── EDK-II │ ├── BaseCacheMaintenanceLib │ │ └── BaseCacheMaintenanceLib.vcxproj │ ├── BaseCpuLib │ │ └── BaseCpuLib.vcxproj │ ├── BaseCryptLib │ │ └── BaseCryptLib.vcxproj │ ├── BaseDebugPrintErrorLevelLib │ │ └── BaseDebugPrintErrorLevelLib.vcxproj │ ├── BaseLib │ │ ├── BaseLib.vcxproj │ │ ├── vshacks.h │ │ └── vshacks.nasm │ ├── BaseMemoryLib │ │ └── BaseMemoryLib.vcxproj │ ├── BasePrintLib │ │ └── BasePrintLib.vcxproj │ ├── BaseSynchronizationLib │ │ └── BaseSynchronizationLib.vcxproj │ ├── EDK-II.sln │ ├── GlueLib │ │ ├── GlueLib.vcxproj │ │ ├── guid.c │ │ ├── initlib.c │ │ └── pcd.c │ ├── IntrinsicLib │ │ └── IntrinsicLib.vcxproj │ ├── MSBuild │ │ ├── nasm.props │ │ ├── nasm.targets │ │ └── nasm.xml │ ├── OpensslLib │ │ └── OpensslLib.vcxproj │ ├── UefiApplicationEntryPoint │ │ └── UefiApplicationEntryPoint.vcxproj │ ├── UefiBootServicesTableLib │ │ └── UefiBootServicesTableLib.vcxproj │ ├── UefiDebugLibConOut │ │ └── UefiDebugLibConOut.vcxproj │ ├── UefiDevicePathLibDevicePathProtocol │ │ └── UefiDevicePathLibDevicePathProtocol.vcxproj │ ├── UefiDriverEntryPoint │ │ └── UefiDriverEntryPoint.vcxproj │ ├── UefiFileHandleLib │ │ └── UefiFileHandleLib.vcxproj │ ├── UefiHiiLib │ │ └── UefiHiiLib.vcxproj │ ├── UefiHiiServicesLib │ │ └── UefiHiiServicesLib.vcxproj │ ├── UefiLib │ │ └── UefiLib.vcxproj │ ├── UefiMemoryAllocationLib │ │ └── UefiMemoryAllocationLib.vcxproj │ ├── UefiMemoryLib │ │ └── UefiMemoryLib.vcxproj │ ├── UefiRuntimeLib │ │ └── UefiRuntimeLib.vcxproj │ ├── UefiRuntimeServicesTableLib │ │ └── UefiRuntimeServicesTableLib.vcxproj │ ├── UefiShellLib │ │ └── UefiShellLib.vcxproj │ ├── UefiSortLib │ │ └── UefiSortLib.vcxproj │ ├── edk2.default.props │ └── edk2.props ├── LICENSE ├── README.md ├── debugger │ ├── OVMF_CODE-need-smm.fd │ ├── OVMF_VARS-need-smm.fd │ ├── UefiShell.iso │ ├── efi-e1000.rom │ ├── kvmvapic.bin │ └── vgabios-stdvga.bin ├── rainbow │ ├── LICENSE.txt │ ├── UefiDriver │ │ ├── UefiDriver.vcxproj │ │ ├── console.cpp │ │ ├── console.h │ │ ├── general.h │ │ ├── hooks.cpp │ │ ├── hooks.h │ │ ├── main.cpp │ │ ├── ntdef.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ └── xor.h │ ├── rainbow.default.props │ ├── rainbow.props │ └── rainbow.sln ├── rainbow0.png ├── rainbow1.png └── rainbow2.png ├── .gitignore ├── HWID-Spoofer-for-Fortnite-and-Valorant-main ├── Kernel │ ├── Kernel.inf │ ├── Kernel.vcxproj │ ├── Kernel.vcxproj.filters │ ├── main.c │ ├── stdafx.h │ ├── util.c │ └── util.h ├── README.md └── User │ ├── User.vcxproj │ ├── User.vcxproj.filters │ ├── main.c │ ├── stdafx.h │ ├── util.c │ └── util.h ├── HWIDbypass-master ├── README.md ├── list_hdd.bat └── src │ ├── GetHHDSerial.cpp │ ├── HDDSerial.h │ ├── main.cpp │ ├── stdafx.h │ └── targetver.h ├── LICENSE ├── PCIBan-master ├── LICENSE ├── PCIBan.sln ├── PCIBan │ ├── Directory.Build.props │ ├── Driver.cpp │ ├── Driver.h │ ├── PCIBan.filters │ ├── PCIBan.inf │ ├── PCIBan.vcxproj │ └── Pci.h └── README.md ├── README.md ├── Simple-HWID-Checker-main ├── LICENSE ├── README.md └── main.cpp ├── hwid-checker-mg-master ├── LICENSE.txt ├── README.md ├── hwid-checker-mg.sln ├── hwid_checker │ ├── hwid-checker-mg.vcxproj │ ├── hwid-checker-mg.vcxproj.filters │ ├── hwid-checker-mg.vcxproj.user │ ├── hwid_checker.cpp │ ├── hwid_checker.vcxproj │ ├── hwid_checker.vcxproj.user │ └── includes │ │ ├── smbios.cpp │ │ └── smbios.hpp └── img │ ├── Capture_cmd.PNG │ └── unknown.png ├── hwid-master ├── Kernel │ ├── Kernel.inf │ ├── Kernel.vcxproj │ ├── Kernel.vcxproj.filters │ ├── main.c │ ├── stdafx.h │ ├── util.c │ └── util.h ├── README.md └── User │ ├── User.vcxproj │ ├── User.vcxproj.filters │ ├── main.c │ ├── stdafx.h │ ├── util.c │ └── util.h ├── hwid-spoofer-master ├── README.md ├── dummy.sln └── dummy │ ├── clear.cpp │ ├── clear.h │ ├── dummy.vcxproj │ ├── dummy.vcxproj.filters │ ├── dummy.vcxproj.user │ ├── main.c │ ├── stdafx.h │ ├── util.c │ └── util.h ├── hwid_spoofer-master ├── hwid_spoofer.sln └── hwid_spoofer │ ├── exported.hpp │ ├── fnv.hpp │ ├── hwid_spoofer.vcxproj │ ├── hwid_spoofer.vcxproj.filters │ ├── hwid_spoofer.vcxproj.user │ ├── main.cpp │ ├── pattern.cpp │ ├── pattern.hpp │ ├── raid_extension.hpp │ └── util.hpp ├── hwidinfo-ReFo ├── LICENSE ├── README.md ├── hwid_info.sln └── hwid_info │ ├── hwid_info.vcxproj │ ├── hwid_info.vcxproj.filters │ ├── hwid_info.vcxproj.user │ └── main.cpp ├── hwidspoofer-main ├── 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 ├── image.png ├── main.c ├── main.cpp ├── mutante-master ├── README.md └── mutante │ ├── mutante.sln │ └── mutante │ ├── disks.cpp │ ├── disks.h │ ├── log.cpp │ ├── log.h │ ├── main.cpp │ ├── mutante.vcxproj │ ├── mutante.vcxproj.filters │ ├── shared.h │ ├── smbios.cpp │ ├── smbios.h │ ├── utils.cpp │ └── utils.h ├── mutanterainbow-main ├── README.md ├── disks.cpp ├── disks.h ├── gpu.hpp ├── hde64.cpp ├── hde64.hpp ├── log.cpp ├── log.h ├── main.cpp ├── mutanterainbow.sln ├── mutanterainbow.vcxproj ├── mutanterainbow.vcxproj.user ├── nics.cpp ├── nics.h ├── shared.h ├── smbios.cpp ├── smbios.h ├── table64.hpp ├── utils.cpp └── utils.h └── negativespoofer-master ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── compile_commands.json ├── img ├── after.png ├── all.png └── before.png ├── pages ├── BUGS.md ├── LINUX.md ├── USE.md └── WINDOWS.md ├── pkg └── Shell.efi ├── scripts ├── build.sh ├── clean.sh ├── image.sh ├── rebuild.sh ├── test.sh └── vm.sh └── src ├── edk2 └── PiHob.h ├── finder.c ├── finder.h ├── general.h ├── hob.c ├── hob.h ├── main.c ├── patch.c ├── patch.h ├── smbios.c ├── smbios.h ├── utils.c └── utils.h /-Rainbow---EFI-main/EDK-II/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseCacheMaintenanceLib/BaseCacheMaintenanceLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BaseCpuLib/BaseCpuLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseCpuLib/BaseCpuLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BaseCryptLib/BaseCryptLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseCryptLib/BaseCryptLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseDebugPrintErrorLevelLib/BaseDebugPrintErrorLevelLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BaseLib/BaseLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseLib/BaseLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BaseLib/vshacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseLib/vshacks.h -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BaseLib/vshacks.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseLib/vshacks.nasm -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BaseMemoryLib/BaseMemoryLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseMemoryLib/BaseMemoryLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BasePrintLib/BasePrintLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BasePrintLib/BasePrintLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/BaseSynchronizationLib/BaseSynchronizationLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/BaseSynchronizationLib/BaseSynchronizationLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/EDK-II.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/EDK-II.sln -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/GlueLib/GlueLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/GlueLib/GlueLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/GlueLib/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/GlueLib/guid.c -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/GlueLib/initlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/GlueLib/initlib.c -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/GlueLib/pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/GlueLib/pcd.c -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/IntrinsicLib/IntrinsicLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/IntrinsicLib/IntrinsicLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/MSBuild/nasm.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/MSBuild/nasm.props -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/MSBuild/nasm.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/MSBuild/nasm.targets -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/MSBuild/nasm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/MSBuild/nasm.xml -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/OpensslLib/OpensslLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/OpensslLib/OpensslLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiApplicationEntryPoint/UefiApplicationEntryPoint.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiApplicationEntryPoint/UefiApplicationEntryPoint.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiBootServicesTableLib/UefiBootServicesTableLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiBootServicesTableLib/UefiBootServicesTableLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiDebugLibConOut/UefiDebugLibConOut.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiDebugLibConOut/UefiDebugLibConOut.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiDriverEntryPoint/UefiDriverEntryPoint.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiDriverEntryPoint/UefiDriverEntryPoint.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiFileHandleLib/UefiFileHandleLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiFileHandleLib/UefiFileHandleLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiHiiLib/UefiHiiLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiHiiLib/UefiHiiLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiHiiServicesLib/UefiHiiServicesLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiHiiServicesLib/UefiHiiServicesLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiLib/UefiLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiLib/UefiLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiMemoryAllocationLib/UefiMemoryAllocationLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiMemoryAllocationLib/UefiMemoryAllocationLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiMemoryLib/UefiMemoryLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiMemoryLib/UefiMemoryLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiRuntimeLib/UefiRuntimeLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiRuntimeLib/UefiRuntimeLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiRuntimeServicesTableLib/UefiRuntimeServicesTableLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiShellLib/UefiShellLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiShellLib/UefiShellLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/UefiSortLib/UefiSortLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/UefiSortLib/UefiSortLib.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/edk2.default.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/edk2.default.props -------------------------------------------------------------------------------- /-Rainbow---EFI-main/EDK-II/edk2.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/EDK-II/edk2.props -------------------------------------------------------------------------------- /-Rainbow---EFI-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/LICENSE -------------------------------------------------------------------------------- /-Rainbow---EFI-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/README.md -------------------------------------------------------------------------------- /-Rainbow---EFI-main/debugger/OVMF_CODE-need-smm.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/debugger/OVMF_CODE-need-smm.fd -------------------------------------------------------------------------------- /-Rainbow---EFI-main/debugger/OVMF_VARS-need-smm.fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/debugger/OVMF_VARS-need-smm.fd -------------------------------------------------------------------------------- /-Rainbow---EFI-main/debugger/UefiShell.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/debugger/UefiShell.iso -------------------------------------------------------------------------------- /-Rainbow---EFI-main/debugger/efi-e1000.rom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/debugger/efi-e1000.rom -------------------------------------------------------------------------------- /-Rainbow---EFI-main/debugger/kvmvapic.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/debugger/kvmvapic.bin -------------------------------------------------------------------------------- /-Rainbow---EFI-main/debugger/vgabios-stdvga.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/debugger/vgabios-stdvga.bin -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/LICENSE.txt -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/UefiDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/UefiDriver.vcxproj -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/console.cpp -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/console.h -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/general.h -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/hooks.cpp -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/hooks.h -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/main.cpp -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/ntdef.h -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/utils.cpp -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/utils.h -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/UefiDriver/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/UefiDriver/xor.h -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/rainbow.default.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/rainbow.default.props -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/rainbow.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/rainbow.props -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow/rainbow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow/rainbow.sln -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow0.png -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow1.png -------------------------------------------------------------------------------- /-Rainbow---EFI-main/rainbow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/-Rainbow---EFI-main/rainbow2.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/Kernel.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/Kernel.inf -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/Kernel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/Kernel.vcxproj -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/Kernel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/Kernel.vcxproj.filters -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/main.c -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/stdafx.h -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/util.c -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/Kernel/util.h -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/README.md -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/User/User.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/User/User.vcxproj -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/User/User.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/User/User.vcxproj.filters -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/User/main.c -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/User/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/User/stdafx.h -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/User/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/User/util.c -------------------------------------------------------------------------------- /HWID-Spoofer-for-Fortnite-and-Valorant-main/User/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWID-Spoofer-for-Fortnite-and-Valorant-main/User/util.h -------------------------------------------------------------------------------- /HWIDbypass-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWIDbypass-master/README.md -------------------------------------------------------------------------------- /HWIDbypass-master/list_hdd.bat: -------------------------------------------------------------------------------- 1 | wmic diskdrive get name,size,model,SerialNumber -------------------------------------------------------------------------------- /HWIDbypass-master/src/GetHHDSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWIDbypass-master/src/GetHHDSerial.cpp -------------------------------------------------------------------------------- /HWIDbypass-master/src/HDDSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWIDbypass-master/src/HDDSerial.h -------------------------------------------------------------------------------- /HWIDbypass-master/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWIDbypass-master/src/main.cpp -------------------------------------------------------------------------------- /HWIDbypass-master/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWIDbypass-master/src/stdafx.h -------------------------------------------------------------------------------- /HWIDbypass-master/src/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/HWIDbypass-master/src/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /PCIBan-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/LICENSE -------------------------------------------------------------------------------- /PCIBan-master/PCIBan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/PCIBan.sln -------------------------------------------------------------------------------- /PCIBan-master/PCIBan/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/PCIBan/Directory.Build.props -------------------------------------------------------------------------------- /PCIBan-master/PCIBan/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/PCIBan/Driver.cpp -------------------------------------------------------------------------------- /PCIBan-master/PCIBan/Driver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | -------------------------------------------------------------------------------- /PCIBan-master/PCIBan/PCIBan.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/PCIBan/PCIBan.filters -------------------------------------------------------------------------------- /PCIBan-master/PCIBan/PCIBan.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/PCIBan/PCIBan.inf -------------------------------------------------------------------------------- /PCIBan-master/PCIBan/PCIBan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/PCIBan/PCIBan.vcxproj -------------------------------------------------------------------------------- /PCIBan-master/PCIBan/Pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/PCIBan/Pci.h -------------------------------------------------------------------------------- /PCIBan-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/PCIBan-master/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/README.md -------------------------------------------------------------------------------- /Simple-HWID-Checker-main/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/Simple-HWID-Checker-main/LICENSE -------------------------------------------------------------------------------- /Simple-HWID-Checker-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/Simple-HWID-Checker-main/README.md -------------------------------------------------------------------------------- /Simple-HWID-Checker-main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/Simple-HWID-Checker-main/main.cpp -------------------------------------------------------------------------------- /hwid-checker-mg-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/LICENSE.txt -------------------------------------------------------------------------------- /hwid-checker-mg-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/README.md -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid-checker-mg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid-checker-mg.sln -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid_checker/hwid-checker-mg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid_checker/hwid-checker-mg.vcxproj -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid_checker/hwid-checker-mg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid_checker/hwid-checker-mg.vcxproj.filters -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid_checker/hwid-checker-mg.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid_checker/hwid-checker-mg.vcxproj.user -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid_checker/hwid_checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid_checker/hwid_checker.cpp -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid_checker/hwid_checker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid_checker/hwid_checker.vcxproj -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid_checker/hwid_checker.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid_checker/hwid_checker.vcxproj.user -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid_checker/includes/smbios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid_checker/includes/smbios.cpp -------------------------------------------------------------------------------- /hwid-checker-mg-master/hwid_checker/includes/smbios.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/hwid_checker/includes/smbios.hpp -------------------------------------------------------------------------------- /hwid-checker-mg-master/img/Capture_cmd.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/img/Capture_cmd.PNG -------------------------------------------------------------------------------- /hwid-checker-mg-master/img/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-checker-mg-master/img/unknown.png -------------------------------------------------------------------------------- /hwid-master/Kernel/Kernel.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/Kernel/Kernel.inf -------------------------------------------------------------------------------- /hwid-master/Kernel/Kernel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/Kernel/Kernel.vcxproj -------------------------------------------------------------------------------- /hwid-master/Kernel/Kernel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/Kernel/Kernel.vcxproj.filters -------------------------------------------------------------------------------- /hwid-master/Kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/Kernel/main.c -------------------------------------------------------------------------------- /hwid-master/Kernel/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/Kernel/stdafx.h -------------------------------------------------------------------------------- /hwid-master/Kernel/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/Kernel/util.c -------------------------------------------------------------------------------- /hwid-master/Kernel/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/Kernel/util.h -------------------------------------------------------------------------------- /hwid-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/README.md -------------------------------------------------------------------------------- /hwid-master/User/User.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/User/User.vcxproj -------------------------------------------------------------------------------- /hwid-master/User/User.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/User/User.vcxproj.filters -------------------------------------------------------------------------------- /hwid-master/User/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/User/main.c -------------------------------------------------------------------------------- /hwid-master/User/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/User/stdafx.h -------------------------------------------------------------------------------- /hwid-master/User/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/User/util.c -------------------------------------------------------------------------------- /hwid-master/User/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-master/User/util.h -------------------------------------------------------------------------------- /hwid-spoofer-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/README.md -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy.sln -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/clear.cpp -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/clear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/clear.h -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/dummy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/dummy.vcxproj -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/dummy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/dummy.vcxproj.filters -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/dummy.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/dummy.vcxproj.user -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/main.c -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/stdafx.h -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/util.c -------------------------------------------------------------------------------- /hwid-spoofer-master/dummy/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid-spoofer-master/dummy/util.h -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer.sln -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/exported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/exported.hpp -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/fnv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/fnv.hpp -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/hwid_spoofer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/hwid_spoofer.vcxproj -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/hwid_spoofer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/hwid_spoofer.vcxproj.filters -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/hwid_spoofer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/hwid_spoofer.vcxproj.user -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/main.cpp -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/pattern.cpp -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/pattern.hpp -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/raid_extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/raid_extension.hpp -------------------------------------------------------------------------------- /hwid_spoofer-master/hwid_spoofer/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwid_spoofer-master/hwid_spoofer/util.hpp -------------------------------------------------------------------------------- /hwidinfo-ReFo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidinfo-ReFo/LICENSE -------------------------------------------------------------------------------- /hwidinfo-ReFo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidinfo-ReFo/README.md -------------------------------------------------------------------------------- /hwidinfo-ReFo/hwid_info.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidinfo-ReFo/hwid_info.sln -------------------------------------------------------------------------------- /hwidinfo-ReFo/hwid_info/hwid_info.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidinfo-ReFo/hwid_info/hwid_info.vcxproj -------------------------------------------------------------------------------- /hwidinfo-ReFo/hwid_info/hwid_info.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidinfo-ReFo/hwid_info/hwid_info.vcxproj.filters -------------------------------------------------------------------------------- /hwidinfo-ReFo/hwid_info/hwid_info.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidinfo-ReFo/hwid_info/hwid_info.vcxproj.user -------------------------------------------------------------------------------- /hwidinfo-ReFo/hwid_info/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidinfo-ReFo/hwid_info/main.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/readme.md -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final.sln -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/btfile/bytetofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/btfile/bytetofile.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/btfile/bytetofile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/btfile/bytetofile.hpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/bytes/bytes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/bytes/bytes.hpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/bytes/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/bytes/font.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/bytes/logo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/bytes/logo.hpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/caches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/caches.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/caches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/caches.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/client/client.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/client/client.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/client/common.cpp: -------------------------------------------------------------------------------- 1 | #include "common.h" -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/client/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/client/common.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/encrypt/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/encrypt/md5.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/encrypt/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/encrypt/md5.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/encrypt/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/encrypt/xor.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/hwid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/hwid.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/hwid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/hwid.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imconfig.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui_internal.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/main.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/main.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/menus.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/menus.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/caches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/caches.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/caches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/caches.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/clean.c -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/clean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/clean.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/stdafx.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/util.c -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/cleaner/util.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/spoof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/spoof.cpp -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/spoof/spoof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/spoof/spoof.h -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/xyz.spoofer.final.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/xyz.spoofer.final.vcxproj -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/xyz.spoofer.final.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/xyz.spoofer.final.vcxproj.filters -------------------------------------------------------------------------------- /hwidspoofer-main/xyz.spoofer.final/xyz.spoofer.final.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/hwidspoofer-main/xyz.spoofer.final/xyz.spoofer.final.vcxproj.user -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/image.png -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/main.c -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/main.cpp -------------------------------------------------------------------------------- /mutante-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/README.md -------------------------------------------------------------------------------- /mutante-master/mutante/mutante.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante.sln -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/disks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/disks.cpp -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/disks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/disks.h -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/log.cpp -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/log.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Log 4 | { 5 | void Print(const char* text, ...); 6 | } -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/main.cpp -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/mutante.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/mutante.vcxproj -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/mutante.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/mutante.vcxproj.filters -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/shared.h -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/smbios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/smbios.cpp -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/smbios.h -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/utils.cpp -------------------------------------------------------------------------------- /mutante-master/mutante/mutante/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutante-master/mutante/mutante/utils.h -------------------------------------------------------------------------------- /mutanterainbow-main/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/README.md -------------------------------------------------------------------------------- /mutanterainbow-main/disks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/disks.cpp -------------------------------------------------------------------------------- /mutanterainbow-main/disks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/disks.h -------------------------------------------------------------------------------- /mutanterainbow-main/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/gpu.hpp -------------------------------------------------------------------------------- /mutanterainbow-main/hde64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/hde64.cpp -------------------------------------------------------------------------------- /mutanterainbow-main/hde64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/hde64.hpp -------------------------------------------------------------------------------- /mutanterainbow-main/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/log.cpp -------------------------------------------------------------------------------- /mutanterainbow-main/log.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Log 4 | { 5 | void Print(const char* text, ...); 6 | } -------------------------------------------------------------------------------- /mutanterainbow-main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/main.cpp -------------------------------------------------------------------------------- /mutanterainbow-main/mutanterainbow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/mutanterainbow.sln -------------------------------------------------------------------------------- /mutanterainbow-main/mutanterainbow.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/mutanterainbow.vcxproj -------------------------------------------------------------------------------- /mutanterainbow-main/mutanterainbow.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/mutanterainbow.vcxproj.user -------------------------------------------------------------------------------- /mutanterainbow-main/nics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/nics.cpp -------------------------------------------------------------------------------- /mutanterainbow-main/nics.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace NICs 4 | { 5 | NTSTATUS ChangeNetworkDispatch(); 6 | } -------------------------------------------------------------------------------- /mutanterainbow-main/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/shared.h -------------------------------------------------------------------------------- /mutanterainbow-main/smbios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/smbios.cpp -------------------------------------------------------------------------------- /mutanterainbow-main/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/smbios.h -------------------------------------------------------------------------------- /mutanterainbow-main/table64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/table64.hpp -------------------------------------------------------------------------------- /mutanterainbow-main/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/utils.cpp -------------------------------------------------------------------------------- /mutanterainbow-main/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/mutanterainbow-main/utils.h -------------------------------------------------------------------------------- /negativespoofer-master/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/CMakeLists.txt -------------------------------------------------------------------------------- /negativespoofer-master/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/LICENSE.md -------------------------------------------------------------------------------- /negativespoofer-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/README.md -------------------------------------------------------------------------------- /negativespoofer-master/compile_commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/compile_commands.json -------------------------------------------------------------------------------- /negativespoofer-master/img/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/img/after.png -------------------------------------------------------------------------------- /negativespoofer-master/img/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/img/all.png -------------------------------------------------------------------------------- /negativespoofer-master/img/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/img/before.png -------------------------------------------------------------------------------- /negativespoofer-master/pages/BUGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/pages/BUGS.md -------------------------------------------------------------------------------- /negativespoofer-master/pages/LINUX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/pages/LINUX.md -------------------------------------------------------------------------------- /negativespoofer-master/pages/USE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/pages/USE.md -------------------------------------------------------------------------------- /negativespoofer-master/pages/WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/pages/WINDOWS.md -------------------------------------------------------------------------------- /negativespoofer-master/pkg/Shell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/pkg/Shell.efi -------------------------------------------------------------------------------- /negativespoofer-master/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/scripts/build.sh -------------------------------------------------------------------------------- /negativespoofer-master/scripts/clean.sh: -------------------------------------------------------------------------------- 1 | # Run in project root 2 | rm -rf ./build -------------------------------------------------------------------------------- /negativespoofer-master/scripts/image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/scripts/image.sh -------------------------------------------------------------------------------- /negativespoofer-master/scripts/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/scripts/rebuild.sh -------------------------------------------------------------------------------- /negativespoofer-master/scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/scripts/test.sh -------------------------------------------------------------------------------- /negativespoofer-master/scripts/vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/scripts/vm.sh -------------------------------------------------------------------------------- /negativespoofer-master/src/edk2/PiHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/edk2/PiHob.h -------------------------------------------------------------------------------- /negativespoofer-master/src/finder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/finder.c -------------------------------------------------------------------------------- /negativespoofer-master/src/finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/finder.h -------------------------------------------------------------------------------- /negativespoofer-master/src/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/general.h -------------------------------------------------------------------------------- /negativespoofer-master/src/hob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/hob.c -------------------------------------------------------------------------------- /negativespoofer-master/src/hob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/hob.h -------------------------------------------------------------------------------- /negativespoofer-master/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/main.c -------------------------------------------------------------------------------- /negativespoofer-master/src/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/patch.c -------------------------------------------------------------------------------- /negativespoofer-master/src/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/patch.h -------------------------------------------------------------------------------- /negativespoofer-master/src/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/smbios.c -------------------------------------------------------------------------------- /negativespoofer-master/src/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/smbios.h -------------------------------------------------------------------------------- /negativespoofer-master/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/utils.c -------------------------------------------------------------------------------- /negativespoofer-master/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nice4756/hwid-spoofer-manager/HEAD/negativespoofer-master/src/utils.h --------------------------------------------------------------------------------