From 3f2534ddec22d086739b81a584207de964e82f4d Mon Sep 17 00:00:00 2001 From: xerox Date: Mon, 1 Jun 2020 18:50:39 -0700 Subject: [PATCH] removed vs project for nozzle. --- inject/inject.vcxproj | 151 -------------------------------- inject/inject.vcxproj.filters | 23 ----- inject/inject.vcxproj.user | 7 -- inject/main.cpp | 16 ---- inject/nozzle.hpp => nozzle.hpp | 0 5 files changed, 197 deletions(-) delete mode 100644 inject/inject.vcxproj delete mode 100644 inject/inject.vcxproj.filters delete mode 100644 inject/inject.vcxproj.user delete mode 100644 inject/main.cpp rename inject/nozzle.hpp => nozzle.hpp (100%) diff --git a/inject/inject.vcxproj b/inject/inject.vcxproj deleted file mode 100644 index 5bc0aca..0000000 --- a/inject/inject.vcxproj +++ /dev/null @@ -1,151 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - 16.0 - Win32Proj - {6f7f81b0-5db0-4912-89c6-5b3f534a8ad8} - inject - 10.0 - - - - Application - true - v142 - Unicode - - - Application - false - v142 - true - Unicode - - - Application - true - v142 - Unicode - - - Application - false - v142 - true - Unicode - - - - - - - - - - - - - - - - - - - - - true - - - false - - - true - - - false - - - - Level3 - true - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - - - - - Level3 - true - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - true - true - - - - - Level3 - true - _DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - - - Console - true - - - - - Level3 - true - true - true - NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - stdcpp17 - - - Console - true - true - true - - - - - - - - - - - - \ No newline at end of file diff --git a/inject/inject.vcxproj.filters b/inject/inject.vcxproj.filters deleted file mode 100644 index 7e9cee2..0000000 --- a/inject/inject.vcxproj.filters +++ /dev/null @@ -1,23 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;c++;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd - - - - - Source Files - - - - - Header Files - - - \ No newline at end of file diff --git a/inject/inject.vcxproj.user b/inject/inject.vcxproj.user deleted file mode 100644 index d24a191..0000000 --- a/inject/inject.vcxproj.user +++ /dev/null @@ -1,7 +0,0 @@ - - - - C:\Users\xerox\source\repos\inject\x64\Release\hello-world.dll - WindowsLocalDebugger - - \ No newline at end of file diff --git a/inject/main.cpp b/inject/main.cpp deleted file mode 100644 index 1bece62..0000000 --- a/inject/main.cpp +++ /dev/null @@ -1,16 +0,0 @@ -#include -#include "nozzle.hpp" - -int __cdecl main(int argc, char** argv) -{ - if (argc < 2) - { - std::cerr << "[!] please specify a dll path" << std::endl; - return -1; - } - - nozzle::injector test_inject(argv[1], util::get_process_id(L"notepad.exe")); - std::cout << "[+] injected at: " << test_inject.inject() << std::endl; - std::cout << "[+] calling entry point, thread handle: " << test_inject.call_entry() << std::endl; - std::cin.get(); -} diff --git a/inject/nozzle.hpp b/nozzle.hpp similarity index 100% rename from inject/nozzle.hpp rename to nozzle.hpp