From 30425936d69672a7613b857ef5eba744988ab9a2 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 17 Jul 2022 23:04:20 +1000 Subject: [PATCH] docs: Fix a few typos There are small typos in: - src/core/webserver.py - src/payloads/set_payloads/uac_bypass/source/TIOR/TIOR.cpp - src/teensy/ino_gen.py Fixes: - Should read `remaining` rather than `remaning`. - Should read `processes` rather than `proceses`. - Should read `parameters` rather than `paremeters`. Signed-off-by: Tim Gates --- src/core/webserver.py | 2 +- src/payloads/set_payloads/uac_bypass/source/TIOR/TIOR.cpp | 2 +- src/teensy/ino_gen.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/webserver.py b/src/core/webserver.py index fbdbb30bc3..4d2cd0cd09 100644 --- a/src/core/webserver.py +++ b/src/core/webserver.py @@ -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): diff --git a/src/payloads/set_payloads/uac_bypass/source/TIOR/TIOR.cpp b/src/payloads/set_payloads/uac_bypass/source/TIOR/TIOR.cpp index 70bed0931d..61e287b428 100644 --- a/src/payloads/set_payloads/uac_bypass/source/TIOR/TIOR.cpp +++ b/src/payloads/set_payloads/uac_bypass/source/TIOR/TIOR.cpp @@ -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. diff --git a/src/teensy/ino_gen.py b/src/teensy/ino_gen.py index 192b018555..42c8299c0e 100644 --- a/src/teensy/ino_gen.py +++ b/src/teensy/ino_gen.py @@ -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.