├── .gitignore ├── README.md ├── Release_dlls ├── SteamAPICheckBypass.dll └── SteamAPICheckBypass_x32.dll ├── SteamAPICheckBypass.EXAMPLE.json ├── SteamAPICheckBypass.sln ├── SteamAPICheckBypass ├── dll_interface.vcxproj ├── dll_interface.vcxproj.filters ├── dllmain.cpp ├── exports.cpp ├── exports.def ├── exports.h ├── include │ └── nt_file_dupe.hpp ├── src │ └── nt_file_dupe.cpp ├── version.asm ├── winhttp.asm └── winmm.asm └── nt_file_dupe ├── README.md ├── include ├── Configs │ └── Configs.hpp ├── Helpers │ ├── Helpers.hpp │ └── dbglog.hpp ├── Hooks │ ├── Hooks.hpp │ ├── LdrGetDllHandle_hook │ │ └── LdrGetDllHandle_hook.hpp │ ├── LdrLoadDll_hook │ │ └── LdrLoadDll_hook.hpp │ ├── NtCreateDirectoryObjectEx_hook │ │ └── NtCreateDirectoryObjectEx_hook.hpp │ ├── NtCreateDirectoryObject_hook │ │ └── NtCreateDirectoryObject_hook.hpp │ ├── NtCreateFile_hook │ │ └── NtCreateFile_hook.hpp │ ├── NtDeleteFile_hook │ │ └── NtDeleteFile_hook.hpp │ ├── NtOpenDirectoryObject_hook │ │ └── NtOpenDirectoryObject_hook.hpp │ ├── NtOpenFile_hook │ │ └── NtOpenFile_hook.hpp │ ├── NtQueryAttributesFile_hook │ │ └── NtQueryAttributesFile_hook.hpp │ ├── NtQueryDirectoryFileEx_hook │ │ └── NtQueryDirectoryFileEx_hook.hpp │ ├── NtQueryDirectoryFile_hook │ │ └── NtQueryDirectoryFile_hook.hpp │ ├── NtQueryFullAttributesFile_hook │ │ └── NtQueryFullAttributesFile_hook.hpp │ ├── NtQueryInformationByName_hook │ │ └── NtQueryInformationByName_hook.hpp │ └── NtQueryInformationFile_hook │ │ └── NtQueryInformationFile_hook.hpp ├── NtApis │ ├── NtApis.hpp │ └── peb_helper.hpp └── lib_main │ └── lib_main.hpp ├── libs ├── Detours │ ├── CREDITS.md │ ├── LICENSE │ ├── LICENSE.md │ ├── README.md │ ├── SECURITY.md │ ├── creatwth.cpp │ ├── detours.cpp │ ├── detours.h │ ├── detver.h │ ├── disasm.cpp │ ├── disolarm.cpp │ ├── disolarm64.cpp │ ├── disolia64.cpp │ ├── disolx64.cpp │ ├── disolx86.cpp │ ├── image.cpp │ ├── modules.cpp │ └── uimports.cpp ├── Json │ └── nlohmann │ │ ├── LICENSE.MIT │ │ ├── README.md │ │ ├── json.hpp │ │ └── json_fwd.hpp └── README.md ├── nt_file_dupe.vcxproj ├── nt_file_dupe.vcxproj.filters └── src ├── Configs └── Configs.cpp ├── Helpers └── dbglog.cpp ├── Hooks ├── Hooks.cpp ├── LdrGetDllHandle_hook │ └── LdrGetDllHandle_hook.cpp ├── LdrLoadDll_hook │ └── LdrLoadDll_hook.cpp ├── NtCreateDirectoryObjectEx_hook │ └── NtCreateDirectoryObjectEx_hook.cpp ├── NtCreateDirectoryObject_hook │ └── NtCreateDirectoryObject_hook.cpp ├── NtCreateFile_hook │ └── NtCreateFile_hook.cpp ├── NtDeleteFile_hook │ └── NtDeleteFile_hook.cpp ├── NtOpenDirectoryObject_hook │ └── NtOpenDirectoryObject_hook.cpp ├── NtOpenFile_hook │ └── NtOpenFile_hook.cpp ├── NtQueryAttributesFile_hook │ └── NtQueryAttributesFile_hook.cpp ├── NtQueryDirectoryFileEx_hook │ └── NtQueryDirectoryFileEx_hook.cpp ├── NtQueryDirectoryFile_hook │ └── NtQueryDirectoryFile_hook.cpp ├── NtQueryFullAttributesFile_hook │ └── NtQueryFullAttributesFile_hook.cpp ├── NtQueryInformationByName_hook │ └── NtQueryInformationByName_hook.cpp └── NtQueryInformationFile_hook │ └── NtQueryInformationFile_hook.cpp ├── NtApis ├── NtApis.cpp └── peb_helper.cpp └── lib_main └── lib_main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/README.md -------------------------------------------------------------------------------- /Release_dlls/SteamAPICheckBypass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/Release_dlls/SteamAPICheckBypass.dll -------------------------------------------------------------------------------- /Release_dlls/SteamAPICheckBypass_x32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/Release_dlls/SteamAPICheckBypass_x32.dll -------------------------------------------------------------------------------- /SteamAPICheckBypass.EXAMPLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass.EXAMPLE.json -------------------------------------------------------------------------------- /SteamAPICheckBypass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass.sln -------------------------------------------------------------------------------- /SteamAPICheckBypass/dll_interface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/dll_interface.vcxproj -------------------------------------------------------------------------------- /SteamAPICheckBypass/dll_interface.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/dll_interface.vcxproj.filters -------------------------------------------------------------------------------- /SteamAPICheckBypass/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/dllmain.cpp -------------------------------------------------------------------------------- /SteamAPICheckBypass/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/exports.cpp -------------------------------------------------------------------------------- /SteamAPICheckBypass/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/exports.def -------------------------------------------------------------------------------- /SteamAPICheckBypass/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/exports.h -------------------------------------------------------------------------------- /SteamAPICheckBypass/include/nt_file_dupe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/include/nt_file_dupe.hpp -------------------------------------------------------------------------------- /SteamAPICheckBypass/src/nt_file_dupe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/src/nt_file_dupe.cpp -------------------------------------------------------------------------------- /SteamAPICheckBypass/version.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/version.asm -------------------------------------------------------------------------------- /SteamAPICheckBypass/winhttp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/winhttp.asm -------------------------------------------------------------------------------- /SteamAPICheckBypass/winmm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/SteamAPICheckBypass/winmm.asm -------------------------------------------------------------------------------- /nt_file_dupe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/README.md -------------------------------------------------------------------------------- /nt_file_dupe/include/Configs/Configs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Configs/Configs.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Helpers/Helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Helpers/Helpers.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Helpers/dbglog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Helpers/dbglog.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/Hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/Hooks.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/LdrGetDllHandle_hook/LdrGetDllHandle_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/LdrGetDllHandle_hook/LdrGetDllHandle_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/LdrLoadDll_hook/LdrLoadDll_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/LdrLoadDll_hook/LdrLoadDll_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtCreateDirectoryObjectEx_hook/NtCreateDirectoryObjectEx_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtCreateDirectoryObjectEx_hook/NtCreateDirectoryObjectEx_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtCreateDirectoryObject_hook/NtCreateDirectoryObject_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtCreateDirectoryObject_hook/NtCreateDirectoryObject_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtCreateFile_hook/NtCreateFile_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtCreateFile_hook/NtCreateFile_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtDeleteFile_hook/NtDeleteFile_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtDeleteFile_hook/NtDeleteFile_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtOpenDirectoryObject_hook/NtOpenDirectoryObject_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtOpenDirectoryObject_hook/NtOpenDirectoryObject_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtOpenFile_hook/NtOpenFile_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtOpenFile_hook/NtOpenFile_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtQueryAttributesFile_hook/NtQueryAttributesFile_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtQueryAttributesFile_hook/NtQueryAttributesFile_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtQueryDirectoryFileEx_hook/NtQueryDirectoryFileEx_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtQueryDirectoryFileEx_hook/NtQueryDirectoryFileEx_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtQueryDirectoryFile_hook/NtQueryDirectoryFile_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtQueryDirectoryFile_hook/NtQueryDirectoryFile_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtQueryFullAttributesFile_hook/NtQueryFullAttributesFile_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtQueryFullAttributesFile_hook/NtQueryFullAttributesFile_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtQueryInformationByName_hook/NtQueryInformationByName_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtQueryInformationByName_hook/NtQueryInformationByName_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/Hooks/NtQueryInformationFile_hook/NtQueryInformationFile_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/Hooks/NtQueryInformationFile_hook/NtQueryInformationFile_hook.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/NtApis/NtApis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/NtApis/NtApis.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/NtApis/peb_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/NtApis/peb_helper.hpp -------------------------------------------------------------------------------- /nt_file_dupe/include/lib_main/lib_main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/include/lib_main/lib_main.hpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/CREDITS.md -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/LICENSE -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/LICENSE.md -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/README.md -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/SECURITY.md -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/creatwth.cpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/detours.cpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/detours.h -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/detver.h -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/disasm.cpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/disolarm.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/disolarm64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/disolia64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_IA64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/disolx64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/disolx86.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X86_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/image.cpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/modules.cpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/Detours/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Detours/uimports.cpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/Json/nlohmann/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Json/nlohmann/LICENSE.MIT -------------------------------------------------------------------------------- /nt_file_dupe/libs/Json/nlohmann/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Json/nlohmann/README.md -------------------------------------------------------------------------------- /nt_file_dupe/libs/Json/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Json/nlohmann/json.hpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/Json/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/libs/Json/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /nt_file_dupe/libs/README.md: -------------------------------------------------------------------------------- 1 | External libraries 2 | -------------------------------------------------------------------------------- /nt_file_dupe/nt_file_dupe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/nt_file_dupe.vcxproj -------------------------------------------------------------------------------- /nt_file_dupe/nt_file_dupe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/nt_file_dupe.vcxproj.filters -------------------------------------------------------------------------------- /nt_file_dupe/src/Configs/Configs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Configs/Configs.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Helpers/dbglog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Helpers/dbglog.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/Hooks.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/LdrGetDllHandle_hook/LdrGetDllHandle_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/LdrGetDllHandle_hook/LdrGetDllHandle_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/LdrLoadDll_hook/LdrLoadDll_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/LdrLoadDll_hook/LdrLoadDll_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtCreateDirectoryObjectEx_hook/NtCreateDirectoryObjectEx_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtCreateDirectoryObjectEx_hook/NtCreateDirectoryObjectEx_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtCreateDirectoryObject_hook/NtCreateDirectoryObject_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtCreateDirectoryObject_hook/NtCreateDirectoryObject_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtCreateFile_hook/NtCreateFile_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtCreateFile_hook/NtCreateFile_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtDeleteFile_hook/NtDeleteFile_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtDeleteFile_hook/NtDeleteFile_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtOpenDirectoryObject_hook/NtOpenDirectoryObject_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtOpenDirectoryObject_hook/NtOpenDirectoryObject_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtOpenFile_hook/NtOpenFile_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtOpenFile_hook/NtOpenFile_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtQueryAttributesFile_hook/NtQueryAttributesFile_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtQueryAttributesFile_hook/NtQueryAttributesFile_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtQueryDirectoryFileEx_hook/NtQueryDirectoryFileEx_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtQueryDirectoryFileEx_hook/NtQueryDirectoryFileEx_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtQueryDirectoryFile_hook/NtQueryDirectoryFile_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtQueryDirectoryFile_hook/NtQueryDirectoryFile_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtQueryFullAttributesFile_hook/NtQueryFullAttributesFile_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtQueryFullAttributesFile_hook/NtQueryFullAttributesFile_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtQueryInformationByName_hook/NtQueryInformationByName_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtQueryInformationByName_hook/NtQueryInformationByName_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/Hooks/NtQueryInformationFile_hook/NtQueryInformationFile_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/Hooks/NtQueryInformationFile_hook/NtQueryInformationFile_hook.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/NtApis/NtApis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/NtApis/NtApis.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/NtApis/peb_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/NtApis/peb_helper.cpp -------------------------------------------------------------------------------- /nt_file_dupe/src/lib_main/lib_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamAutoCracks/Steam-API-Check-Bypass/HEAD/nt_file_dupe/src/lib_main/lib_main.cpp --------------------------------------------------------------------------------