Skip to content

Commit 150e407

Browse files
committed
PyPi Image Fix & Version Bump
1 parent 6999247 commit 150e407

File tree

4 files changed

+19
-21
lines changed

4 files changed

+19
-21
lines changed

README.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Bypass 4xx HTTP response status codes and more.
44

55
The tool is based on `Python Requests`, `PycURL`, and `HTTP Client`.
66

7-
The stress testing tool was inspired by this infosec [write-up](https://amineaboud.medium.com/story-of-a-weird-vulnerability-i-found-on-facebook-fc0875eb5125).
8-
97
Tested on Kali Linux v2024.2 (64-bit).
108

119
Made for educational purposes. I hope it will help!
@@ -95,7 +93,7 @@ python3 -m pip install --upgrade build
9593

9694
python3 -m build
9795

98-
python3 -m pip install dist/forbidden-13.2-py3-none-any.whl
96+
python3 -m pip install dist/forbidden-13.4-py3-none-any.whl
9997
```
10098

10199
## How to Use
@@ -353,8 +351,8 @@ X-Wap-Profile
353351
],
354352
"cookies":[],
355353
"body":"",
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'",
354+
"user_agent":"Forbidden/13.4",
355+
"command":"curl --path-as-is -iskL -A 'Forbidden/13.4' -H 'Host: 127.0.0.1' -X 'GET' 'https://example.com:443/admin'",
358356
"status":200,
359357
"length":14301
360358
},
@@ -367,8 +365,8 @@ X-Wap-Profile
367365
],
368366
"cookies":[],
369367
"body":"",
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'",
368+
"user_agent":"Forbidden/13.4",
369+
"command":"curl --path-as-is -iskL -A 'Forbidden/13.4' -H 'Host: 127.0.0.1:443' -X 'GET' 'https://example.com:443/admin'",
372370
"status":200,
373371
"length":14301
374372
}
@@ -378,7 +376,7 @@ X-Wap-Profile
378376
## Usage
379377

380378
```fundamental
381-
Forbidden v13.2 ( github.com/ivan-sincek/forbidden )
379+
Forbidden v13.4 ( github.com/ivan-sincek/forbidden )
382380
383381
Usage: forbidden -u url -t tests [-f force] [-o out ]
384382
Example: forbidden -u https://example.com/admin -t all [-f GET ] [-o results.json]
@@ -449,7 +447,7 @@ SLEEP
449447
-s, --sleep = 500 | etc.
450448
USER AGENT
451449
User agent to use
452-
Default: Forbidden/13.2
450+
Default: Forbidden/13.4
453451
-a, --user-agent = random[-all] | curl/3.30.1 | etc.
454452
PROXY
455453
Web proxy to use
@@ -475,7 +473,7 @@ DEBUG
475473
```
476474

477475
```fundamental
478-
Stresser v13.2 ( github.com/ivan-sincek/forbidden )
476+
Stresser v13.4 ( github.com/ivan-sincek/forbidden )
479477
480478
Usage: stresser -u url -r repeat -th threads -dir directory [-f force] [-o out ]
481479
Example: stresser -u https://example.com/admin -r 1000 -th 200 -dir results [-f GET ] [-o results.json]
@@ -523,7 +521,7 @@ THREADS
523521
-th, --threads = 20 | etc.
524522
USER AGENT
525523
User agent to use
526-
Default: Stresser/13.2
524+
Default: Stresser/13.4
527525
-a, --user-agent = random[-all] | curl/3.30.1 | etc.
528526
PROXY
529527
Web proxy to use
@@ -554,14 +552,14 @@ DEBUG
554552

555553
## Images
556554

557-
<p align="center"><img src="https://github.com/ivan-sincek/forbidden/blob/main/img/real_example.png" alt="Real Example"></p>
555+
<p align="center"><img src="https://raw.githubusercontent.com/ivan-sincek/forbidden/refs/heads/main/img/real_example.png" alt="Real Example"></p>
558556

559557
<p align="center">Figure 1 - Real Example</p>
560558

561-
<p align="center"><img src="https://github.com/ivan-sincek/forbidden/blob/main/img/simple_example.png" alt="Simple Example"></p>
559+
<p align="center"><img src="https://raw.githubusercontent.com/ivan-sincek/forbidden/refs/heads/main/img/simple_example.png" alt="Simple Example"></p>
562560

563561
<p align="center">Figure 2 - Simple Example</p>
564562

565-
<p align="center"><img src="https://github.com/ivan-sincek/forbidden/blob/main/img/simple_example_table_output.png" alt="Simple Example (Table Output)"></p>
563+
<p align="center"><img src="https://raw.githubusercontent.com/ivan-sincek/forbidden/refs/heads/main/img/simple_example_table_output.png" alt="Simple Example (Table Output)"></p>
566564

567565
<p align="center">Figure 3 - Simple Example (Table Output)</p>

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.2"
7+
version = "13.4"
88
authors = [{ name = "Ivan Sincek" }]
99
description = "Bypass 4xx HTTP response status codes and more."
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.2"
3+
APP_VERSION = "v13.4"
44

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

77
def banner():
88
"""
99
Display the banner.
1010
"""
1111
print("#########################################################################")
1212
print("# #")
13-
print("# Forbidden v13.2 #")
13+
print("# Forbidden v13.4 #")
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.2"
3+
APP_VERSION = "v13.4"
44

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

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

0 commit comments

Comments
 (0)