Just discovered this tool: http://urlxray.com/
Cool if you don't want to click!
Cool if you don't want to click!
$> curl -sLI https://bit.ly/123 | grep -i Location
location: http://wyc5600.go.51.net/
Thanks th3tr0ll, but the idea is also not to give your identity to the bit.ly server (like an osint musthave). But, right, you leave it to the tool itself. But only one trace at the end.Hello, just to let you guys know the same can be achieved without using those external services.
You just need to use `curl` from any terminal.
$> curl -sLI https://bit.ly/123 | grep -i Location location: http://wyc5600.go.51.net/
Thanks th3tr0ll, but the idea is also not to give your identity to the bit.ly server (like an osint musthave). But, right, you leave it to the tool itself. But only one trace at the end.Hello, just to let you guys know the same can be achieved without using those external services.
You just need to use `curl` from any terminal.
$> curl -sLI https://bit.ly/123 | grep -i Location location: http://wyc5600.go.51.net/
Well, just saying but you can always proxy the `curl' command ...Thanks th3tr0ll, but the idea is also not to give your identity to the bit.ly server (like an osint musthave). But, right, you leave it to the tool itself. But only one trace at the end.
$> curl -sLI https://bit.ly/123 --socks5 135.125.***.**:98** -U c8a00*******:c8a00******* | grep -i LocationYou're right. Useful also if you don't have any proxy IP available.Well, just saying but you can always proxy the `curl' command ...
$> curl -sLI https://bit.ly/123 --socks5 135.125.***.**:98** -U c8a00*******:c8a00******* | grep -i Location
However, these website might be useful to someone non-practical of linux.
torify curl -sLI https://bit.ly/123 | grep -i Locationcurl -sLI https://bit.ly/123 --socks5 localhost:9050 | grep -i Location