diff --git a/external/source/shellcode/windows/x64/src/block/block_reverse_https.asm b/external/source/shellcode/windows/x64/src/block/block_reverse_https.asm index 93480ce9b4..9c027c28b9 100644 --- a/external/source/shellcode/windows/x64/src/block/block_reverse_https.asm +++ b/external/source/shellcode/windows/x64/src/block/block_reverse_https.asm @@ -1,6 +1,6 @@ ;-----------------------------------------------------------------------------; ; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com) -; Rewrited to x64 by agix +; Rewritten for x64 by agix ; Compatible: Windows 7 ; Architecture: x64 ;-----------------------------------------------------------------------------; diff --git a/external/source/shellcode/windows/x64/src/stager/stager_reverse_https.asm b/external/source/shellcode/windows/x64/src/stager/stager_reverse_https.asm index 6b22fe6bba..eb6b1ed2f6 100644 --- a/external/source/shellcode/windows/x64/src/stager/stager_reverse_https.asm +++ b/external/source/shellcode/windows/x64/src/stager/stager_reverse_https.asm @@ -1,6 +1,6 @@ ;-----------------------------------------------------------------------------; ; Author: Stephen Fewer (stephen_fewer[at]harmonysecurity[dot]com) -; Rewrited to x64 by agix +; Rewritten for x64 by agix ; Compatible: Windows 7 ; Architecture: x64 ; Size: 570 bytes @@ -17,4 +17,4 @@ start: ; pop rbp ; pop off the address of 'api_call' for calling later. %include "./src/block/block_reverse_https.asm" - ; By here we will have performed the reverse_tcp connection and EDI will be our socket \ No newline at end of file + ; By here we will have performed the reverse_tcp connection and EDI will be our socket diff --git a/modules/payloads/stagers/windows/x64/reverse_https.rb b/modules/payloads/stagers/windows/x64/reverse_https.rb index 5a94bfd9ae..376533b0f1 100644 --- a/modules/payloads/stagers/windows/x64/reverse_https.rb +++ b/modules/payloads/stagers/windows/x64/reverse_https.rb @@ -19,7 +19,10 @@ module Metasploit3 super(merge_info(info, 'Name' => 'Windows x64 Reverse HTTPS Stager', '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, 'Platform' => 'win', 'Arch' => ARCH_X86_64,