Skip to content

Commit

Permalink
Feature | 更新部分功能,详情见CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
panyi committed Mar 15, 2023
1 parent 09d5ec7 commit a05ffb6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 25 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/reademe-contributors.yml

This file was deleted.

12 changes: 5 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ optional arguments:
--level LEVEL, -l LEVEL
爬取等级: 1-3 ,数字越大内容越详细,默认为 1
--output OUTPUT, -o OUTPUT
输出格式:txt、json、csv,默认为txt
输出格式:txt、json,默认为txt
```

爬取的结果会存储到`md5(搜索关键字)_运行时间戳.txt`文件中
Expand Down Expand Up @@ -97,10 +97,6 @@ optional arguments:
<td>支持代理池</td>
<td>使用代理池的方式防止FOFA断开连接</td>
</tr>
<tr>
<td>支持多种导出格式</td>
<td>支持json、txt、excel等方式导出结果</td>
</tr>
<tr>
<td>编写图形化界面</td>
<td>生成可执行文件运行</td>
Expand All @@ -113,12 +109,15 @@ optional arguments:
<td>持续突破</td>
<td>使用高级语法提高搜索准确率</td>
</tr>
<tr>
<td>同步key</td>
<td>导出key跟FOFA同步</td>
</tr>
</table>
</details>

### 贡献者

<!-- readme: collaborators,contributors -start -->
<table>
<tr>
<td align="center">
Expand All @@ -136,7 +135,6 @@ optional arguments:
</a>
</td></tr>
</table>
<!-- readme: collaborators,contributors -end -->

### END

Expand Down
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# @Github: https://github.com/Cl0udG0d

# Fofa-hack 版本号
VERSION_NUM="2.0.3"
VERSION_NUM="2.0.4"
# 登录最大重试次数
MAX_LOGIN_RETRY_NUM=3
# 页面URL获取最大重试次数
Expand Down
5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG 代码变更记录

### 2.0.4
+ 删除.github文件夹
+ 新增TODO List
+ 删除csv导出

### 2.0.3
+ 修复fofa单关键字下第二页错误情况

Expand Down
2 changes: 1 addition & 1 deletion fofa.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def init(self):
parser.add_argument('--keyword', '-k', help='fofa搜索关键字,默认为test', required=True)
parser.add_argument('--endcount', '-e', help='爬取结束数量')
parser.add_argument('--level', '-l', help='爬取等级: 1-3 ,数字越大内容越详细,默认为 1')
parser.add_argument('--output', '-o', help='输出格式:txt、json、csv,默认为txt')
parser.add_argument('--output', '-o', help='输出格式:txt、json,默认为txt')
parser.add_argument('--fuzz', '-f', help='关键字fuzz参数,增加内容获取粒度',action='store_true')
args = parser.parse_args()
self.timeSleep= int(args.timesleep)
Expand Down

0 comments on commit a05ffb6

Please sign in to comment.