Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
twitter-intelligence — Twitter Intelligence OSINT 프로젝트는 Twitter의 추적 및 분석을 수행합니다 | Kitploit
도구/GitHubGitHub/batuhaniskr/twitter-intelligence
OSINT (Open Source Intelligence)Data ExfiltrationInformation GatheringSocial EngineeringCrawler
GitHubbatuhaniskr/twitter-intelligence

twitter-intelligence

Twitter Intelligence OSINT 프로젝트는 Twitter의 추적 및 분석을 수행합니다

저장소 보기
240655년 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Twitter Intelligence

Twitter API를 사용하지 않고 트위터 추적 및 분석을 위한 Python으로 작성된 프로젝트입니다.

사전 요구 사항

  • 이 프로젝트는 Python 3.x 애플리케이션입니다.
  • 패키지 의존성은 requirements.txt 파일에 있습니다. 다음 명령을 실행하여 의존성을 설치하세요.

  • root@kitploit:~
    pip3 install -r requirements.txt

데이터베이스

  • SQLite가 데이터베이스로 사용됩니다.
  • 트윗 데이터는 Tweet, User, Location, Hashtag, HashtagTweet 테이블에 저장됩니다.
  • 데이터베이스는 자동으로 생성됩니다.

사용 예제

애플리케이션 작업 화면:

screen shot 2018-07-06 at 12 18 51

  • 도움말 보기
  • root@kitploit:~
     python3 tracking.py -h 
  • 사용자 이름으로 트윗 가져오기

  • root@kitploit:~
     python3 tracking.py --username "HaberSau" 
  • 쿼리로 트윗 가져오기

  • root@kitploit:~
     python3 tracking.py --query "sakarya" 
  • 특정 날짜 범위의 트윗 가져오기

  • root@kitploit:~
     python3 tracking.py --username "HaberSau" --since 2015-09-10 --until 2015-09-12 --maxtweets 10 
  • 트윗의 위치를 가져오려면 --location "True" 매개변수를 추가하세요. (단, 응답 시간이 길어져 애플리케이션이 느려질 수 있습니다.)

    root@kitploit:~
     python3 tracking.py --query "sakarya" --location "True"
  • 원한다면 Docker에서 애플리케이션을 실행할 수 있습니다.

  • root@kitploit:~
    docker build . -t twitter-intelligence

    root@kitploit:~
    docker run -it -p 5000:5000 --rm -v "images:/usr/src/app/images" twitter-intelligence

분석

analysis.py는 분석 처리를 수행합니다. 사용자, 해시태그, 위치 분석이 수행됩니다.

  • 도움말 보기:

  • root@kitploit:~
    python3 analysis.py -h
  • 위치 분석

  • root@kitploit:~
    python3 analysis py --location

    map

    위치 분석은 http://localhost:5000/locations 주소를 통해 실행됩니다.

    Google 지도를 표시하려면 setting.py에 Google Map API Key를 입력해야 합니다.

    root@kitploit:~
    GOOGLE_MAP_API_KEY='YOUR_GOOGLE_MAP_API_KEY'
  • 해시태그 분석 실행.

  • root@kitploit:~
    python3 analysis.py --hashtag

    hashtag

  • 사용자 분석 실행.

  • root@kitploit:~
    python3 analysis.py --user

    그래픽 사용자 인터페이스

    GUI 애플리케이션을 실행하려면 requirements.txt에서 "#PyQt5==5.11.2"를 "PyQt5==5.11.2"로 변경한 후 다음 명령을 실행하세요.

    root@kitploit:~
    pip3 install -r requirements.txt

    socialgui.py는 GUI 애플리케이션에 사용됩니다.

    도구 다운로드