Skip to content

Commit a12eb3e

Browse files
committed
Version Bump
1 parent 0bda4ca commit a12eb3e

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

README.md

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

9696
python3 -m build
9797

98-
python3 -m pip install dist/forbidden-13.1-py3-none-any.whl
98+
python3 -m pip install dist/forbidden-13.2-py3-none-any.whl
9999
```
100100

101101
## How to Use
@@ -353,8 +353,8 @@ X-Wap-Profile
353353
],
354354
"cookies":[],
355355
"body":"",
356-
"user_agent":"Forbidden/13.1",
357-
"command":"curl --path-as-is -iskL -A 'Forbidden/13.1' -H 'Host: 127.0.0.1' -X 'GET' 'https://example.com:443/admin'",
356+
"user_agent":"Forbidden/13.2",
357+
"command":"curl --path-as-is -iskL -A 'Forbidden/13.2' -H 'Host: 127.0.0.1' -X 'GET' 'https://example.com:443/admin'",
358358
"status":200,
359359
"length":14301
360360
},
@@ -367,8 +367,8 @@ X-Wap-Profile
367367
],
368368
"cookies":[],
369369
"body":"",
370-
"user_agent":"Forbidden/13.1",
371-
"command":"curl --path-as-is -iskL -A 'Forbidden/13.1' -H 'Host: 127.0.0.1:443' -X 'GET' 'https://example.com:443/admin'",
370+
"user_agent":"Forbidden/13.2",
371+
"command":"curl --path-as-is -iskL -A 'Forbidden/13.2' -H 'Host: 127.0.0.1:443' -X 'GET' 'https://example.com:443/admin'",
372372
"status":200,
373373
"length":14301
374374
}
@@ -378,7 +378,7 @@ X-Wap-Profile
378378
## Usage
379379

380380
```fundamental
381-
Forbidden v13.1 ( github.com/ivan-sincek/forbidden )
381+
Forbidden v13.2 ( github.com/ivan-sincek/forbidden )
382382
383383
Usage: forbidden -u url -t tests [-f force] [-o out ]
384384
Example: forbidden -u https://example.com/admin -t all [-f GET ] [-o results.json]
@@ -449,7 +449,7 @@ SLEEP
449449
-s, --sleep = 500 | etc.
450450
USER AGENT
451451
User agent to use
452-
Default: Forbidden/13.1
452+
Default: Forbidden/13.2
453453
-a, --user-agent = random[-all] | curl/3.30.1 | etc.
454454
PROXY
455455
Web proxy to use
@@ -475,7 +475,7 @@ DEBUG
475475
```
476476

477477
```fundamental
478-
Stresser v13.1 ( github.com/ivan-sincek/forbidden )
478+
Stresser v13.2 ( github.com/ivan-sincek/forbidden )
479479
480480
Usage: stresser -u url -r repeat -th threads -dir directory [-f force] [-o out ]
481481
Example: stresser -u https://example.com/admin -r 1000 -th 200 -dir results [-f GET ] [-o results.json]
@@ -523,7 +523,7 @@ THREADS
523523
-th, --threads = 20 | etc.
524524
USER AGENT
525525
User agent to use
526-
Default: Stresser/13.1
526+
Default: Stresser/13.2
527527
-a, --user-agent = random[-all] | curl/3.30.1 | etc.
528528
PROXY
529529
Web proxy to use

pyproject.toml

Lines changed: 1 addition & 1 deletion
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 = "13.1"
7+
version = "13.2"
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"

src/forbidden/utils/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#!/usr/bin/env python3
22

3-
APP_VERSION = "v13.1"
3+
APP_VERSION = "v13.2"
44

5-
USER_AGENT = "Forbidden/13.1"
5+
USER_AGENT = "Forbidden/13.2"
66

77
def banner():
88
"""
99
Display the banner.
1010
"""
1111
print("#########################################################################")
1212
print("# #")
13-
print("# Forbidden v13.1 #")
13+
print("# Forbidden v13.2 #")
1414
print("# by Ivan Sincek #")
1515
print("# #")
1616
print("# Bypass 4xx HTTP response status codes and more. #")

src/stresser/utils/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#!/usr/bin/env python3
22

3-
APP_VERSION = "v13.1"
3+
APP_VERSION = "v13.2"
44

5-
USER_AGENT = "Stresser/13.1"
5+
USER_AGENT = "Stresser/13.2"
66

77
def banner():
88
"""
99
Display the banner.
1010
"""
1111
print("########################################################################")
1212
print("# #")
13-
print("# Stresser v13.1 #")
13+
print("# Stresser v13.2 #")
1414
print("# by Ivan Sincek #")
1515
print("# #")
1616
print("# Bypass 4xx HTTP response status codes with stress testing. #")

0 commit comments

Comments
 (0)