mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-25 06:53:05 +08:00
Incoperate PR #178 changes plus a few tweaks
This commit is contained in:
parent
330fb19847
commit
c2e9c4578b
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ def do_search(self):
|
|||
'Accept-Language': 'en-us,en',
|
||||
'User-agent': Core.get_user_agent()
|
||||
}
|
||||
h = requests.get(url=('http://'+self.server + '/search?q=%40' + self.word + '&count=50&first=' + str(self.counter)), headers=headers)
|
||||
h = requests.get(url=('https://' + self.server + '/search?q=%40"' + self.word + '"&count=50&first=' + str(self.counter)), headers=headers)
|
||||
self.results = h.text
|
||||
self.totalresults += self.results
|
||||
|
||||
|
|
Loading…
Reference in a new issue