File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
payloads/set_payloads/uac_bypass/source/TIOR Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def do_QUIT(self):
19
19
self .server .stop = True
20
20
21
21
def do_POST (self ):
22
- # We could also process paremeters here using something like below.
22
+ # We could also process parameters here using something like below.
23
23
self .do_GET ()
24
24
25
25
def send_head (self ):
Original file line number Diff line number Diff line change 10
10
//
11
11
// This application is used for redirection data from the console to the pipes,
12
12
// not useng pipes at the other side.
13
- // It is caused by some differences when using some other proceses which
13
+ // It is caused by some differences when using some other processes which
14
14
// also redirect data. Main reason is differences in ReadConsole and ReadFile
15
15
// methods.
16
16
// Using this redirector app, child process will never know that his parent redirects it's IO.
Original file line number Diff line number Diff line change 108
108
print ('-----Formatting shellcode for ino file-----' ) # Progress notification to the user.
109
109
ino_output_file .writelines ( teensy_gen .ino_print_gen (payload_shellcode [0 :34 ] ) + '\n ' ) # format first line as shorter than rest.
110
110
111
- while (start_pos <= length ): # format the remaning lines of shellcode.
111
+ while (start_pos <= length ): # format the remaining lines of shellcode.
112
112
end_pos = start_pos + width # Set the position of end_pos.
113
113
if (end_pos >= (length - 3 )): # Check if end position is greater than the length of the shellcode.
114
114
end_pos = length # set the end position for the last line.
You can’t perform that action at this time.
0 commit comments