一款自动IP查询与反向探测工具,用于被动侦察
████████╗██╗██╗ ████████╗
╚══██╔══╝██║██║ ╚══██╔══╝
██║ ██║██║ ██║
██║ ██║██║ ██║
██║ ██║███████╗██║
╚═╝ ╚═╝╚══════╝╚═╝
Tilt: 终端IP查询工具,是一款易于使用的开源工具,采用 Python 实现,用于 IP/主机被动侦察。它非常适合初次侦察以及主机数据获取。
您可以通过克隆 Tilt 的 Git 仓库来获取最新版本:
git clone https://github.com/AeonDave/tilt.git
当然需要 Python 2.7.3
在 0.6 版本中,我决定引入一个用于解析 HTML 的库……所以您需要安装 BeautifulSoup 库(http://www.crummy.com/software/BeautifulSoup/)。不过别担心!这很简单!
pip install beautifulsoup4
或
easy_install BeautifulSoup4
或者您也可以直接下载该库,然后执行
cd BeautifulSoup
python setup.py install
python tilt.py [目标] [选项] [输出]
目标:
-t, --target target 目标 URL(例如 "www.site.com")
选项:
-h, --help 显示基本帮助信息
-v, --version 显示程序版本号
-e, --extensive 执行深度IP查询
-r, --reverse 执行反向IP查询
-g, --google 在 Google 上搜索
-u, --update 从仓库更新程序
输出:
-o, --output file 将日志输出到文件
示例:
python tilt.py -t google.com -r
python tilt.py -t 8.8.8.8
python tilt.py -t google.com -e -r -o file.log
python tilt.py -u

欢迎为此项目贡献代码,fork、提交并讨论!