documentation files

This commit is contained in:
Piotr 2013-08-07 09:35:48 +02:00
parent 6a93941c1c
commit 0d22a15a27
2 changed files with 34 additions and 2 deletions

32
DOCS Normal file

@ -0,0 +1,32 @@
Portspoof Linux install notes
1. Compile the software:
./configure
make
sudo make install
OR
g++ -lpthread -Wall -g Configuration.cpp connection.cpp Portspoof.cpp revregex.cpp Utils.cpp Fuzzer.cpp Server.cpp -o portspoof
2. Configure your firewall rules:
Linux :
# iptables -A PREROUTING -i eth0 -p tcp -m tcp --dport 8080:10000 -j REDIRECT --to-ports 4444
Portspoof by default will listen on port ALL_INTERFACES:4444
This FW rules will result in service obfuscation for port range from 8080 to 10000
$ /usr/sbin/portspoof -c /etc/portsoof/portspoof.conf -s /etc/portsoof/portspoof_signatures
OR
Use example iptables-config file from the system_files directory.
3. Add portspoof invocation to your system's startup scripts.
Modify or use the default init.d script from the system_files directory

4
README

@ -34,13 +34,13 @@ License
Compile instructions
Consult the INSTALL file.
Consult the DOCS file.
Other important files
AUTHORS File with Author contact info
Changelog What I have implemented
FAQ Bug reporting and frequently asked questions
DOCS Documentation file