关于终端:手机termux跑漏扫工具随时随地做脚本小子

2次阅读

共计 1301 个字符,预计需要花费 4 分钟才能阅读完成。

三个应用简略的扫描工具

  • Kscan 跑指纹 / 爆破
  • afrog 跑 poc
  • fscan 一起跑

  • Kscan 是一款纯 go 开发的全方位扫描器,具备端口扫描、协定检测、指纹识别,暴力破解等性能。反对协定 1200+,协定指纹 10000+,利用指纹 2000+,暴力破解协定 10 余种。

    https://hub.fastgit.xyz/lcvvv…

  • afrog 是一款性能卓越、疾速稳固、PoC 可定制化的破绽扫描工具

    https://hub.fastgit.xyz/zan8i…

  • fscan 是一款内网综合扫描工具,不便一键自动化、全方位漏扫扫描。

    https://hub.fastgit.xyz/shado…

1、termux 装置

【termux 官网】
【ZeroTermux】

  • ZeroTermux 换源(可跳过)
sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/termux-packages-24 stable main@' $PREFIX/etc/apt/sources.list && apt update && apt upgrade

2、termux 装置 Linux 发行版 Alpine

  • 装置

    curl -LO https://raw.githubusercontents.com/Hax4us/TermuxAlpine/master/TermuxAlpine.sh
    bash TermuxAlpine.sh
    
    
  • 启动 alpine

    startalpine
    

3、Alpine 装置漏扫工具

wget https://download.fastgit.org/shadow1ng/fscan/releases/download/1.8.1/fscan_arm64
wget https://download.fastgit.org/zan8in/afrog/releases/download/v1.3.6/afrog_arm.tar.gz
wget https://download.fastgit.org/lcvvvv/kscan/releases/download/v1.76/kscan_linux_arm.zip

unzip kscan_linux_arm.zip
tar -xzf afrog_arm.tar.gz
chmod +x afrog_arm kscan_linux_arm fscan_arm64

工具简略应用命令

  • Kscan

    ./kscan_linux_arm -t 192.168.1.1/24
    ./kscan_linux_arm -t http://127.0.0.1
    ./kscan_linux_arm -t 文件门路 
  • afrog

    ./afrog_arm -t http://127.0.0.1
    ./afrog_arm -T URL 文件门路
    
    ## 更新 poc
    ./afrog_arm --up 
  • fscan

    ./fscan_arm64 -h 192.168.1.1/24
    ./fscan_arm64 -u http://127.0.0.1
    ./fscan_arm64 -hf IP 文件门路
    ./fscan_arm64 -uf URL 文件门路 
正文完
 0