From f46635ab6cf01c10eeb79e1bbd468f4c4f7c021a Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Fri, 10 Jan 2020 14:31:27 +0200 Subject: [PATCH] Added cpp file that creates a file (for testing) --- .../archeologist_bootloader/archeologist.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 monkey/infection_monkey/external_tools/archeologist_bootloader/archeologist.cpp 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(); +}