Skip to content

Commit 9c77143

Browse files
author
Tod Beardsley
committed
Touchup on author credit
1 parent dc014ed commit 9c77143

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

external/source/shellcode/windows/x64/src/block/block_reverse_https.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;-----------------------------------------------------------------------------;
22
; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com)
3-
; Rewrited to x64 by agix
3+
; Rewritten for x64 by agix
44
; Compatible: Windows 7
55
; Architecture: x64
66
;-----------------------------------------------------------------------------;

external/source/shellcode/windows/x64/src/stager/stager_reverse_https.asm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;-----------------------------------------------------------------------------;
22
; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com)
3-
; Rewrited to x64 by agix
3+
; Rewritten for x64 by agix
44
; Compatible: Windows 7
55
; Architecture: x64
66
; Size: 570 bytes
@@ -17,4 +17,4 @@
1717
start: ;
1818
pop rbp ; pop off the address of 'api_call' for calling later.
1919
%include "./src/block/block_reverse_https.asm"
20-
; By here we will have performed the reverse_tcp connection and EDI will be our socket
20+
; By here we will have performed the reverse_tcp connection and EDI will be our socket

modules/payloads/stagers/windows/x64/reverse_https.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ def initialize(info = {})
1919
super(merge_info(info,
2020
'Name' => 'Windows x64 Reverse HTTPS Stager',
2121
'Description' => 'Tunnel communication over HTTP using SSL (Windows x64)',
22-
'Author' => 'hdm (x64 rewrite by agix)',
22+
'Author' => [
23+
'hdm', # original 32-bit implementation
24+
'agix' # x64 rewrite
25+
],
2326
'License' => MSF_LICENSE,
2427
'Platform' => 'win',
2528
'Arch' => ARCH_X86_64,

0 commit comments

Comments
 (0)