Skip to content

Commit

Permalink
chore: update version to 1.8.9 (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
13ph03nix authored Dec 17, 2021
1 parent 79f6e5f commit 311e08c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
test:
strategy:
matrix:
python-version: [3.6, '3.10']
python-version: [3.7, '3.10']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,3 +284,7 @@ Cross-platform shell code generation
* rewrite multi module
* integrate with interactsh
* support filter poc by keyword

# version 1.8.9
-----------------
* fix user-agent bug #252
2 changes: 1 addition & 1 deletion manpages/poc-console.1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ is maintained at:
.I https://github.com/knownsec/pocsuite3/blob/master/docs/USAGE.md
.PP
.SH VERSION
This manual page documents pocsuite3 version 1.8.8
This manual page documents pocsuite3 version 1.8.9
.SH AUTHOR
.br
(c) 2014-2021 by Knownsec 404 Team
Expand Down
2 changes: 1 addition & 1 deletion manpages/pocsuite.1
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ is maintained at:
.I https://github.com/knownsec/pocsuite3/blob/master/docs/USAGE.md
.PP
.SH VERSION
This manual page documents pocsuite3 version 1.8.8
This manual page documents pocsuite3 version 1.8.9
.SH AUTHOR
.br
(c) 2014-2021 by Knownsec 404 Team
Expand Down
2 changes: 1 addition & 1 deletion pocsuite3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = 'pocsuite3'
__version__ = '1.8.8'
__version__ = '1.8.9'
__author__ = 'Knownsec 404 Team'
__author_email__ = '[email protected]'
__license__ = 'GPLv2'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def find_packages(where='.'):

setup(
name='pocsuite3',
version='1.8.8',
version='1.8.9',
url='https://pocsuite.org',
description='Open-sourced remote vulnerability testing framework.',
long_description=long_description,
Expand Down
1 change: 1 addition & 0 deletions tests/test_interactsh_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ def setUp(self):
def tearDown(self):
pass

@unittest.skip(reason='interactsh service is unstable')
def test_interactsh(self):
ISH = Interactsh(token="", server="")
url, flag = ISH.build_request(method='https')
Expand Down

0 comments on commit 311e08c

Please sign in to comment.