mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-24 06:22:57 +08:00
Made small change to baidu to use fstring and removed one google dork from dorklist
This commit is contained in:
parent
ccb7f7edba
commit
d09cb9b5fc
2 changed files with 1 additions and 1 deletions
|
@ -17,6 +17,7 @@ def __init__(self, word, limit):
|
|||
|
||||
def do_search(self):
|
||||
url = 'http://' + self.server + '/s?wd=%40' + self.word + '&pn=' + str(self.counter) + '&oq=' + self.word
|
||||
url = f'https://{self.server}/s?wd=%40{self.word}&pn{self.counter}&oq={self.word}'
|
||||
headers = {
|
||||
'Host': self.hostname,
|
||||
'User-agent': Core.get_user_agent()
|
||||
|
|
|
@ -36,5 +36,4 @@ inurl:"gs/adminlogin.aspx"
|
|||
wwwboard WebAdmin inurl:passwd.txt wwwboard|webadmin
|
||||
robots.txt
|
||||
php-addressbook "This is the addressbook for *" -warning
|
||||
filetype:log inurl:password.log
|
||||
intitle:"index of" members OR accounts
|
||||
|
|
Loading…
Reference in a new issue