Skip to content

Commit 2f46eb0

Browse files
authored
Merge pull request #7 from Edu4rdSHL/patch-1
Fix some example errors.
2 parents b0260a4 + d84b16e commit 2f46eb0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎_posts/2020-08-29-everything-you-need-to-know-about-ffuf.markdown

+5-5
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ ffuf -u https://codingo.io/W1 -w ./wordlist.txt:W1
255255
This runs the same scan as our previous example, except `W1` is now our insert instead of `FUZZ`. Now, let's assume that instead of `codingo.io` we had identified multiple websites we wanted to check over at the same time. For that, we could create a wordlist of all of the domains we wanted to test, and use the following:
256256

257257
```
258-
ffuf -u https://W2.io/W1 -w ./wordlist.txt:W1, ./domains.txt:W2
258+
ffuf -u https://W2/W1 -w ./wordlist.txt:W1,./domains.txt:W2
259259
```
260260

261261
This would scan each of the domains in our `domains.txt` files using the wordlist from `wordlist.txt`, allowing us to run at scale without needing the use of outside scripting or applications.
@@ -268,7 +268,7 @@ Lets say we have a wordlist with 1000 domains `domains.txt` and a wordlist with
268268

269269
If we run:
270270
```
271-
ffuf -u https://FUZZDOMAIN/FUZZDIR -w ./wordlist.txt:FUZZDIR, ./domains.txt:FUZZDOMAIN
271+
ffuf -u https://FUZZDOMAIN/FUZZDIR -w ./wordlist.txt:FUZZDIR,./domains.txt:FUZZDOMAIN
272272
```
273273

274274
ffuf will try every directory for the first domain, then every directory on the second domain.
@@ -277,7 +277,7 @@ This often leads to getting rate-limited or banned.
277277

278278
If we on the other hand swap the order of the wordlists and run:
279279
```
280-
ffuf -u https://FUZZDOMAIN/FUZZDIR -w ./domains.txt:FUZZDOMAIN, ./wordlist.txt:FUZZDIR
280+
ffuf -u https://FUZZDOMAIN/FUZZDIR -w ./domains.txt:FUZZDOMAIN,./wordlist.txt:FUZZDIR
281281
```
282282

283283
ffuf will try the first directory on all domains, before moving on to the next directory and trying that on all domains.
@@ -293,10 +293,10 @@ Encountered error(s): 1 errors occurred.
293293
* Keyword W1, defined, but not found in headers, method, URL or POST data.
294294
```
295295

296-
Then you should instead either upgrade FFUF to the latest version, or use the `w` flag muiltiple times, like so:
296+
Then you should instead either upgrade FFUF to the latest version, or use the `w` flag multiple times, like so:
297297

298298
```
299-
ffuf -u https://W2.io/W1 -w ./wordlist.txt:W1 -w ./domains.txt:W2
299+
ffuf -u https://W2/W1 -w ./wordlist.txt:W1 -w ./domains.txt:W2
300300
```
301301

302302
More information can be found here: https://github.com/ffuf/ffuf/issues/290

0 commit comments

Comments
 (0)