What's new
Runion

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Find out where shortened URLs lead to without clicking

th3tr0ll сказал(а):
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.
 
th3tr0ll сказал(а):
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.
 
tuyvor сказал(а):
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.

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.
 
th3tr0ll сказал(а):
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.

You're right. Useful also if you don't have any proxy IP available.
 
well, for IP anonymity you can always leverage Tor, "torifying" the command:

torify curl -sLI https://bit.ly/123 | grep -i Location

or if you have Tor service running on localhost (i assume this is listening on standard port 9050, otherwise replace the port number)

curl -sLI https://bit.ly/123 --socks5 localhost:9050 | grep -i Location
 
Top