@@ -115,25 +115,23 @@ guide:
115
115
116
116
Basic usage - scan a single target:
117
117
118
- $ vimana run -m framewalk http://example.com
118
+ $ vimana run framewalk --target-url http://example.com
119
119
120
120
ø----------------------------------------------------------------------ø
121
121
122
122
Scan a target with verbose output and save results:
123
123
124
- $ vimana run \
125
- --module framewalk \
126
- --url http://example.com \
124
+ $ vimana run framewalk \
125
+ --target-url http://example.com \
127
126
--verbose \
128
127
--output results.json
129
128
130
129
ø----------------------------------------------------------------------ø
131
130
132
131
Scan multiple targets with stealth mode and a specific timeout:
133
132
134
- $ vimana run \
135
- --module framewalk \
136
- --url "http://app1.example.com,http://app2.example.com" \
133
+ $ vimana run framewalk \
134
+ --target-url "http://app1.example.com \
137
135
--stealth \
138
136
--timeout 15 \
139
137
--summary-only
@@ -142,8 +140,7 @@ guide:
142
140
143
141
Scan targets from a file with specific framework detection:
144
142
145
- $ vimana run \
146
- --module framewalk \
143
+ $ vimana run framewalk \
147
144
--file targets.txt \
148
145
--frameworks "django,flask,fastapi" \
149
146
--verbose
@@ -152,9 +149,8 @@ guide:
152
149
153
150
Advanced scan with stealth customization and retry settings:
154
151
155
- $ vimana run \
156
- --module framewalk \
157
- --url http://example.com \
152
+ $ vimana run framewalk \
153
+ --target-url http://example.com \
158
154
--stealth \
159
155
--min-delay 1.0 \
160
156
--max-delay 3.0 \
@@ -166,21 +162,20 @@ guide:
166
162
167
163
Quick passive scan (non-intrusive):
168
164
169
- $ vimana run \
170
- --module framewalk \
171
- --url http://example.com \
165
+ $ vimana run framewalk \
166
+ --target-url http://example.com \
172
167
--passive-only \
173
168
--no-evidence
174
169
175
170
ø----------------------------------------------------------------------ø
176
171
177
172
Scan multiple targets and generate a summary report:
178
173
179
- $ vimana run \
180
- --module framewalk \
174
+ $ vimana run framewalk \
181
175
--file large-target-list.txt \
182
176
--summary-only \
183
177
--output summary-report.json
178
+
184
179
lab_setup : |
185
180
+------------+-------------------------------------------------------------------+
186
181
│└┘⠞⠓┌┐│└⠞⠓└┘┌⠞⠓┐┌┘.┌⠞⠓┬┐.└┐┘│ LAB SETUP ┘└┐│.└┘.┌┐│⠞⠓│┬.│⠞└┘┌└┐│.└┘.┬┐└┐┌.│. │
@@ -234,11 +229,10 @@ guide:
234
229
$ docker run -d -p 5000:5000 --name flask-app tiangolo/flask
235
230
$ docker run -d -p 8080:80 --name fastapi-app tiangolo/uvicorn-gunicorn-fastapi
236
231
237
- After setting up these applications, you can test Framewalk against all of them :
232
+ After setting up these applications, you can test Framewalk against it :
238
233
239
- $ vimana run \
240
- --module framewalk \
241
- --url "http://localhost:8000,http://localhost:5000,http://localhost:8080" \
234
+ $ vimana run framewalk \
235
+ --target-url "http://localhost:8000 \
242
236
--verbose \
243
237
--output framework-detection.json
244
238
0 commit comments