diff --git a/monkey/infection_monkey/external_tools/archeologist_bootloader/archeologist.cpp b/monkey/infection_monkey/external_tools/archeologist_bootloader/archeologist.cpp new file mode 100644 index 000000000..195a1b4e5 --- /dev/null +++ b/monkey/infection_monkey/external_tools/archeologist_bootloader/archeologist.cpp @@ -0,0 +1,13 @@ +#include +#include + +using namespace std; + +void main() +{ + std::ofstream outfile ("C:/Windows/Temp/test.txt"); + + outfile << "my text here!" << std::endl; + + outfile.close(); +}