From 955727d950403736bb7e6983d26b83aa32b22ebf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Szab=C3=B3?= Date: Sat, 23 Dec 2017 14:19:47 +0100 Subject: [PATCH] Fixed a typo --- cloak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloak.py b/cloak.py index 155115b..4a014e5 100644 --- a/cloak.py +++ b/cloak.py @@ -115,7 +115,7 @@ def injector(script): f.close() # closes the file payload = ''.join(payload) # converts payload list into a string payload = payload.split("'") # converts the payload into a list by splitting it from the character ' - base64_string = payload[3] # retireves the third *coughs* the fourth element from the payload list + base64_string = payload[3] # retrieves the third *coughs* the fourth element from the payload list print '%s Injecting into %s%s%s' % (run, green, script, end) injectable_lines = [] # Lines where payload pieces can be inserted safely imports = [] # lines that are being used to import libraries. Perfect for inserting 'import base64, sys'