blechschmidt / massdns

A high-performance DNS stub resolver for bulk lookups and reconnaissance (subdomain enumeration)
GNU General Public License v3.0
3.08k stars 460 forks source link

MassDNS on ARM device (Raspberry pi 3) #79

Closed spazbg closed 3 years ago

spazbg commented 3 years ago

I am trying to run the OneForAll tool by shmilylty on my RPi3 (ARM architecture) witch use MassDNS but I am getting this errors

https://i.imgur.com/rK0ksLj.png

FileNotFoundError: [Errno 2] No such file or directory: '/home/pi/Downloads/tools/OneForAll/thirdparty/massdns/massdns_linux_armv7l'

Do you know if MassDNS can run on ARM devices, and if yes where I can find this massdns_linux_armv7l file?

blechschmidt commented 3 years ago

Massdns works with ARMv6 (v6l), I assume it also runs on v7l.

You can obtain the massdns_linux_armv7l file by compiling massdns yourself on the Raspberry (after installing git and build-essential):

git clone https://github.com/blechschmidt/massdns
cd massdns
make

The massdns_linux_armv7l will be the massdns binary in the bin folder.

spazbg commented 3 years ago

You are awesome!!! Finally, it's working! Thank you, dude!