Skip to content
This repository has been archived by the owner on Apr 11, 2021. It is now read-only.

Update EyeWitness path #70

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion domained.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def subfinder(rerun=0):
def eyewitness(filename):
info("\n\nRunning EyeWitness \n")
EWHTTPScriptIPS = "python {} -f {} {} --no-prompt --web -d {}-{}-EW".format(
os.path.join(script_path, "bin/EyeWitness/EyeWitness.py"),
os.path.join(script_path, "bin/EyeWitness/Python/EyeWitness.py"),
filename,
"--active-scan" if active else "",
output_base,
Expand Down
2 changes: 1 addition & 1 deletion installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def upgradeFiles():
eyeWitnessUpgrade = "git clone https://github.com/FortyNorthSecurity/EyeWitness.git ./bin/EyeWitness"
info("\nInstalling EyeWitness" + eyeWitnessUpgrade)
os.system(eyeWitnessUpgrade)
eyeInstallReq = "bash bin/EyeWitness/setup/setup.sh"
eyeInstallReq = "bash bin/EyeWitness/Python/setup/setup.sh"
debug("\nRunning Command: ")
os.system(eyeInstallReq)
info("\nEyeWitness Installed\n")
Expand Down