Skip to content

Commit b3c78f7

Browse files
committed
Whitespace
1 parent 4a17a30 commit b3c78f7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

external/source/shellcode/windows/x86/src/block/block_rc4.asm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ init:
1919
inc al ; increase byte to write (EDI is increased automatically)
2020
jnz init ; loop until we wrap around
2121
sub edi, 0x100 ; restore EDI
22-
22+
2323
; permute S-box according to key
2424
xor ebx, ebx ; Clear EBX (EAX is already cleared)
2525
permute:
@@ -32,8 +32,8 @@ permute:
3232
mov [edi+eax], dl
3333
inc al ; AL += 1 until we wrap around
3434
jnz permute
35-
36-
35+
36+
3737
; decryption loop
3838
xor ebx, ebx ; Clear EBX (EAX is already cleared)
3939
decrypt:

external/source/shellcode/windows/x86/src/stager/stager_bind_tcp_rc4.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ start: ;
1717
%include "./src/block/block_bind_tcp.asm"
1818
; By here we will have performed the bind_tcp connection and EDI will be our socket.
1919
%include "./src/block/block_recv_rc4.asm"
20-
; By now we will have received in the second stage into a RWX buffer and be executing it
20+
; By now we will have received in the second stage into a RWX buffer and be executing it

external/source/shellcode/windows/x86/src/stager/stager_reverse_tcp_rc4.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ start: ;
1818
%include "./src/block/block_reverse_tcp.asm"
1919
; By here we will have performed the reverse_tcp connection and EDI will be our socket.
2020
%include "./src/block/block_recv_rc4.asm"
21-
; By now we will have recieved in the second stage into a RWX buffer and be executing it
21+
; By now we will have recieved in the second stage into a RWX buffer and be executing it

external/source/shellcode/windows/x86/src/test_rc4.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
; c1.encrypt
99
; c1.key="Hello, my world!"
1010
; c1.update("This is some magic data you may want to have encoded and decoded again").unpack("H*")
11-
;
11+
;
1212
; => "882353c5de0f5e6b10bf0d25c432c5d16424dc797e895f37f261c893b31d577e7e69f77e07aa576d58c7f757164e7d74988feb10f972b28dcfa1e3a2b1cc0b0fa1a8b116294b"
1313
;
1414
; c1 = OpenSSL::Cipher::Cipher.new('RC4')

0 commit comments

Comments
 (0)