Hi
How can I Compile windows netcat source code(netcat.c)under linux machine.
You can use MinGW compiler and Wine.
I would like to get nc.exe after I finished compilation.
http://joncraton.org/files/nc111nt.zip
Is it somthing like this?
root@kali:~/Desktop/nc# wine gcc -o nc1.exe netcat.c
As we know its easy to compile nc under linux
root@kali:~# wget http://sourceforge.net/projects/netcat/files/netcat/0.7.1/netcat-
0.7.1.tar.gz
root@kali:~# tar -xzvf netcat-0.7.1.tar.gz
root@kali:~/netcat-0.7.1# ./configure
root@kali:~/netcat-0.7.1# make
root@kali:~/netcat-0.7.1#make install