Skip to content

Commit

Permalink
Fix [#ISSUE-44](#44) ignore invalid SSL by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Menshykh committed Jun 24, 2023
1 parent 49d354c commit ff8c911
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changes
=======
v4.0.3 (24.06.2023)
---------------------------
- Fix [#ISSUE-44](https://github.com/stanislav-web/OpenDoor/issues/44) ignore invalid SSL by default

v4.0.2 (23.06.2023)
---------------------------
- Python 3.11 launch fix [#PR-58](https://github.com/stanislav-web/OpenDoor/issues/58) added encoding to setup.py
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ The scanning is performed by the built-in dictionary and external dictionaries a
Software is written for informational purposes and is open source product under the GPL license.

***(Due to the incorrect operation of "SSL" the support for "Python 2.7" is terminated)***
* *Current 4.0.2 (23.06.2023)*
- Directories - 37041
* *Current 4.0.3 (24.06.2023)*
- Directories - 37047
- Subdomains - 181018

***Testing of the software on the live commercial systems and organizations is prohibited!***
Expand Down Expand Up @@ -82,6 +82,10 @@ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

#### [Changelog](CHANGELOG.md) (last changes)

v4.0.3 (24.06.2023)
---------------------------
- Fix [#ISSUE-44](https://github.com/stanislav-web/OpenDoor/issues/44) ignore invalid SSL by defaul

v4.0.2 (23.06.2023)
---------------------------
- Python 3.11 launch fix [#PR-58](https://github.com/stanislav-web/OpenDoor/issues/58) added encoding to setup.py
Expand Down
14 changes: 12 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ of using proxy servers. Software is written for informational purposes
and is open source product under the GPL license.

***(Due to the incorrect operation of "SSL" the support for "Python 2.7"
is terminated)*** \* *Current 4.0.1-beta (23.02.2021)* - Directories
- 37019 - Subdomains - 181018
is terminated)*** \* *Current 4.0.1-beta (23.02.2021)*
- Directories - 37047
- Subdomains - 181018

***Testing of the software on the live commercial systems and
organizations is prohibited!***
Expand Down Expand Up @@ -101,6 +102,15 @@ Updates

`Changelog <CHANGELOG.md>`__ (last changes)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^


v4.0.3 (24.06.2023)
------------------------

::

- Fix [#ISSUE-44](https://github.com/stanislav-web/OpenDoor/issues/44) ignore invalid SSL by default

v4.0.2 (23.06.2023)
------------------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.2
4.0.3
6 changes: 6 additions & 0 deletions data/directories.dat
Original file line number Diff line number Diff line change
Expand Up @@ -952,6 +952,12 @@
2022.tar.gz
2022.tgz
2022.zip
2023/
2023.sql
2023.tar
2023.tar.gz
2023.tgz
2023.zip
203/
204/
205/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"""

from setuptools import setup, find_packages
VERSION = '4.0.2'
VERSION = '4.0.3'
LONG_DESCRIPTION = open('README.rst', 'r+', encoding='utf-8').read()

setup(name='opendoor',
Expand Down
1 change: 1 addition & 0 deletions src/core/http/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def __http_pool(self):
port=self.__cfg.port,
maxsize=self.__cfg.threads,
timeout=Timeout(connect=self.__cfg.timeout, read=self.__cfg.timeout),
cert_reqs='CERT_NONE',
block=True)
if self._HTTP_DBG_LEVEL <= self.__debug.level:
self.__debug.debug_connection_pool('http_pool_start', pool)
Expand Down
1 change: 1 addition & 0 deletions src/core/http/https.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def __https_pool(self):
port=self.__cfg.port,
maxsize=self.__cfg.threads,
timeout=Timeout(connect=self.__cfg.timeout, read=self.__cfg.timeout),
cert_reqs='CERT_NONE',
block=True)
if self._HTTP_DBG_LEVEL <= self.__debug.level:
self.__debug.debug_connection_pool('https_pool_start', pool)
Expand Down

0 comments on commit ff8c911

Please sign in to comment.