Skip to content

Commit 884a24e

Browse files
authored
Merge pull request #955 from timgates42/bugfix_typos
docs: Fix a few typos
2 parents 46a4b14 + 3042593 commit 884a24e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/core/webserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def do_QUIT(self):
1919
self.server.stop = True
2020

2121
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.
2323
self.do_GET()
2424

2525
def send_head(self):

src/payloads/set_payloads/uac_bypass/source/TIOR/TIOR.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//
1111
// This application is used for redirection data from the console to the pipes,
1212
// 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
1414
// also redirect data. Main reason is differences in ReadConsole and ReadFile
1515
// methods.
1616
// Using this redirector app, child process will never know that his parent redirects it's IO.

src/teensy/ino_gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
print('-----Formatting shellcode for ino file-----') # Progress notification to the user.
109109
ino_output_file.writelines( teensy_gen.ino_print_gen(payload_shellcode[0:34] ) + '\n' ) # format first line as shorter than rest.
110110

111-
while (start_pos <= length): # format the remaning lines of shellcode.
111+
while (start_pos <= length): # format the remaining lines of shellcode.
112112
end_pos = start_pos + width # Set the position of end_pos.
113113
if (end_pos >= (length - 3)): # Check if end position is greater than the length of the shellcode.
114114
end_pos = length # set the end position for the last line.

0 commit comments

Comments
 (0)