honeypot beta setup
Jason Lam's setup instructions:
- You will need a running Apache server. Use your existing test server or play with one of the bootable Linux CD.
- Extract honeypot.tgz to the directory the honeypot will run from (in this example, /var/www/honeypot)
- Config Apache for virtual host, here is my own virtual host config (adjust accordingly),
<VirtualHost *>
ServerAdmin jason@networksec.org
ServerName www.hackreverse.com
DocumentRoot /var/www/honeypot/html
HostnameLookups Off
UseCanonicalName Off
ServerSignature Off
<Directory "/var/www/honeypot/html">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
AliasMatch ^/(.*) /var/www/honeypot/html/index.php
</VirtualHost>
- Change the config.local under template to reflect the path and also username and password (dshield account).
- Change permission so apache user can write to the honeypot.log under log directory. It should then work!!!