Touchup on author credit
parent
dc014ede36
commit
9c771435f2
|
@ -1,6 +1,6 @@
|
||||||
;-----------------------------------------------------------------------------;
|
;-----------------------------------------------------------------------------;
|
||||||
; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com)
|
; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com)
|
||||||
; Rewrited to x64 by agix
|
; Rewritten for x64 by agix
|
||||||
; Compatible: Windows 7
|
; Compatible: Windows 7
|
||||||
; Architecture: x64
|
; Architecture: x64
|
||||||
;-----------------------------------------------------------------------------;
|
;-----------------------------------------------------------------------------;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;-----------------------------------------------------------------------------;
|
;-----------------------------------------------------------------------------;
|
||||||
; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com)
|
; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com)
|
||||||
; Rewrited to x64 by agix
|
; Rewritten for x64 by agix
|
||||||
; Compatible: Windows 7
|
; Compatible: Windows 7
|
||||||
; Architecture: x64
|
; Architecture: x64
|
||||||
; Size: 570 bytes
|
; Size: 570 bytes
|
||||||
|
@ -17,4 +17,4 @@
|
||||||
start: ;
|
start: ;
|
||||||
pop rbp ; pop off the address of 'api_call' for calling later.
|
pop rbp ; pop off the address of 'api_call' for calling later.
|
||||||
%include "./src/block/block_reverse_https.asm"
|
%include "./src/block/block_reverse_https.asm"
|
||||||
; By here we will have performed the reverse_tcp connection and EDI will be our socket
|
; By here we will have performed the reverse_tcp connection and EDI will be our socket
|
||||||
|
|
|
@ -19,7 +19,10 @@ module Metasploit3
|
||||||
super(merge_info(info,
|
super(merge_info(info,
|
||||||
'Name' => 'Windows x64 Reverse HTTPS Stager',
|
'Name' => 'Windows x64 Reverse HTTPS Stager',
|
||||||
'Description' => 'Tunnel communication over HTTP using SSL (Windows x64)',
|
'Description' => 'Tunnel communication over HTTP using SSL (Windows x64)',
|
||||||
'Author' => 'hdm (x64 rewrite by agix)',
|
'Author' => [
|
||||||
|
'hdm', # original 32-bit implementation
|
||||||
|
'agix' # x64 rewrite
|
||||||
|
],
|
||||||
'License' => MSF_LICENSE,
|
'License' => MSF_LICENSE,
|
||||||
'Platform' => 'win',
|
'Platform' => 'win',
|
||||||
'Arch' => ARCH_X86_64,
|
'Arch' => ARCH_X86_64,
|
||||||
|
|
Loading…
Reference in New Issue