Currently this is only designed to
- Scrape dark web for onion links
- Scrape images from dark web
- Check language of a dark web link
- Check if a onion link is valid or not
Without tor browser
- Instead of using TOR browser, Using tor proxy
- Randomized IP address for anonymity
- Spoofing user agent to avoid getting tracked
- Linux [ used debian based distro ]
- Update package lists
$ sudo apt update
- Install tor package
$ sudo apt install tor
- Start Tor service
$ sudo service tor start
- Verify installation status
$ sudo service tor status
$ pip install dark-web-scraper
- Request :
find_onion_links( str )
- Response: links will be saved in
result.txt
- Example :
# Main.py
from dark_web_scraper import find_onion_links
find_onion_links('http://random_url.onion')
- Request :
find_images_from_onion_link( str )
- Response: Images will be saved in
/static/images
- Example :
# Main.py
from dark_web_scraper import find_images_from_onion_link
find_images_from_onion_link('http://random_url.onion')
- Request :
detect_onion_link_language( str )
- Response: Gives back the result as the language name
- Example :
# Main.py
from dark_web_scraper import detect_onion_link_language
detect_onion_link_language('http://random_url.onion')
- Request :
is_onion_site_valid( str )
- Response: gives response as True or False
- Example :
# Main.py
from dark_web_scraper import is_onion_site_valid
is_onion_site_valid('http://random_url.onion')
-
Language Detection - Language translation
-
Onion link validator - Object detection in images
- Named entity recognition
- Search specific keywords in a list of urls
- Sentiment aAnalysis on the webpage contents
- I don't promote illegality.
- This project is just for educational purposes only