描述
sandmap
是一款支持使用庞大的Nmap 引擎进行网络和系统侦察的工具。它提供了用户友好的界面,可自动执行和加快扫描速度,并允许您轻松使用许多高级扫描技术。
主要特点
- 简单的CLI,能够运行纯Nmap 引擎
- 模块中包含预定义扫描
- 支持Nmap 脚本引擎(NSE) 和脚本参数
- TOR支持(带有代理链)
- 一次扫描多个
- 此时:31 个模块,459 个扫描配置文件
如何使用
很简单:
# Clone this repository git clone --recursive https://github.com/trimstray/sandmap # Go into the repository cd sandmap # Install ./setup.sh install # Run the app sandmap
- 符号链接
bin/sandmap
位于/usr/local/bin
- 手册页位于
/usr/local/man/man8
命令行
使用之前请先sandmap
阅读命令行介绍。
配置
配置文件etc/main.cfg
的结构如下:
# shellcheck shell=bash # Specifies the default destination. # Examples: # - dest="127.0.0.1,8.8.8.8" dest="127.0.0.1" # Specifies the extended Nmap parameters. # Examples: # - params="--script ssl-ccs-injection -p 443" params="" # Specifies the default output type and path. # Examples: # - report="xml" report="" # Specifies the TOR connection. # Examples: # - tor="true" tor="" # Specifies the terminal type. # Examples: # - terminal="internal" terminal="internal"
要求
sandmap
使用运行前安装的外部实用程序:
此工具适用于:
- GNU/Linux(在 Debian 和 CentOS 上测试)
- Bash(在 4.4.19 上测试)
- Nmap(在 7.70 上测试)
您还需要root 访问权限。
其他
模块
可用模块:31 可用扫描配置文件:459
如果您想创建自己的模块,请查看这个。
国内下载链接
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END