├── .gitignore ├── BOF-Template.sln ├── BOF-Template ├── BOF-Template.vcxproj ├── BOF-Template.vcxproj.filters ├── Makefile ├── base │ ├── helpers.h │ ├── mock.cpp │ ├── mock.h │ └── mock_syscalls.cpp ├── beacon.h ├── beacon_gate.h ├── bof.cpp ├── packages.config ├── sleepmask.h └── utils │ └── boflint.py ├── LICENSE ├── README.md └── media └── Setup BOF-VS.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/.gitignore -------------------------------------------------------------------------------- /BOF-Template.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template.sln -------------------------------------------------------------------------------- /BOF-Template/BOF-Template.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/BOF-Template.vcxproj -------------------------------------------------------------------------------- /BOF-Template/BOF-Template.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/BOF-Template.vcxproj.filters -------------------------------------------------------------------------------- /BOF-Template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/Makefile -------------------------------------------------------------------------------- /BOF-Template/base/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/base/helpers.h -------------------------------------------------------------------------------- /BOF-Template/base/mock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/base/mock.cpp -------------------------------------------------------------------------------- /BOF-Template/base/mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/base/mock.h -------------------------------------------------------------------------------- /BOF-Template/base/mock_syscalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/base/mock_syscalls.cpp -------------------------------------------------------------------------------- /BOF-Template/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/beacon.h -------------------------------------------------------------------------------- /BOF-Template/beacon_gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/beacon_gate.h -------------------------------------------------------------------------------- /BOF-Template/bof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/bof.cpp -------------------------------------------------------------------------------- /BOF-Template/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/packages.config -------------------------------------------------------------------------------- /BOF-Template/sleepmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/sleepmask.h -------------------------------------------------------------------------------- /BOF-Template/utils/boflint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/BOF-Template/utils/boflint.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/README.md -------------------------------------------------------------------------------- /media/Setup BOF-VS.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cobalt-Strike/bof-vs/HEAD/media/Setup BOF-VS.mp4 --------------------------------------------------------------------------------