Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
twitter-intelligence — Twitter Intelligence OSINT 项目执行对 Twitter 的跟踪和分析 | Kitploit
工具/GitHubGitHub/batuhaniskr/twitter-intelligence
OSINT (开源情报)数据泄露信息收集社会工程学网络爬虫
GitHubbatuhaniskr/twitter-intelligence

twitter-intelligence

Twitter Intelligence OSINT 项目执行对 Twitter 的跟踪和分析

查看仓库
2406535年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

Twitter 情报

一个用 Python 编写的项目,用于在不使用 Twitter API 的情况下进行 Twitter 追踪与分析。

前提条件

  • 本项目是一个 Python 3.x 应用程序。
  • 包依赖项位于 requirements.txt 文件中。运行以下命令以安装依赖项。

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

数据库

  • 使用 SQLite 作为数据库。
  • 推文数据存储在 Tweet、User、Location、Hashtag、HashtagTweet 表中。
  • 数据库会自动创建。

使用示例

应用工作视图:

2018年7月6日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

    地图

    位置分析通过地址 http://localhost:5000/locations 运行

    你必须在 setting.py 中写入 Google 地图 API 密钥才能显示谷歌地图。

    root@kitploit:~
    GOOGLE_MAP_API_KEY='YOUR_GOOGLE_MAP_API_KEY'
  • 运行标签分析。

  • root@kitploit:~
    python3 analysis.py --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 应用程序

    下载工具