Projects STRLCPY extractify Commits 04dcaa6f
🤬
  • ■ ■ ■ ■ ■ ■
    README.md
    1 1  # extractify
    2 2  A tool for extract Endpoints, URLs, Parameters and Secrets from contents
    3 3   
     4 +# Installation
     5 +```
     6 +go install github.com/SharokhAtaie/extractify@latest
     7 +```
     8 + 
     9 +# Usage
     10 +```
     11 +extractify -h
     12 +```
     13 + 
     14 +```
     15 +Usage:
     16 + extractify [flags]
     17 + 
     18 +Flags:
     19 +INPUTS:
     20 + -u, -url string URL for scanning
     21 + -l, -list string List of URLs for scanning
     22 + -f, -file string Local file data for scanning
     23 + 
     24 +EXTRACTS:
     25 + -ee, -endpoints Extract endpoints (default)
     26 + -eu, -urls Extract urls
     27 + -ep, -parameters Extract parameters
     28 + -es, -secrets Extract secrets
     29 + -ea, -all Extract all
     30 + 
     31 +OTHERS:
     32 + -H, -header string Set custom header
     33 + -v, -verbose Verbose mode
     34 +```
     35 + 
     36 +You can use this as stdin:
     37 +```bash
     38 +cat urls.txt | extractify -all
     39 +echo "https://google.com/path" | extractify -endpoints
     40 +```
     41 + 
     42 +You can integrate this tool with others, such as subjs (https://github.com/lc/subjs):
     43 +```bash
     44 +echo "https://github.com" | subjs | extractify | tee results
     45 +```
     46 + 
     47 +### Thanks to [@projectdiscovery](https://github.com/projectdiscovery/) and [@edoardottt](https://github.com/edoardottt/) for best tools
     48 + 
Please wait...
Page is in error, reload to recover