File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed
Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change 5757 - ` --ps ` :指定密码字典
5858
5959
60+ 3 . 爆破结果存储
61+
62+ 爆破结果存储有两种格式:
63+
64+ - ` --to ` :--text-ouput 的缩写,以文本格式输出到指定的文件中
65+ - ` --jo ` :--json-output 的缩写,以 JSON 结构化数据存储到指定 JSON 文件中
66+
67+ ``` bash
68+ Boom --ts targets.txt --us users.txt --ps passwords.txt --to ./res.txt
69+ ```
70+
71+ > ` --jo ` 和 ` --to ` 是文件 publisher 的快捷方式而已,通过配置文件配置 File Publisher 也是可以的
72+
73+
6074
6175## 📒 配置文件介绍
6276
6377``` yaml
64- # Version: 0.2
78+ # Version: 0.3
6579
6680max_boom_concurrent : 2 # 最大同时爆破的目标个数
6781boom_target_path : " " # 爆破目标字典路径
@@ -90,11 +104,16 @@ logger_config: # 日志配置
90104 logger_prefix : " " # 日志前缀
91105global_boom_config : # 全局爆破配置
92106 boomConCurrent : 2 # 单个爆破目标的爆破并发数
93- ClientMaxTimeout : 5 # 客户端最大超时时间
107+ clientMaxTimeout : 5 # 客户端最大超时时间
94108 boomModel : 2 # 爆破模式:1.用户名优先--用户名跑字典,密码固定;2.密码优先--密码跑字典,用户名固定
95109 boomTarget : " " # 爆破的目标
96110 userNamePath : " " # 用户名字典路径
97111 passwordPath : " " # 密码字典路径
112+ publish_config : # publisher_config/webhook config
113+ file : # 文件 publisher
114+ enable : true # 是否开启文件存储
115+ format : text # 结果存储格式:text/json
116+ filePath : ./res.txt # 存储文件路径:.txt/.json
98117` ` `
99118
100119## 🏩 学习交流
You can’t perform that action at this time.
0 commit comments