├── .gitignore ├── Beacon Object File ├── MyTemplate.vstemplate ├── Source.c ├── __PreviewImage.jpg ├── __TemplateIcon.jpg ├── beacon.h ├── bofdefs.h ├── resources │ └── strip_bof.ps1 ├── scheduled-tasks.vcxproj └── scheduled-tasks.vcxproj.filters ├── README.md ├── examples ├── applocker-enumerator │ ├── AppLockerPolicy.h │ ├── Source.c │ ├── applocker-enumerator.vcxproj │ ├── applocker-enumerator.vcxproj.filters │ ├── applocker-enumerator.vcxproj.user │ ├── beacon.h │ ├── bofdefs.h │ └── resources │ │ └── strip_bof.ps1 ├── demo-bof.cna ├── example-bof.sln └── scheduled-tasks │ ├── Source.cpp │ ├── beacon.h │ ├── bofdefs.h │ ├── resources │ └── strip_bof.ps1 │ ├── scheduled-tasks.vcxproj │ ├── scheduled-tasks.vcxproj.filters │ └── scheduled-tasks.vcxproj.user └── images ├── NewProjectWizard.png ├── TemplatesLocation.png ├── building.png ├── building2.png ├── code1.png ├── errors.png ├── output.png └── project_structure.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Beacon Object File/MyTemplate.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/MyTemplate.vstemplate -------------------------------------------------------------------------------- /Beacon Object File/Source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/Source.c -------------------------------------------------------------------------------- /Beacon Object File/__PreviewImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/__PreviewImage.jpg -------------------------------------------------------------------------------- /Beacon Object File/__TemplateIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/__TemplateIcon.jpg -------------------------------------------------------------------------------- /Beacon Object File/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/beacon.h -------------------------------------------------------------------------------- /Beacon Object File/bofdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/bofdefs.h -------------------------------------------------------------------------------- /Beacon Object File/resources/strip_bof.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/resources/strip_bof.ps1 -------------------------------------------------------------------------------- /Beacon Object File/scheduled-tasks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/scheduled-tasks.vcxproj -------------------------------------------------------------------------------- /Beacon Object File/scheduled-tasks.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/Beacon Object File/scheduled-tasks.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/README.md -------------------------------------------------------------------------------- /examples/applocker-enumerator/AppLockerPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/applocker-enumerator/AppLockerPolicy.h -------------------------------------------------------------------------------- /examples/applocker-enumerator/Source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/applocker-enumerator/Source.c -------------------------------------------------------------------------------- /examples/applocker-enumerator/applocker-enumerator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/applocker-enumerator/applocker-enumerator.vcxproj -------------------------------------------------------------------------------- /examples/applocker-enumerator/applocker-enumerator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/applocker-enumerator/applocker-enumerator.vcxproj.filters -------------------------------------------------------------------------------- /examples/applocker-enumerator/applocker-enumerator.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/applocker-enumerator/applocker-enumerator.vcxproj.user -------------------------------------------------------------------------------- /examples/applocker-enumerator/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/applocker-enumerator/beacon.h -------------------------------------------------------------------------------- /examples/applocker-enumerator/bofdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/applocker-enumerator/bofdefs.h -------------------------------------------------------------------------------- /examples/applocker-enumerator/resources/strip_bof.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/applocker-enumerator/resources/strip_bof.ps1 -------------------------------------------------------------------------------- /examples/demo-bof.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/demo-bof.cna -------------------------------------------------------------------------------- /examples/example-bof.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/example-bof.sln -------------------------------------------------------------------------------- /examples/scheduled-tasks/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/scheduled-tasks/Source.cpp -------------------------------------------------------------------------------- /examples/scheduled-tasks/beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/scheduled-tasks/beacon.h -------------------------------------------------------------------------------- /examples/scheduled-tasks/bofdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/scheduled-tasks/bofdefs.h -------------------------------------------------------------------------------- /examples/scheduled-tasks/resources/strip_bof.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/scheduled-tasks/resources/strip_bof.ps1 -------------------------------------------------------------------------------- /examples/scheduled-tasks/scheduled-tasks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/scheduled-tasks/scheduled-tasks.vcxproj -------------------------------------------------------------------------------- /examples/scheduled-tasks/scheduled-tasks.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/scheduled-tasks/scheduled-tasks.vcxproj.filters -------------------------------------------------------------------------------- /examples/scheduled-tasks/scheduled-tasks.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/examples/scheduled-tasks/scheduled-tasks.vcxproj.user -------------------------------------------------------------------------------- /images/NewProjectWizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/images/NewProjectWizard.png -------------------------------------------------------------------------------- /images/TemplatesLocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/images/TemplatesLocation.png -------------------------------------------------------------------------------- /images/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/images/building.png -------------------------------------------------------------------------------- /images/building2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/images/building2.png -------------------------------------------------------------------------------- /images/code1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/images/code1.png -------------------------------------------------------------------------------- /images/errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/images/errors.png -------------------------------------------------------------------------------- /images/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/images/output.png -------------------------------------------------------------------------------- /images/project_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/securifybv/Visual-Studio-BOF-template/HEAD/images/project_structure.png --------------------------------------------------------------------------------