Darkdump는 Python으로 작성된 딥 웹 조사를 수행하기 위한 OSINT 인터페이스로, 사용자가 검색어를 입력할 수 있도록 하며, darkdump는 해당 검색어와 관련된 .onion 사이트를 긁어 이메일, 메타데이터, 키워드, 이미지를 추출하는 기능을 제공합니다. , 소셜 미디어 등 Darkdump는 Ahmia.fi를 통해 사이트를 검색하고 tor 네트워크를 통해 연결될 때 해당 .onion 주소를 긁어냅니다.
git clone https://github.com/josh0xA/darkdump
cd darkdump
python3 -m pip install -r requirements.txt
python3 darkdump.py --help
Darkdump를 효과적으로 사용하려면 스크립트가 Tor 제어 포트를 통해 이를 제어할 수 있도록 Tor를 구성해야 합니다. torrc
파일을 설정하고 Tor가 실행 중인지 확인하는 방법은 다음과 같습니다.
Tor가 시스템에 아직 설치되어 있지 않은 경우 Tor를 설치해야 합니다. 다양한 운영 체제에 Tor를 설치하는 방법은 다음과 같습니다.
Debian/Kali/Ubuntu: sudo apt install tor
MacOS: brew install tor
torrc 파일을 찾으세요. 이 파일은 일반적으로 Linux의 /etc/tor/torrc
에서 발견되며 때로는 Mac에서도 발견됩니다.
제어 포트를 활성화하고 제어 포트 비밀번호를 설정하려면 torrc에 다음 줄을 추가하세요.
ControlPort 9051
HashedControlPassword [YourHashedPasswordHere]
[YourHashedPasswordHere]
tor --hash-password
명령을 사용하여 생성할 수 있는 해시된 비밀번호로 바꾸세요: tor --hash-password "my_password"
리눅스: sudo systemctl start tor.service
MacOS: brew services start tor
python3 darkdump.py -q "hacking" -a 10 --scrape --proxy
- 10개의 링크를 검색하고 각 사이트를 스크랩합니다.
python3 darkdump.py -q "free movies" -a 25
- 긁지 말고 해당 쿼리에 대해 25개의 링크만 반환하세요(Tor는 필요하지 않음)
python3 darkdump.py -q "marketplaces" -a 15 --scrape --proxy -i
- 10개의 링크를 검색하고 각 사이트를 스크랩하며 이미지를 찾아 저장합니다.
_ _ _ __
__| | __ _ _ __| | ____| |_ _ _ __ ___ _ __ / /
/ _` |/ _` | '__| |/ / _` | | | | '_ ` _ | '_ / /
| (_| | (_| | | | < (_| | |_| | | | | | | |_) | / /
__,_|__,_|_| |_|___,_|__,_|_| |_| |_| .__/ /_/ v3 by Josh Schiavone
|_|
usage: darkdump.py [-h] [-v] [-q QUERY] [-a AMOUNT] [-p] [-i] [-s]
Darkdump is an interface for scraping the deepweb through Ahmia. Made by yours truly.
options:
-h, --help show this help message and exit
-v, --version returns darkdump's version
-q QUERY, --query QUERY
the keyword or string you want to search on the deepweb
-a AMOUNT, --amount AMOUNT
the amount of results you want to retrieve
-p, --proxy use tor proxy for scraping
-i, --images scrape images and visual content from the site
-s, --scrape scrape the actual site for content and look for keywords
이 프로그램의 개발자인 Josh Schiavone은 이 데이터 수집 도구의 오용에 대해 책임을 지지 않습니다. 정부의 법률 및 규정에 따라 불법으로 식별되는 활동에 참여하는 웹사이트를 탐색하기 위해 darkdump를 사용하지 마십시오. 신의 축복이 여러분 모두에게 있기를 바랍니다.
MIT 라이센스
저작권 (c) Josh Schiavone