Skip to content

Commit 786be39

Browse files
author
shmilylty
committed
v0.0.7
1 parent c927942 commit 786be39

File tree

6 files changed

+19
-10
lines changed

6 files changed

+19
-10
lines changed

CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ OneForAll的更新日志格式基于[Keep a Changelog](https://keepachangelog.co
66
OneForAll遵守[语义化版本格式](https://semver.org/)
77

88
## Unreleased
9+
## [0.0.7](https://github.com/shmilylty/oneforall/releases/tag/v0.0.7) - 2019-10-18
10+
- 修复一些已知问题
11+
- 添加百度云观测接口
12+
- 添加添加英文Readme文档
13+
- 更新有关文档
14+
- 优化标题获取
15+
- 更新依赖
16+
917
## [0.0.6](https://github.com/shmilylty/oneforall/releases/tag/v0.0.6) - 2019-08-27
1018
- 修复一些已知问题
1119
- 添加PassiveDNS查询和Github子域搜索模块

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[[source]]
22
name = "pypi"
3-
url = "https://mirrors.aliyun.com/pypi/simple/"
3+
url = "https://pypi.python.org/simple/"
44
verify_ssl = true
55

66
[dev-packages]

README.en.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Maintainability](https://api.codeclimate.com/v1/badges/1287668a6b4c72af683e/maintainability)](https://codeclimate.com/github/shmilylty/OneForAll/maintainability)
66
[![License](https://img.shields.io/github/license/shmilylty/OneForAll)](https://github.com/shmilylty/OneForAll/tree/master/LICENSE)
77
[![python](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8-blue)](https://github.com/shmilylty/OneForAll/tree/master/)
8-
[![python](https://img.shields.io/badge/release-v0.0.6-brightgreen)](https://github.com/shmilylty/OneForAll/releases)
8+
[![python](https://img.shields.io/badge/release-v0.0.7-brightgreen)](https://github.com/shmilylty/OneForAll/releases)
99

1010
👊**OneForAll is a powerful subdomain collection tool** 📝[中文文档](https://github.com/shmilylty/OneForAll/tree/master/README.md)
1111

@@ -39,7 +39,7 @@ At present, OneForAll is still under development, there must be a lot of problem
3939

4040
3. Collect subdomains using web crawler files (there are currently two modules: `archirawl`, `commoncrawl`, which is still being debugged and needs to be added and improved).
4141

42-
4. Collect subdomains using DNS datasets (there are currently 18 modules: `binaryedge_api`, `circl_api`, `hackertarget`, `riddler`, `bufferover`, `dnsdb`, `ipv4info`, `robtex`, `chinaz`, `dnsdb_api`, `netcraft`, `securitytrails_api`, `chinaz_api`, `dnsdumpster`, `passivedns_api`, `ptrarchive`, `sitedossier`,`threatcrowd`
42+
4. Collect subdomains using DNS datasets (there are currently 19 modules: `CeBaidu`, `binaryedge_api`, `circl_api`, `hackertarget`, `riddler`, `bufferover`, `dnsdb`, `ipv4info`, `robtex`, `chinaz`, `dnsdb_api`, `netcraft`, `securitytrails_api`, `chinaz_api`, `dnsdumpster`, `passivedns_api`, `ptrarchive`, `sitedossier`,`threatcrowd`
4343

4444
5. Collect subdomains using DNS queries (there is currently a module to collect subdomains `srv` by enumerating common SRV records and making queries, which needs to be added and improved).
4545

@@ -89,8 +89,8 @@ pip 19.2.2 from C:\Users\shmilylty\AppData\Roaming\Python\Python37\site-packages
8989
You can install OneForAll dependencies via pip3 (if you are familiar with [pipenv](https://docs.pipenv.org/en/latest/), then it is recommended that you use [pipenv install dependencies](https://github.com/shmilylty/OneForAll/tree/master/docs/Installation_dependency.md), the following is an example of using **pip3** to install dependencies under **Windows system**: (Note: If your Python3 is installed in the system Program Files In the directory, such as: `C:\Program Files\Python37`, then run the command prompt cmd as an administrator to execute the following command!)
9090
```bash
9191
cd OneForAll/
92-
python -m pip install --user -U pip setuptools wheel -i https://mirrors.aliyun.com/pypi/simple/
93-
pip3 install --user -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
92+
python -m pip install --user -U pip setuptools wheel
93+
pip3 install --user -r requirements.txt
9494
cd oneforall/
9595
python oneforall.py --help
9696
```

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Maintainability](https://api.codeclimate.com/v1/badges/1287668a6b4c72af683e/maintainability)](https://codeclimate.com/github/shmilylty/OneForAll/maintainability)
66
[![License](https://img.shields.io/github/license/shmilylty/OneForAll)](https://github.com/shmilylty/OneForAll/tree/master/LICENSE)
77
[![python](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8-blue)](https://github.com/shmilylty/OneForAll/tree/master/)
8-
[![python](https://img.shields.io/badge/release-v0.0.6-brightgreen)](https://github.com/shmilylty/OneForAll/releases)
8+
[![python](https://img.shields.io/badge/release-v0.0.7-brightgreen)](https://github.com/shmilylty/OneForAll/releases)
99

1010
👊**OneForAll是一款功能强大的子域收集工具** 📝[English Document](https://github.com/shmilylty/OneForAll/tree/master/README.en.md)
1111

@@ -39,7 +39,7 @@
3939

4040
3. 利用网上爬虫档案收集子域(目前有2个模块:`archivecrawl``commoncrawl`,此模块还在调试,该模块还有待添加和完善)
4141

42-
4. 利用DNS数据集收集子域(目前有18个模块:`binaryedge_api`, `circl_api`, `hackertarget`, `riddler`, `bufferover`, `dnsdb`, `ipv4info`, `robtex`, `chinaz`, `dnsdb_api`, `netcraft`, `securitytrails_api`, `chinaz_api`, `dnsdumpster`, `passivedns_api`, `ptrarchive`, `sitedossier`,`threatcrowd`
42+
4. 利用DNS数据集收集子域(目前有19个模块:`CeBaidu`, `binaryedge_api`, `circl_api`, `hackertarget`, `riddler`, `bufferover`, `dnsdb`, `ipv4info`, `robtex`, `chinaz`, `dnsdb_api`, `netcraft`, `securitytrails_api`, `chinaz_api`, `dnsdumpster`, `passivedns_api`, `ptrarchive`, `sitedossier`,`threatcrowd`
4343

4444
5. 利用DNS查询收集子域(目前有1个模块:通过枚举常见的SRV记录并做查询来收集子域`srv`,该模块还有待添加和完善)
4545

docs/collection_modules.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,13 @@ proxy_partial_module = ['GoogleQuery', 'AskSearch'] # 只代理GoogleQuery和As
4848
| archivecrawl ||| |
4949
| commoncrawl ||| |
5050

51-
4. 利用DNS数据集收集子域(目前有18个模块:`binaryedge_api`, `circl_api`, `hackertarget`, `riddler`, `bufferover`, `dnsdb`, `ipv4info`, `robtex`, `chinaz`, `dnsdb_api`, `netcraft`, `securitytrails_api`, `chinaz_api`, `dnsdumpster`, `passivedns_api`, `ptrarchive`, `sitedossier`,`threatcrowd`
51+
4. 利用DNS数据集收集子域(目前有19个模块:`cebaidu`, `binaryedge_api`, `circl_api`, `hackertarget`, `riddler`, `bufferover`, `dnsdb`, `ipv4info`, `robtex`, `chinaz`, `dnsdb_api`, `netcraft`, `securitytrails_api`, `chinaz_api`, `dnsdumpster`, `passivedns_api`, `ptrarchive`, `sitedossier`,`threatcrowd`
5252

5353
| 模块名称 | 是否需要代理 | 是否需要API | 其他说明 |
5454
| ------------------ | ------------ | ----------- | -------------------------------------------------- |
5555
| binaryedge_api ||| API使用和申请见[config.py](../oneforall/config.py) |
5656
| bufferover ||| |
57+
| cebaidu ||| |
5758
| chinaz ||| |
5859
| chinaz_api ||| API使用和申请见[config.py](../oneforall/config.py) |
5960
| circl_api ||| API使用和申请见[config.py](../oneforall/config.py) |

oneforall/oneforall.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
red = '\033[1;31m'
2929
end = '\033[0m'
3030

31-
version = white + '{' + red + 'v0.0.6#dev' + white + '}'
31+
version = white + '{' + red + 'v0.0.7#dev' + white + '}'
3232

3333
banner = f"""{yellow}
3434
___ _ _
@@ -42,7 +42,7 @@ class OneForAll(object):
4242
"""
4343
OneForAll是一款功能强大的子域收集工具
4444
45-
Version: 0.0.6
45+
Version: 0.0.7
4646
Project: https://git.io/fjHT1
4747
4848
Example:

0 commit comments

Comments
 (0)