Skip to content

Commit

Permalink
v1.0.7 - Update dirsearch output & solve full scan bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Anteste committed Jun 3, 2022
1 parent e08a1cd commit edda4f5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conf/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from modules.nmapscan import nmap_scan

ans = True
version = "1.0.5"
version = "1.0.7"
home = os.path.expanduser("~")


Expand Down
2 changes: 1 addition & 1 deletion conf/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.6
1.0.7
2 changes: 1 addition & 1 deletion modules/dirsearchscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def dirsearch_scan():
conf.create_dir(dir_output)

conf.os.system(
f"python3 {conf.home}/.local/share/dirsearch/dirsearch.py -u {dir_host} --simple-report={dir_output}/dirsearch.txt"
f"python3 {conf.home}/.local/share/dirsearch/dirsearch.py -u {dir_host} --format plain -o {dir_output}/dirsearch.txt"
)

print(
Expand Down
6 changes: 3 additions & 3 deletions modules/fullscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def full_scan():
print("===========================================================")

full_host = input(
conf.colored("\nEnter the target URL : ", "green", attrs=["bold"]))
conf.colored("\nEnter the target URL (i.e. opensource.com) : ", "green", attrs=["bold"]))
full_output = input(
conf.colored(
f"Enter the output folder - [default: reports/All/{full_host}/]: ",
Expand Down Expand Up @@ -53,7 +53,7 @@ def full_scan():
conf.clear()

conf.os.system(
f"gnome-terminal -- bash -c 'python3 {conf.home}/.local/share/dirsearch/dirsearch.py -u {full_host} --simple-report=\"{full_output}/dirsearch.txt\" && bash'"
f"gnome-terminal -- bash -c 'python3 {conf.home}/.local/share/dirsearch/dirsearch.py -u {full_host} --format plain -o \"{full_output}/dirsearch.txt\" && bash'"
)
conf.clear()

Expand All @@ -66,7 +66,7 @@ def full_scan():
conf.os.system(f"nmap -A {full_ip} -o {full_output}/nmap.txt")

conf.os.system(
f"python3 ~/.local/share/dirsearch/dirsearch.py -u {full_host} --simple-report='{full_output}/dirsearch.txt'"
f"python3 ~/.local/share/dirsearch/dirsearch.py -u {full_host} --format plain -o '{full_output}/dirsearch.txt'"
)

conf.os.system(f"nikto +h {full_host} -output {full_output}/nikto.txt")

0 comments on commit edda4f5

Please sign in to comment.