Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
Fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
duck-nukem committed Dec 23, 2017
1 parent 458edb0 commit 955727d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloak.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 955727d

Please sign in to comment.