Skip to content

Releases: hktalent/bug-bounty

自用工具,陆续发布

06 Jan 02:23
Compare
Choose a tag to compare

ip 工具

为什么有他、他的价值是什么?

  • 1 干活前,在当前窗口确认自己的ip是什么,不要以为有了vpn、代理就一定改变了你的ip,有的代理、vpn是智能的,不是访问每个国家的目标都走代理
    用法、无任何参数:
ip 
  • 2、查看指定ip的归宿
    用法:
    ip 167.71.217.61 113.215.189.63 219.82.2.110 117.184.26.242 167.94.146.51 183.136.225.31 180.149.125.163
    查看若干ip的归宿

nmap2json 工具

将nmap 的xml 结果文件解析为json输出,方便进行下轮的迭代
用法:

nmap2json NmapOut.xml true
nmap2json NmapOut.xml
nmap2json listPhpIp.xml true|jq '.ip+":"+(.ports[0].port|tostring)'|tr -d '"' |sort -u|ipgs
nmap2json a9f7713f6771cc016d664fc6c2d403beba66edfc.xml true|grep -Ev ":(80|443),"|grep -v "secure-mqtt"|grep 'http-proxy'|sort -u|jq '.ip'|xargs -I % echo "%:8080"|ckProxy

ms2json 工具

将 masscan 的xml 结果文件解析为json输出,方便进行下轮的迭代
特点,xml 大于1G、10G 都能处理,而且内存开销小,这才是重点
用法:

ms2json MasscanOut.xml
ms2json MasscanOut.xml
ms2json yd_80_443.xml|grep ":443"|jq '.ip'|tr -d '"'|ipgs
ms2json yd_80_443.xml|jq '.ip'|tr -d '"'|~/go/bin/httpx -j -o yd_all.json -title -websocket -method -server -location -ip  -pipeline -csp-probe -http2 -nc -silent  -cname -p 80,443  -t 64