Skip to content

Commit

Permalink
Merge pull request #955 from timgates42/bugfix_typos
Browse files Browse the repository at this point in the history
docs: Fix a few typos
  • Loading branch information
HackingDave authored May 24, 2024
2 parents 46a4b14 + 3042593 commit 884a24e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/webserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def do_QUIT(self):
self.server.stop = True

def do_POST(self):
# We could also process paremeters here using something like below.
# We could also process parameters here using something like below.
self.do_GET()

def send_head(self):
Expand Down
2 changes: 1 addition & 1 deletion src/payloads/set_payloads/uac_bypass/source/TIOR/TIOR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//
// This application is used for redirection data from the console to the pipes,
// not useng pipes at the other side.
// It is caused by some differences when using some other proceses which
// It is caused by some differences when using some other processes which
// also redirect data. Main reason is differences in ReadConsole and ReadFile
// methods.
// Using this redirector app, child process will never know that his parent redirects it's IO.
Expand Down
2 changes: 1 addition & 1 deletion src/teensy/ino_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
print('-----Formatting shellcode for ino file-----') # Progress notification to the user.
ino_output_file.writelines( teensy_gen.ino_print_gen(payload_shellcode[0:34] ) + '\n' ) # format first line as shorter than rest.

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

0 comments on commit 884a24e

Please sign in to comment.