SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,14 @@
Fix path to wordlists
Index: discovery/googlesearch.py
--- discovery/googlesearch.py.orig
+++ discovery/googlesearch.py
@@ -94,7 +94,7 @@ class search_google:
def append_dorks(self):
try: # wrap in try-except incase filepaths are messed up
- with open('wordlists/dorks.txt', mode='r') as fp:
+ with open('${PREFIX}/share/theharvester/wordlists/dorks.txt', mode='r') as fp:
self.dorks = [dork.strip() for dork in fp]
except IOError as error:
print(error)