Skip to content

Commit

Permalink
[+] Change default to headless mode
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdln1 authored Aug 18, 2022
1 parent 34ec36a commit 54acbd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dorker.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def input_(dork):
def re_enter():
global prev_url
global driver
driver = helium.start_firefox(headless=False)
driver = helium.start_firefox(headless=True)
time.sleep(5)
go_to(prev_url)
flow()
Expand Down Expand Up @@ -97,15 +97,15 @@ def exechaha(args,dorks):
if not line:
break
else:
driver = helium.start_firefox(headless=False)
driver = helium.start_firefox(headless=True)
go_to('www.google.com')
input_(line)
time.sleep(5)
flow()

else:
line = args.dork
driver = helium.start_firefox(headless=False)
driver = helium.start_firefox(headless=True)
time.sleep(5)
go_to('www.google.com')
input_(line)
Expand Down

0 comments on commit 54acbd8

Please sign in to comment.