make

So i had the 32bit binary version of NFSShell but i needed the 64bit version.

Compiling this was simple once I had the required dependencies.

12345root@kali:~/Downloads/nfsshell-master# apt-get install libreadline-dev libncurses5-dev root@kali:~/Downloads/nfsshell-master# make gcc -g -o nfsshell mount_clnt.o mount_xdr.o nfs_prot_clnt.o nfs_prot_xdr.o nfsshell.o -L/usr/local/lib -lreadline -lhistory -lncurses root@kali:~/Downloads/nfsshell-master# ./nfsshell nfs> quit

And for those that just want the binaries you can download them from here: nfsshell 32 bit nfsshell 64 bit

So on 21st May 2012 version 6 of nmap was released. Only issue is that they dont seem to release a deb package for it.

No big deal we’ll just have to build our own (tested on BT5r2 32+64bit)…

1234567891011echo "deb http://security.ubuntu.com/ubuntu lucid-security main" >> /etc/apt/sources.list apt-get update apt-get upgrade apt-get install libssl-dev checkinstall wget http://nmap.org/dist/nmap-6.00.tar.bz2 bzip2 -cd nmap-6.00.tar.bz2 | tar xvf - cd nmap-6.00 ./configure make checkinstall --install=no… Continue reading