Skip to main content

How to reverse lookup of an ip

 

I have done this in my ubuntu 22.04 machine. 

First you need to download the tool that is written in golang.

So run the below commands one by one:

apt install golang-go

go install github.com/hakluke/hakrevdns@latest

cd go

cd bin

chmod +x hakrevdns

echo "104.193.143.200" | ./hakrevdns

prips "104.193.143.0/24" | ./hakrevdns


Avi

Comments