Projects STRLCPY metabigor Commits d1a74854
🤬
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 1 lines
    2 2   <img alt="Metabigor" src="https://image.flaticon.com/icons/svg/2303/2303030.svg" height="140" />
    3 3   <p align="center">Intelligence Tool but without API key</p>
    4 4   <p align="center">
    5  - <a href="https://github.com/j3ssie/metabigor"><img alt="Release" src="https://img.shields.io/badge/version-1.5-red.svg"></a>
     5 + <a href="https://github.com/j3ssie/metabigor"><img alt="Release" src="https://img.shields.io/github/v/release/j3ssie/metabigor.svg"></a>
    6 6   <a href=""><img alt="Software License" src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square"></a>
    7 7   </p>
    8 8  </p>
    skipped 43 lines
    52 52   
    53 53  ## Credits
    54 54   
    55  -Logo from [flaticon](https://www.flaticon.com/free-icon/metabolism_1774457) by [freepik
     55 +Logo from [flaticon](https://www.flaticon.com/free-icon/wifi_2303030) by [freepik
    56 56  ](https://www.flaticon.com/authors/freepik)
    57 57   
    58 58  ## Disclaimer
    skipped 7 lines
  • ■ ■ ■ ■
    cmd/root.go
    skipped 35 lines
    36 36   RootCmd.PersistentFlags().StringVar(&options.Scan.TmpOutput, "tmp", "", "Temp Output folder")
    37 37   RootCmd.PersistentFlags().StringVar(&options.Proxy, "proxy", "", "Proxy for doing request")
    38 38   RootCmd.PersistentFlags().IntVarP(&options.Concurrency, "concurrency", "c", 5, "concurrency")
    39  - RootCmd.PersistentFlags().IntVar(&options.Timeout, "timeout", 20, "timeout")
     39 + RootCmd.PersistentFlags().IntVar(&options.Timeout, "timeout", 30, "timeout")
    40 40   RootCmd.PersistentFlags().StringVarP(&options.Input, "input", "i", "-", "input as a string, file or from stdin")
    41 41   RootCmd.PersistentFlags().StringVarP(&options.Output, "output", "o", "out.txt", "output name")
    42 42   RootCmd.PersistentFlags().BoolVar(&options.Debug, "debug", false, "Debug")
    skipped 40 lines
  • ■ ■ ■ ■ ■
    core/request.go
    skipped 2 lines
    3 3  import (
    4 4   "crypto/tls"
    5 5   "fmt"
    6  - "github.com/go-resty/resty"
    7  - "github.com/sirupsen/logrus"
    8 6   "io/ioutil"
    9 7   "net/http"
    10 8   "strconv"
    11 9   "strings"
    12 10   "time"
     11 + 
     12 + "github.com/go-resty/resty"
     13 + "github.com/sirupsen/logrus"
    13 14  )
    14 15   
    15 16  var headers map[string]string
    skipped 137 lines
Please wait...
Page is in error, reload to recover