├── .gitattributes ├── .gitignore ├── Beacon.sln ├── Beacon ├── Beacon.c ├── Beacon.vcxproj ├── Beacon.vcxproj.filters ├── Bof.c ├── Bof.h ├── CmdExecuteAssembly.c ├── Command.c ├── Command.h ├── Config.c ├── Config.h ├── DunpHash.c ├── File.c ├── GuangMing.c ├── GuangMing.h ├── Http.c ├── Http.h ├── InjectProcess.c ├── Job.c ├── Job.h ├── MetaData.c ├── MetaData.h ├── Patch.c ├── Shell.c ├── Util.h ├── bcookesHalosGate.asm ├── libcrypto.lib ├── ntdef.h └── util.c ├── README.md └── ceshi ├── ce.c ├── ceshi.vcxproj ├── ceshi.vcxproj.filters └── stdafx.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/.gitignore -------------------------------------------------------------------------------- /Beacon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon.sln -------------------------------------------------------------------------------- /Beacon/Beacon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Beacon.c -------------------------------------------------------------------------------- /Beacon/Beacon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Beacon.vcxproj -------------------------------------------------------------------------------- /Beacon/Beacon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Beacon.vcxproj.filters -------------------------------------------------------------------------------- /Beacon/Bof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Bof.c -------------------------------------------------------------------------------- /Beacon/Bof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Bof.h -------------------------------------------------------------------------------- /Beacon/CmdExecuteAssembly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/CmdExecuteAssembly.c -------------------------------------------------------------------------------- /Beacon/Command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Command.c -------------------------------------------------------------------------------- /Beacon/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Command.h -------------------------------------------------------------------------------- /Beacon/Config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Config.c -------------------------------------------------------------------------------- /Beacon/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Config.h -------------------------------------------------------------------------------- /Beacon/DunpHash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/DunpHash.c -------------------------------------------------------------------------------- /Beacon/File.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/File.c -------------------------------------------------------------------------------- /Beacon/GuangMing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/GuangMing.c -------------------------------------------------------------------------------- /Beacon/GuangMing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/GuangMing.h -------------------------------------------------------------------------------- /Beacon/Http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Http.c -------------------------------------------------------------------------------- /Beacon/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Http.h -------------------------------------------------------------------------------- /Beacon/InjectProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/InjectProcess.c -------------------------------------------------------------------------------- /Beacon/Job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Job.c -------------------------------------------------------------------------------- /Beacon/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Job.h -------------------------------------------------------------------------------- /Beacon/MetaData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/MetaData.c -------------------------------------------------------------------------------- /Beacon/MetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/MetaData.h -------------------------------------------------------------------------------- /Beacon/Patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Patch.c -------------------------------------------------------------------------------- /Beacon/Shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Shell.c -------------------------------------------------------------------------------- /Beacon/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/Util.h -------------------------------------------------------------------------------- /Beacon/bcookesHalosGate.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/bcookesHalosGate.asm -------------------------------------------------------------------------------- /Beacon/libcrypto.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/libcrypto.lib -------------------------------------------------------------------------------- /Beacon/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/ntdef.h -------------------------------------------------------------------------------- /Beacon/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/Beacon/util.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/README.md -------------------------------------------------------------------------------- /ceshi/ce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/ceshi/ce.c -------------------------------------------------------------------------------- /ceshi/ceshi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/ceshi/ceshi.vcxproj -------------------------------------------------------------------------------- /ceshi/ceshi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M0nster3/Beacon/HEAD/ceshi/ceshi.vcxproj.filters -------------------------------------------------------------------------------- /ceshi/stdafx.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | --------------------------------------------------------------------------------