Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for x64 build #1

Merged
merged 1 commit into from Jun 23, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions windows/shellcodeexec/Makefile.v64
@@ -0,0 +1,8 @@
shellcodeexecvc64.exe: shellcodeexec.obj __exec_payload.obj
link shellcodeexec.obj __exec_payload.obj

shellcodeexec.obj: shellcodeexec.c
cl shellcodeexec.c /Os /TC /c

__exec_payload.obj: __exec_payload.asm
ml64 __exec_payload.asm /c
7 changes: 7 additions & 0 deletions windows/shellcodeexec/__exec_payload.asm
@@ -0,0 +1,7 @@
.CODE
__exec_payload PROC x:QWORD
mov rax, x
call QWORD PTR[rax]
ret
__exec_payload ENDP
END