Skip to content

Commit

Permalink
Small fix some typo
Browse files Browse the repository at this point in the history
  • Loading branch information
j3ssie committed Jun 15, 2020
1 parent aaee0e3 commit d1a7485
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img alt="Metabigor" src="https://image.flaticon.com/icons/svg/2303/2303030.svg" height="140" />
<p align="center">Intelligence Tool but without API key</p>
<p align="center">
<a href="https://github.com/j3ssie/metabigor"><img alt="Release" src="https://img.shields.io/badge/version-1.5-red.svg"></a>
<a href="https://github.com/j3ssie/metabigor"><img alt="Release" src="https://img.shields.io/github/v/release/j3ssie/metabigor.svg"></a>
<a href=""><img alt="Software License" src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square"></a>
</p>
</p>
Expand Down Expand Up @@ -52,7 +52,7 @@ echo '1.2.3.4' | metabigor ip -s 'shodan' -v

## Credits

Logo from [flaticon](https://www.flaticon.com/free-icon/metabolism_1774457) by [freepik
Logo from [flaticon](https://www.flaticon.com/free-icon/wifi_2303030) by [freepik
](https://www.flaticon.com/authors/freepik)

## Disclaimer
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func init() {
RootCmd.PersistentFlags().StringVar(&options.Scan.TmpOutput, "tmp", "", "Temp Output folder")
RootCmd.PersistentFlags().StringVar(&options.Proxy, "proxy", "", "Proxy for doing request")
RootCmd.PersistentFlags().IntVarP(&options.Concurrency, "concurrency", "c", 5, "concurrency")
RootCmd.PersistentFlags().IntVar(&options.Timeout, "timeout", 20, "timeout")
RootCmd.PersistentFlags().IntVar(&options.Timeout, "timeout", 30, "timeout")
RootCmd.PersistentFlags().StringVarP(&options.Input, "input", "i", "-", "input as a string, file or from stdin")
RootCmd.PersistentFlags().StringVarP(&options.Output, "output", "o", "out.txt", "output name")
RootCmd.PersistentFlags().BoolVar(&options.Debug, "debug", false, "Debug")
Expand Down
5 changes: 3 additions & 2 deletions core/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ package core
import (
"crypto/tls"
"fmt"
"github.com/go-resty/resty"
"github.com/sirupsen/logrus"
"io/ioutil"
"net/http"
"strconv"
"strings"
"time"

"github.com/go-resty/resty"
"github.com/sirupsen/logrus"
)

var headers map[string]string
Expand Down

0 comments on commit d1a7485

Please sign in to comment.