├── LICENSE ├── README.md ├── encryption ├── obstcate.h └── xor.h ├── main └── main.cpp ├── misc ├── includes.h ├── lazy.h └── process.hpp ├── protect ├── anti_attach.cpp ├── anti_attach.h ├── anti_debugger.cpp ├── anti_debugger.h ├── anti_dump.cpp ├── anti_dump.h ├── integrity_check.cpp ├── integrity_check.h ├── kill_process.cpp ├── kill_process.h ├── nodeserver │ ├── node_protect.cpp │ └── node_protect.h ├── protectmain.cpp ├── protectmain.h └── selfcode │ ├── filler.cpp │ ├── filler.h │ ├── ntapi.cpp │ ├── ntapi.h │ ├── pe_header.cpp │ ├── pe_header.h │ ├── remap.cpp │ ├── remap.h │ ├── selfcode.cpp │ └── selfcode.h ├── refo_v2.sln ├── refo_v2.vcxproj ├── refo_v2.vcxproj.filters └── refo_v2.vcxproj.user /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/README.md -------------------------------------------------------------------------------- /encryption/obstcate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/encryption/obstcate.h -------------------------------------------------------------------------------- /encryption/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/encryption/xor.h -------------------------------------------------------------------------------- /main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/main/main.cpp -------------------------------------------------------------------------------- /misc/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/misc/includes.h -------------------------------------------------------------------------------- /misc/lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/misc/lazy.h -------------------------------------------------------------------------------- /misc/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/misc/process.hpp -------------------------------------------------------------------------------- /protect/anti_attach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/anti_attach.cpp -------------------------------------------------------------------------------- /protect/anti_attach.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern void AntiAttach(); 4 | -------------------------------------------------------------------------------- /protect/anti_debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/anti_debugger.cpp -------------------------------------------------------------------------------- /protect/anti_debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/anti_debugger.h -------------------------------------------------------------------------------- /protect/anti_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/anti_dump.cpp -------------------------------------------------------------------------------- /protect/anti_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/anti_dump.h -------------------------------------------------------------------------------- /protect/integrity_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/integrity_check.cpp -------------------------------------------------------------------------------- /protect/integrity_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/integrity_check.h -------------------------------------------------------------------------------- /protect/kill_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/kill_process.cpp -------------------------------------------------------------------------------- /protect/kill_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/kill_process.h -------------------------------------------------------------------------------- /protect/nodeserver/node_protect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/nodeserver/node_protect.cpp -------------------------------------------------------------------------------- /protect/nodeserver/node_protect.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern bool node_client(); -------------------------------------------------------------------------------- /protect/protectmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/protectmain.cpp -------------------------------------------------------------------------------- /protect/protectmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/protectmain.h -------------------------------------------------------------------------------- /protect/selfcode/filler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/filler.cpp -------------------------------------------------------------------------------- /protect/selfcode/filler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/filler.h -------------------------------------------------------------------------------- /protect/selfcode/ntapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/ntapi.cpp -------------------------------------------------------------------------------- /protect/selfcode/ntapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/ntapi.h -------------------------------------------------------------------------------- /protect/selfcode/pe_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/pe_header.cpp -------------------------------------------------------------------------------- /protect/selfcode/pe_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/pe_header.h -------------------------------------------------------------------------------- /protect/selfcode/remap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/remap.cpp -------------------------------------------------------------------------------- /protect/selfcode/remap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/remap.h -------------------------------------------------------------------------------- /protect/selfcode/selfcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/protect/selfcode/selfcode.cpp -------------------------------------------------------------------------------- /protect/selfcode/selfcode.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern int selfcode(); -------------------------------------------------------------------------------- /refo_v2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/refo_v2.sln -------------------------------------------------------------------------------- /refo_v2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/refo_v2.vcxproj -------------------------------------------------------------------------------- /refo_v2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/refo_v2.vcxproj.filters -------------------------------------------------------------------------------- /refo_v2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReFo0/anti-crack-system/HEAD/refo_v2.vcxproj.user --------------------------------------------------------------------------------