mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-23 04:53:05 +00:00
Fix path for 'hijacking.dll' and 'repository'
This commit is contained in:
parent
f70a60690e
commit
907a62290b
1 changed files with 3 additions and 3 deletions
|
@ -25,7 +25,7 @@ except ImportError as error:
|
|||
print(dll_hijacker_text)
|
||||
|
||||
# open the repository, its simple name,extension,dll
|
||||
fileopen = open(setdir + "/src/webattack/dll_hijacking/repository", "r")
|
||||
fileopen = open("src/webattack/dll_hijacking/repository", "r")
|
||||
|
||||
# set base counter for our pick
|
||||
print(" Enter the choice of the file extension you want to attack:\n")
|
||||
|
@ -48,7 +48,7 @@ choice = int(choice)
|
|||
|
||||
# reset the counter and get our payload ready and selected
|
||||
counter = 1
|
||||
fileopen = open(setdir + "/src/webattack/dll_hijacking/repository", "r")
|
||||
fileopen = open("src/webattack/dll_hijacking/repository", "r")
|
||||
for line in fileopen:
|
||||
line = line.split(",")
|
||||
if int(counter) == int(choice):
|
||||
|
@ -79,7 +79,7 @@ else:
|
|||
update_options("IPADDR=" + ipaddr)
|
||||
|
||||
# replace ipaddress with one that we need for reverse connection back
|
||||
fileopen = open(setdir + "/src/webattack/dll_hijacking/hijacking.dll", "rb")
|
||||
fileopen = open("src/webattack/dll_hijacking/hijacking.dll", "rb")
|
||||
data = fileopen.read()
|
||||
|
||||
filewrite = open(setdir + "/dll/%s" % (dll), "wb")
|
||||
|
|
Loading…
Reference in a new issue