Files
CyberStrikeAI/tools/netexec.yaml
2025-11-21 23:20:41 +08:00

62 lines
1.4 KiB
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
name: "netexec"
command: "netexec"
enabled: true
short_description: "网络枚举和利用框架原CrackMapExec"
description: |
NetExec原CrackMapExec是一个网络枚举和利用框架支持多种协议。
**主要功能:**
- 多协议支持SMB, SSH, WinRM等
- 凭证验证
- 横向移动
- 模块化架构
**使用场景:**
- 网络渗透测试
- 域环境测试
- 横向移动测试
- 凭证验证
parameters:
- name: "protocol"
type: "string"
description: "协议类型smb, ssh, winrm等"
required: false
default: "smb"
position: 0
format: "positional"
- name: "target"
type: "string"
description: "目标IP或网络"
required: true
position: 1
format: "positional"
- name: "username"
type: "string"
description: "用户名"
required: false
flag: "-u"
format: "flag"
- name: "password"
type: "string"
description: "密码"
required: false
flag: "-p"
format: "flag"
- name: "hash_value"
type: "string"
description: "NTLM哈希用于Pass-the-Hash"
required: false
flag: "-H"
format: "flag"
- name: "module"
type: "string"
description: "要执行的模块"
required: false
flag: "-M"
format: "flag"
- name: "additional_args"
type: "string"
description: "额外的NetExec参数"
required: false
format: "positional"