Skip to content

Commit 5278e6f

Browse files
authored
Update README.md
1 parent c7963fc commit 5278e6f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Shellcode Compiler
2-
--------------------
32

43
Shellcode Compiler is a program that compiles C/C++ style code into a small, position-independent and NULL-free shellcode for Windows. It is possible to call any Windows API function in a user-friendly way.
54

@@ -8,7 +7,6 @@ Shellcode Compiler takes as input a source file and it uses it's own compiler to
87
Shellcode compiler was released at DefCamp security conference in Romania, November 2016.
98

109
# Command line options
11-
----------------------
1210
-h (--help) : Show this help message
1311
-v (--verbose) : Print detailed output
1412
-t (--test) : Test (execute) generated shellcode
@@ -17,7 +15,6 @@ Shellcode compiler was released at DefCamp security conference in Romania, Novem
1715
-a (--assembbly) : Output file of the generated assembly code
1816

1917
# Source code example
20-
---------------------
2118

2219
function URLDownloadToFileA("urlmon.dll");
2320
function WinExec("kernel32.dll");
@@ -28,11 +25,9 @@ Shellcode compiler was released at DefCamp security conference in Romania, Novem
2825
ExitProcess(0);
2926
3027
# Invocation example
31-
--------------------
3228
ShellcodeCompiler.exe -r Source.txt -o Shellcode.bin -a Assembly.asm
3329
3430
# Limitations
35-
-------------
3631
1. It is not possible to use the return value of an API call
3732
2. It is not possible to use pointers or buffers
3833
3. It is not possible to declare variables
@@ -42,6 +37,5 @@ All these limitations will be fixed as soon as possible. However, many other lim
4237
This is an Alpha version. Please report any bugs or suggestions.
4338

4439
# Author
45-
--------
4640

4741
Ionut Popescu (@NytroRST) is working as a Senior Penetration Tester for SecureWorks (www.secureworks.com).

0 commit comments

Comments
 (0)