mirror of
https://github.com/edoardottt/cariddi.git
synced 2026-08-17 21:25:48 +02:00
Add more default ignored extensions while scanning
This commit is contained in:
@@ -139,7 +139,7 @@ For Windows:
|
|||||||
- `cat urls.txt | cariddi -s -sf secrets_file` (Hunt for custom secrets)
|
- `cat urls.txt | cariddi -s -sf secrets_file` (Hunt for custom secrets)
|
||||||
- `cat urls.txt | cariddi -ie pdf,png,jpg` (Ignore these extensions while scanning)
|
- `cat urls.txt | cariddi -ie pdf,png,jpg` (Ignore these extensions while scanning)
|
||||||
|
|
||||||
Default: png, svg, jpg, jpeg, bmp, jfif, gif, webp, woff, woff2, ttf, tiff, tif are ignored while scanning for secrets, info and errors.
|
Default: png, svg, jpg, jpeg, bmp, jfif, gif, webp, woff, woff2, ttf, tiff, tif, mp4, webm, mkv, avi, mov, flv, wmv, mp3, wav, flac, ogg, m4a, aac, ico, cur, eot, otf are ignored while scanning for secrets, info and errors.
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
|
|
||||||
|
|||||||
+5
-2
@@ -32,8 +32,11 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
DefaultConcurrency = 20
|
DefaultConcurrency = 20
|
||||||
DefaultIgnoreExtensions = "png,svg,jpg,jpeg,bmp,jfif,gif,webp,woff,woff2,ttf,tiff,tif"
|
DefaultIgnoreExtensions = "png,svg,jpg,jpeg,bmp,jfif,gif,webp,woff,woff2,ttf,tiff,tif," +
|
||||||
TimeoutRequest = 10
|
"mp4,webm,mkv,avi,mov,flv,wmv," + // Video
|
||||||
|
"mp3,wav,flac,ogg,m4a,aac," + // Audio
|
||||||
|
"ico,cur,eot,otf" // More icons/fonts
|
||||||
|
TimeoutRequest = 10
|
||||||
)
|
)
|
||||||
|
|
||||||
// Input struct.
|
// Input struct.
|
||||||
|
|||||||
Reference in New Issue
Block a user