Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/mthbernardes/fses
OSINT (Open Source Intelligence)ReconnaissanceInformation GatheringCrawler
GitHubmthbernardes/fses

fses

Fucking Search Engines Scraper - python library to scrap url's from search engines

View Repository
47148 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
fses — Fucking Search Engines Scraper - python library to scrap url's from search engines | Kitploit

fses

Fucking Search Engines Scraper - python library to scrap url's from search engines

Search Engines we scrap

root@kitploit:~
Ask
Bing
DuckDuck GO
UOL
Yahoo

Install

root@kitploit:~
git clone https://github.com/mthbernardes/fses.git
cd fses
pip install -r requeriments.txt

Usage

Simple search using Ask

root@kitploit:~
from searchEngines.ask import ask

print "Ask Search"
query = "site:domain.com" # Set a dork
a = ask() # Start a instance of any search engine
results = a.search(query,verbose=True) #All classes use the method search, verbose is used just to print, what page the script is scraping
for url in results
	print url

All search engine methods

root@kitploit:~
query = "site:domain.com"

from searchEngines.ask import ask
print "Ask Search"
results.extend(ask().search(query,verbose=verbose))

from searchEngines.uol import uol
print "UOL Search"
results.extend(uol().search(query,verbose=verbose))

from searchEngines.bing import bing
print "Bing Search"
results.extend(bing().search(query,verbose=verbose))

from searchEngines.yahoo import yahoo
print "Yahoo Search"
results.extend(yahoo().search(query,verbose=verbose))	

from searchEngines.duckduckgo import duckDuckGo
print "DuckDuckGo Search"
results.extend(duckDuckGo().search(query,verbose=verbose))

Search using all search engines

root@kitploit:~
from utils import util
query = "site:conviso.com.br"
results = util.searchAll(query,verbose=False) #searchAll has the same properties then search method
for url in results
	print url

How to create a search engine plugin

Just follow the searchEngines/example.py, it's a template of how to create a plugin to another search engine.

Greatz

GoogleINURL

jcesarstef

Download Tool