Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sudohikumar/redirect-finder
This is a small tool that can find the redirected URL for any website.
https://github.com/sudohikumar/redirect-finder
go golang
Last synced: 1 day ago
JSON representation
This is a small tool that can find the redirected URL for any website.
- Host: GitHub
- URL: https://github.com/sudohikumar/redirect-finder
- Owner: sudohikumar
- Created: 2021-06-12T08:27:06.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-12T08:32:30.000Z (over 3 years ago)
- Last Synced: 2024-06-21T19:09:14.265Z (5 months ago)
- Topics: go, golang
- Language: Go
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### ABOUT
This is a small tool which tries to find the redirect URLs of any URLs.
To run, user can run```
$ go run main.go
```For example,
```
$ go run main.go "https://bit.ly/3iBDOMM" "https://bit.ly/3wdOmWa" "https://bit.ly/3iBDOMM" "https://bit.ly/3wdOmWa"
```This will give output as follows.
```
URL: https://bit.ly/3iBDOMM - Redirected URL: www.google.com
URL: https://bit.ly/3iBDOMM - Redirected URL: www.google.com
URL: https://bit.ly/3wdOmWa - Redirected URL: www.microsoft.com
URL: https://bit.ly/3wdOmWa - Redirected URL: www.microsoft.com
```