Skip to content

Commit 1dcb430

Browse files
committed
Fixed security issue (2)
1 parent 9cf66a2 commit 1dcb430

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ubuntu-latest]
22-
python-version: ["3.8", "3.9", "3.10", "3.11"]
22+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2323
steps:
2424
- uses: actions/checkout@v3
2525
- name: Set up Python ${{ matrix.python-version }}

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,9 @@ PostBin | Web bot that can perform Bin operations
8787

8888
### CTF
8989

90-
* [Hacky Easter 2017 (22 & 24)](doc/examples/hacky-easter-2017.md)
91-
* [Hackvent 2017 (Day 06 & 10)](doc/examples/hackvent-2017.md)
92-
* [RingZer0 / Coding (13 & 17)](doc/examples/ringzer0.md)
93-
* [Root-Me / Programming](doc/examples/rootme.md)
90+
* [Hackvent 2017 (Day 06 & 10)](https://github.com/dhondta/python-pybots/blob/main/docs/pages/examples/hackvent-2017.md)
91+
* [RingZer0 / Coding (13 & 17)](https://github.com/dhondta/python-pybots/blob/main/docs/pages/examples/ringzer0.md)
92+
* [Root-Me / Programming](https://github.com/dhondta/python-pybots/blob/main/docs/pages/examples/rootme.md)
9493

9594

9695
## :clap: Supporters

pyproject.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=66.0", "setuptools-scm"]
2+
requires = ["setuptools>=70.0", "setuptools-scm"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.pytest.ini_options]
@@ -29,20 +29,21 @@ classifiers = [
2929
"Intended Audience :: Developers",
3030
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
3131
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.7",
3332
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
3635
"Programming Language :: Python :: 3.11",
36+
"Programming Language :: Python :: 3.12",
3737
"Topic :: Software Development :: Libraries :: Python Modules",
3838
]
3939
dependencies = [
40-
"bs4",
41-
"pycountry",
42-
"requests",
43-
"simplejson",
44-
"tinyscript>=1.28.6",
45-
"user_agent",
40+
"beautifulsoup4>=4.12.3",
41+
"pycountry>=24.6.1",
42+
"requests>=2.32.2", # SNYK-PYTHON-REQUESTS-6928867
43+
"simplejson>=3.19.3",
44+
"tinyscript>=1.30.16",
45+
"urllib3>=1.26.19", # SNYK-PYTHON-URLLIB3-7267250
46+
"user_agent>=0.1.10",
4647
]
4748
dynamic = ["version"]
4849

requirements.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
bs4
2-
pycountry
3-
requests
4-
simplejson
5-
tinyscript>=1.28.6
6-
user_agent
1+
beautifulsoup4>=4.12.3
2+
pycountry>=24.6.1
3+
requests>=2.32.2 # SNYK-PYTHON-REQUESTS-6928867
4+
simplejson>=3.19.3
5+
tinyscript>=1.30.16
6+
urllib3>=1.26.19 # SNYK-PYTHON-URLLIB3-7267250
7+
user_agent>=0.1.10

src/pybots/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.3
1+
2.1.5

0 commit comments

Comments
 (0)