Skip to content

Commit e5694a8

Browse files
committed
[FEATURE] Added a banner to injector
1 parent 080fe6d commit e5694a8

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tests/injector/main.cpp

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@
55
int main(int argc, char *argv[])
66
{
77
if (argc < 3) {
8-
std::cout << "Args: <shellcode> <target pid>\n";
8+
std::cout << "~ injector "
9+
#ifdef _WIN64
10+
<< "(64-bit)"
11+
#else
12+
<< "(32-bit)"
13+
#endif
14+
<< " ~\n"
15+
<< "Loads shellcode from a file, and injects it into a process with a given PID.\n";
16+
17+
std::cout << "Args: <shellcode_file> <target_PID>" << std::endl;
18+
system("pause");
919
return 0;
1020
}
1121

0 commit comments

Comments
 (0)