baidu+dogpile

two plugins added
This commit is contained in:
maldevel 2016-04-23 10:02:44 +03:00
parent 44e2e96d0f
commit c8dfb3e4ea
5 changed files with 95 additions and 3 deletions

View file

@ -251,7 +251,7 @@ if __name__ == '__main__':
all_emails = unique(all_emails)
if not all_emails:
print(red("No emails found"))
print(red("\nNo emails found!"))
sys.exit(4)
msg = "\n\n[+] {} emails found:".format(len(all_emails))

42
plugins/baidu.py Normal file
View file

@ -0,0 +1,42 @@
"""
This file is part of EmailHarvester
Copyright (C) 2016 @maldevel
https://github.com/maldevel/EmailHarvester
EmailHarvester - A tool to retrieve Domain email addresses from Search Engines.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
For more see the file 'LICENSE' for copying permission.
"""
#config = None
app_emailharvester = None
def search(domain, limit):
app_emailharvester.show_message("\n[+] Searching in Baidu..\n")
url = 'http://www.baidu.com/search/s?wd="%40{word}"&pn={counter}'
app_emailharvester.init_search(url, domain, limit, 0, 10)
app_emailharvester.process()
return app_emailharvester.get_emails()
class Plugin:
def __init__(self, app):#, conf
global app_emailharvester, config
#config = conf
app.register_plugin('baidu', {'search': search})
app_emailharvester = app

42
plugins/dogpile.py Normal file
View file

@ -0,0 +1,42 @@
"""
This file is part of EmailHarvester
Copyright (C) 2016 @maldevel
https://github.com/maldevel/EmailHarvester
EmailHarvester - A tool to retrieve Domain email addresses from Search Engines.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
For more see the file 'LICENSE' for copying permission.
"""
#config = None
app_emailharvester = None
def search(domain, limit):
app_emailharvester.show_message("\n[+] Searching in Dogpile..\n")
url = 'http://www.dogpile.com/search/web?qsi={counter}&q="%40{word}"'
app_emailharvester.init_search(url, domain, limit, 1, 10)
app_emailharvester.process()
return app_emailharvester.get_emails()
class Plugin:
def __init__(self, app):#, conf
global app_emailharvester, config
#config = conf
app.register_plugin('dogpile', {'search': search})
app_emailharvester = app

View file

@ -27,7 +27,7 @@ app_emailharvester = None
def search(domain, limit):
app_emailharvester.show_message("\n[+] Searching in Google..\n")
url = 'http://www.google.com/search?num=100&start={counter}&hl=en&q=%40"{word}"'
url = 'http://www.google.com/search?num=100&start={counter}&hl=en&q="%40{word}"'
app_emailharvester.init_search(url, domain, limit, 0, 100)
app_emailharvester.process()
return app_emailharvester.get_emails()

View file

@ -48,11 +48,19 @@ def search(domain, limit):
all_emails += app_emailharvester.get_emails()
app_emailharvester.show_message("\n[+] Searching in Google + Linkedin..\n")
googleUrl = 'http://www.google.com/search?num=100&start={counter}&hl=en&q=site%3Alinkedin.com+%40"{word}"'
googleUrl = 'http://www.google.com/search?num=100&start={counter}&hl=en&q=site%3Alinkedin.com+"%40{word}"'
app_emailharvester.init_search(googleUrl, domain, limit, 0, 100)
app_emailharvester.process()
all_emails += app_emailharvester.get_emails()
app_emailharvester.show_message("\n[+] Searching in Baidu + Linkedin..\n")
url = 'http://www.baidu.com/search/s?wd=site%3Alinkedin.com+"%40{word}"&pn={counter}'
app_emailharvester.init_search(url, domain, limit, 0, 10)
app_emailharvester.process()
all_emails += app_emailharvester.get_emails()
#dogpile seems to not support site:
return all_emails