mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 00:09:29 +02:00
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
name: "arp-scan"
|
||
command: "arp-scan"
|
||
enabled: true
|
||
short_description: "ARP网络发现工具"
|
||
description: |
|
||
Arp-scan是一个ARP网络发现工具,用于发现本地网络中的活动主机。
|
||
|
||
**主要功能:**
|
||
- ARP扫描
|
||
- 本地网络发现
|
||
- MAC地址识别
|
||
- 快速扫描
|
||
|
||
**使用场景:**
|
||
- 本地网络发现
|
||
- 主机发现
|
||
- 网络映射
|
||
- 渗透测试
|
||
parameters:
|
||
- name: "target"
|
||
type: "string"
|
||
description: "目标IP范围(如果不使用local_network)"
|
||
required: false
|
||
position: 0
|
||
format: "positional"
|
||
- name: "interface"
|
||
type: "string"
|
||
description: "网络接口"
|
||
required: false
|
||
flag: "-I"
|
||
format: "flag"
|
||
- name: "local_network"
|
||
type: "bool"
|
||
description: "扫描本地网络"
|
||
required: false
|
||
flag: "-l"
|
||
format: "flag"
|
||
default: false
|
||
- name: "additional_args"
|
||
type: "string"
|
||
description: |
|
||
额外的arp-scan参数。用于传递未在参数列表中定义的arp-scan选项。
|
||
|
||
**示例值:**
|
||
- 根据工具特性添加常用参数示例
|
||
|
||
**注意事项:**
|
||
- 多个参数用空格分隔
|
||
- 确保参数格式正确,避免命令注入
|
||
- 此参数会直接追加到命令末尾
|
||
required: false
|
||
format: "positional"
|