Skip to content

Commit

Permalink
add -sr option
Browse files Browse the repository at this point in the history
  • Loading branch information
edoardottt committed Jun 6, 2023
1 parent 85dae44 commit 457df74
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
16 changes: 8 additions & 8 deletions pkg/output/examples.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,19 @@ func PrintExamples() {
cat urls | cariddi -proxy http://127.0.0.1:8080 (Set a Proxy to be used (http and socks5 supported))
cat urls | cariddi -headers "Cookie: auth=admin;type=2;; X-Custom: customHeader"
cat urls | cariddi -headers "Cookie: auth=admin;type=2;; X-Custom: customHeader (Use custom headers)"
cat urls | cariddi -headersfile headers.txt
cat urls | cariddi -headersfile headers.txt (Read from an external file custom headers)
cat urls | cariddi -err
cat urls | cariddi -err (Hunt for errors)
cat urls | cariddi -info
cat urls | cariddi -info (Hunt for useful information)
cat urls | cariddi -debug
cat urls | cariddi -debug (Print debug information)
cat urls | cariddi -ua "Custom User Agent"
cat urls | cariddi -ua "Custom User Agent" (Use a custom User Agent)
cat urls | cariddi -json
cat urls | cariddi -json (Print the output as JSON)
cat urls | cariddi -json | jq .`)
cat urls | cariddi -sr (Store HTTP responses)`)
}
4 changes: 3 additions & 1 deletion pkg/output/help.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func PrintHelp() {
-i string
Ignore the URL containing at least one of the elements of this array.
-info
Hunt for useful informations in websites.
Hunt for useful information in websites.
-intensive
Crawl searching for resources matching 2nd level domain.
-it string
Expand All @@ -77,6 +77,8 @@ func PrintHelp() {
-s Hunt for secrets.
-sf string
Use an external file (txt, one per line) to use custom regexes for secrets hunting.
-sr
Store HTTP responses.
-t int
Set timeout for the requests. (default 10)
-ua
Expand Down

0 comments on commit 457df74

Please sign in to comment.