Skip to content

Commit

Permalink
fix all broken URLs of git repo (sundowndev#778)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahriarshafin authored Apr 14, 2021
1 parent 7e971ff commit 4330c4f
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ FROM golang:1.16.2-alpine as go_builder
LABEL maintainer="Sundowndev" \
org.label-schema.name="phoneinfoga" \
org.label-schema.description="Advanced information gathering & OSINT tool for phone numbers." \
org.label-schema.url="https://github.com/sundowndev/PhoneInfoga" \
org.label-schema.vcs-url="https://github.com/sundowndev/PhoneInfoga" \
org.label-schema.url="https://github.com/sundowndev/phoneinfoga" \
org.label-schema.vcs-url="https://github.com/sundowndev/phoneinfoga" \
org.label-schema.vendor="Sundowndev" \
org.label-schema.schema-version="1.0"

Expand Down
2 changes: 1 addition & 1 deletion api/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var doc = `{
"contact": {},
"license": {
"name": "GNU General Public License v3.0",
"url": "https://github.com/sundowndev/PhoneInfoga/blob/master/LICENSE"
"url": "https://github.com/sundowndev/phoneinfoga/blob/master/LICENSE"
},
"version": "{{.Version}}"
},
Expand Down
2 changes: 1 addition & 1 deletion api/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"contact": {},
"license": {
"name": "GNU General Public License v3.0",
"url": "https://github.com/sundowndev/PhoneInfoga/blob/master/LICENSE"
"url": "https://github.com/sundowndev/phoneinfoga/blob/master/LICENSE"
},
"version": "v2"
},
Expand Down
2 changes: 1 addition & 1 deletion api/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ info:
description: Advanced information gathering & OSINT framework for phone numbers.
license:
name: GNU General Public License v3.0
url: https://github.com/sundowndev/PhoneInfoga/blob/master/LICENSE
url: https://github.com/sundowndev/phoneinfoga/blob/master/LICENSE
title: PhoneInfoga REST API
version: v2
paths:
Expand Down
2 changes: 1 addition & 1 deletion api/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const (
// @BasePath /api
// @schemes http https
// @license.name GNU General Public License v3.0
// @license.url https://github.com/sundowndev/PhoneInfoga/blob/master/LICENSE
// @license.url https://github.com/sundowndev/phoneinfoga/blob/master/LICENSE

func detectContentType(path string, data []byte) string {
arr := strings.Split(path, ".")
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ var versionCmd = &cobra.Command{
Short: "Print current version of the tool",
Run: func(cmd *cobra.Command, args []string) {
utils.LoggerService.Infoln("PhoneInfoga", config.Version, fmt.Sprintf("(%s)", config.Commit))
utils.LoggerService.Infoln("Maintained by sundowndev https://github.com/sundowndev/PhoneInfoga")
utils.LoggerService.Infoln("Maintained by sundowndev https://github.com/sundowndev/phoneinfoga")
},
}
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ PhoneInfoga is one of the most advanced tools to scan phone numbers using only f
----

!!! bug
Found a bug ? Feel free to [open an issue](https://github.com/sundowndev/PhoneInfoga/issues).
Found a bug ? Feel free to [open an issue](https://github.com/sundowndev/phoneinfoga/issues).

You can also [reach me on Twitter](https://twitter.com/sundowndev) or at raphael(at)crvx.fr.

Expand Down
8 changes: 4 additions & 4 deletions docs/install.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
To install PhoneInfoga, you'll need to download the binary or build the software from its source code.

!!! info
For now, only Linux, MacOS and Windows are supported. If you don't see your OS/arch on the [release page on GitHub](https://github.com/sundowndev/PhoneInfoga/releases), it means it's not explicitly supported. You can build from source by yourself anyway. Want your OS to be supported ? Please [open an issue on GitHub](https://github.com/sundowndev/PhoneInfoga/issues).
For now, only Linux, MacOS and Windows are supported. If you don't see your OS/arch on the [release page on GitHub](https://github.com/sundowndev/phoneinfoga/releases), it means it's not explicitly supported. You can build from source by yourself anyway. Want your OS to be supported ? Please [open an issue on GitHub](https://github.com/sundowndev/phoneinfoga/issues).

## Binary installation (recommanded)

Follow the instructions :

- Go to [release page on GitHub](https://github.com/sundowndev/PhoneInfoga/releases)
- Go to [release page on GitHub](https://github.com/sundowndev/phoneinfoga/releases)
- Choose your OS and architecture
- Download the archive, extract the binary then run it in a terminal

You can also do it from the terminal (UNIX systems only) :

```shell
# Download latest release in the current directory
curl -sSL https://raw.githubusercontent.com/sundowndev/PhoneInfoga/master/support/scripts/install | bash
curl -sSL https://raw.githubusercontent.com/sundowndev/phoneinfoga/master/support/scripts/install | bash

# Check the binary
./phoneinfoga version
Expand All @@ -24,7 +24,7 @@ curl -sSL https://raw.githubusercontent.com/sundowndev/PhoneInfoga/master/suppor
sudo mv ./phoneinfoga /usr/bin/phoneinfoga
```

To ensure your system is supported, please check the output of `echo "$(uname -s)_$(uname -m)"` in your terminal and see if it's available on the [GitHub release page](https://github.com/sundowndev/PhoneInfoga/releases).
To ensure your system is supported, please check the output of `echo "$(uname -s)_$(uname -m)"` in your terminal and see if it's available on the [GitHub release page](https://github.com/sundowndev/phoneinfoga/releases).

## Using Docker

Expand Down
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: PhoneInfoga
repo_name: 'sundowndev/PhoneInfoga'
repo_url: 'https://github.com/sundowndev/PhoneInfoga'
repo_name: 'sundowndev/phoneinfoga'
repo_url: 'https://github.com/sundowndev/phoneinfoga'
site_description: 'Advanced information gathering & OSINT tool for phone numbers.'
site_author: 'Sundowndev'
copyright: 'PhoneInfoga was developed by sundowndev and is licensed under GPL-3.0.'
Expand All @@ -22,7 +22,7 @@ theme:
extra:
social:
- icon: fontawesome/brands/github-alt
link: 'https://github.com/sundowndev/PhoneInfoga'
link: 'https://github.com/sundowndev/phoneinfoga'
- icon: fontawesome/brands/twitter
link: 'https://twitter.com/sundowndev'

Expand Down

0 comments on commit 4330c4f

Please sign in to comment.