Skip to content

Commit 448594e

Browse files
committed
Removed Redundant Dependency
1 parent 41e38fc commit 448594e

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ python3 -m pip install --upgrade build
143143

144144
python3 -m build
145145

146-
python3 -m pip install dist/forbidden-12.5-py3-none-any.whl
146+
python3 -m pip install dist/forbidden-12.6-py3-none-any.whl
147147
```
148148

149149
## Single URL
@@ -427,8 +427,8 @@ Inject at the end of the URL path only if it does not end with forward slash.
427427
],
428428
"cookies": [],
429429
"body": null,
430-
"user_agent": "Forbidden/12.5",
431-
"command": "curl --connect-timeout 60 -m 60 -iskL --max-redirs 10 --path-as-is -A 'Forbidden/12.5' -H 'Host: 127.0.0.1' -X 'GET' 'https://example.com:443/admin'",
430+
"user_agent": "Forbidden/12.6",
431+
"command": "curl --connect-timeout 60 -m 60 -iskL --max-redirs 10 --path-as-is -A 'Forbidden/12.6' -H 'Host: 127.0.0.1' -X 'GET' 'https://example.com:443/admin'",
432432
"code": 200,
433433
"length": 255408
434434
},
@@ -441,8 +441,8 @@ Inject at the end of the URL path only if it does not end with forward slash.
441441
],
442442
"cookies": [],
443443
"body": null,
444-
"user_agent": "Forbidden/12.5",
445-
"command": "curl --connect-timeout 60 -m 60 -iskL --max-redirs 10 --path-as-is -A 'Forbidden/12.5' -H 'Host: 127.0.0.1:443' -X 'GET' 'https://example.com:443/admin'",
444+
"user_agent": "Forbidden/12.6",
445+
"command": "curl --connect-timeout 60 -m 60 -iskL --max-redirs 10 --path-as-is -A 'Forbidden/12.6' -H 'Host: 127.0.0.1:443' -X 'GET' 'https://example.com:443/admin'",
446446
"code": 200,
447447
"length": 255408
448448
}
@@ -452,7 +452,7 @@ Inject at the end of the URL path only if it does not end with forward slash.
452452
## Usage
453453

454454
```fundamental
455-
Forbidden v12.5 ( github.com/ivan-sincek/forbidden )
455+
Forbidden v12.6 ( github.com/ivan-sincek/forbidden )
456456
457457
Usage: forbidden -u url -t tests [-f force] [-v values ] [-p path ] [-o out ]
458458
Example: forbidden -u https://example.com/admin -t all [-f POST ] [-v values.txt] [-p /home] [-o results.json]
@@ -527,7 +527,7 @@ SLEEP
527527
-s, --sleep = 500 | etc.
528528
USER AGENT
529529
User agent to use
530-
Default: Forbidden/12.5
530+
Default: Forbidden/12.6
531531
-a, --user-agent = curl/3.30.1 | random[-all] | etc.
532532
PROXY
533533
Web proxy to use
@@ -553,7 +553,7 @@ DEBUG
553553
```
554554

555555
```fundamental
556-
Stresser v12.5 ( github.com/ivan-sincek/forbidden )
556+
Stresser v12.6 ( github.com/ivan-sincek/forbidden )
557557
558558
Usage: stresser -u url -dir directory -r repeat -th threads [-f force] [-o out ]
559559
Example: stresser -u https://example.com/secret -dir results -r 1000 -th 200 [-f GET ] [-o results.json]
@@ -603,7 +603,7 @@ THREADS
603603
-th, --threads = 20 | etc.
604604
USER AGENT
605605
User agent to use
606-
Default: Stresser/12.5
606+
Default: Stresser/12.6
607607
-a, --user-agent = curl/3.30.1 | random[-all] | etc.
608608
PROXY
609609
Web proxy to use

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "forbidden"
7-
version = "12.5"
7+
version = "12.6"
88
authors = [{ name = "Ivan Sincek" }]
99
description = "Bypass 4xx HTTP response status codes and more. Based on PycURL and Python Requests."
1010
readme = "README.md"
@@ -14,7 +14,7 @@ classifiers = [
1414
"License :: OSI Approved :: MIT License",
1515
"Operating System :: OS Independent"
1616
]
17-
dependencies = ["alive-progress>=3.1.5", "colorama>=0.4.6", "datetime>=5.2", "pycurl>=7.45.2", "pyjwt>=2.7.0", "regex>=2023.8.8", "requests>=2.31.0", "tabulate>=0.9.0", "termcolor>=2.4.0"]
17+
dependencies = ["alive-progress>=3.1.5", "colorama>=0.4.6", "pycurl>=7.45.2", "pyjwt>=2.7.0", "regex>=2023.8.8", "requests>=2.31.0", "tabulate>=0.9.0", "termcolor>=2.4.0"]
1818

1919
[project.urls]
2020
"Homepage" = "https://github.com/ivan-sincek/forbidden"

src/forbidden/forbidden.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def write_file(data, out):
334334

335335
# ----------------------------------------
336336

337-
default_user_agent = "Forbidden/12.5"
337+
default_user_agent = "Forbidden/12.6"
338338

339339
def get_all_user_agents():
340340
tmp = []
@@ -1695,7 +1695,7 @@ def show_results(self):
16951695
class MyArgParser(argparse.ArgumentParser):
16961696

16971697
def print_help(self):
1698-
print("Forbidden v12.5 ( github.com/ivan-sincek/forbidden )")
1698+
print("Forbidden v12.6 ( github.com/ivan-sincek/forbidden )")
16991699
print("")
17001700
print("Usage: forbidden -u url -t tests [-f force] [-v values ] [-p path ] [-o out ]")
17011701
print("Example: forbidden -u https://example.com/admin -t all [-f POST ] [-v values.txt] [-p /home] [-o results.json]")
@@ -2043,7 +2043,7 @@ def main():
20432043
if validate.run():
20442044
print("###########################################################################")
20452045
print("# #")
2046-
print("# Forbidden v12.5 #")
2046+
print("# Forbidden v12.6 #")
20472047
print("# by Ivan Sincek #")
20482048
print("# #")
20492049
print("# Bypass 4xx HTTP response status codes and more. #")

src/stresser/stresser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def write_file(data, out):
201201

202202
# ----------------------------------------
203203

204-
default_user_agent = "Stresser/12.5"
204+
default_user_agent = "Stresser/12.6"
205205

206206
def get_all_user_agents():
207207
tmp = []
@@ -909,7 +909,7 @@ def show_results(self):
909909
class MyArgParser(argparse.ArgumentParser):
910910

911911
def print_help(self):
912-
print("Stresser v12.5 ( github.com/ivan-sincek/forbidden )")
912+
print("Stresser v12.6 ( github.com/ivan-sincek/forbidden )")
913913
print("")
914914
print("Usage: stresser -u url -dir directory -r repeat -th threads [-f force] [-o out ]")
915915
print("Example: stresser -u https://example.com/secret -dir results -r 1000 -th 200 [-f GET ] [-o results.json]")
@@ -1192,7 +1192,7 @@ def main():
11921192
if validate.run():
11931193
print("##########################################################################")
11941194
print("# #")
1195-
print("# Stresser v12.5 #")
1195+
print("# Stresser v12.6 #")
11961196
print("# by Ivan Sincek #")
11971197
print("# #")
11981198
print("# Bypass 4xx HTTP response status codes with stress testing. #")

0 commit comments

Comments
 (0)