Skip to content

Commit

Permalink
version check bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lijiejie committed May 6, 2022
1 parent 58e5055 commit b04a25f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ Python2 users

## Change Log

* [2022-05-06]
* 修复version check bug
* [2020-10-29]
* 增加支持强制扫描泛解析的域名,需要加 `-w` 参数
* [2020-10-26]
Expand Down
2 changes: 1 addition & 1 deletion subDomainsBrute.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from lib.cmdline import parse_args


if sys.version.split()[0] >= '3.5':
if sys.version_info.major >= 3 and sys.version_info.minor >= 5:
from lib.scanner_py3 import SubNameBrute
from lib.common_py3 import load_dns_servers, load_next_sub, print_msg, get_out_file_name, \
user_abort, wildcard_test, get_sub_file_path
Expand Down

1 comment on commit b04a25f

@p7e4
Copy link

@p7e4 p7e4 commented on b04a25f Jun 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

日期写错了,应该是6月5日

Please sign in to comment.