Skip to content

Commit 20209aa

Browse files
authored
Update README.md
1 parent 9b519fa commit 20209aa

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

README.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ python IDOR-Forge.py -u "https://example.com/api/resource?id=1" -p -m GET --prox
9898
```
9999
python IDOR-Forge.py -u http://example.com/resource?id=1 -p -m GET --output results.csv --output-format csv --test-values [100,200,300] --sensitive-keywords ["password", "email"]
100100
```
101+
```
102+
python IDOR-Forge.py -u http://example.com/api/user?id=1 --parameters -m GET -d 2 -o results.json --output-format json --headers '{"Authorization": "Bearer token"}' --test-values '[1, 2, 3]' --sensitive-keywords '["password", "email"]' -v -Rv
103+
```
101104
Options
102105
- -u, --url: Target URL to test for IDOR vulnerabilities.
103106

@@ -122,6 +125,8 @@ Options
122125
- --sensitive-keywords: Custom sensitive keywords in JSON format (e.g., '["password", "email"]').
123126

124127
- --interactive: Launch interactive GUI mode.
128+
129+
- -Rv, --report-and-visualize: Enable reporting and visualization
125130

126131
## Interactive GUI Mode
127132
```
@@ -201,13 +206,28 @@ Vulnerable Payloads:
201206
- {'id': 1, 'random_str': 'aBcDeFgHiJ'}
202207
- {'id': 3, 'sql_injection': "' OR '1'='1"}
203208
```
204-
209+
Table:
210+
```
211+
+-------------------+-------------+---------------------------+
212+
| Payload | Status Code | Sensitive Data Detected |
213+
+-------------------+-------------+---------------------------+
214+
| {'id': '1'} | 200 | True |
215+
| {'id': '2'} | 404 | False |
216+
| {'id': '3'} | 200 | False |
217+
+-------------------+-------------+---------------------------+
218+
```
205219
File Output (results.csv):
206220
```
207221
Payload,Status Code,Response Content,Sensitive Data Detected
208222
"{'id': 1}",200,"{"data": "sensitive_data"}",True
209223
"{'id': 2, 'random_str': 'aBcDeFgHiJ'}",403,"{"error": "Forbidden"}",False
210224
```
225+
226+
Pie Chart :
227+
228+
![Screen Shot](./IMG/visualization.png)
229+
230+
211231
## Contributing 🤝
212232

213233
Contributions are welcome! Please follow these steps:

0 commit comments

Comments
 (0)