Darkly
Introduction to cybersecurity
Resources
- OWASP provides cybersecurity resources for free
- OWASP top 10 most critical web security risks
- WSTG Web Security Testing Guide
How-to
-
Start the VM
bash qemu-system-x86_64 \ -enable-kvm \ -m 2048 \ -smp 2 \ -cdrom Darkly_i386.iso \ -boot order=d \ -nic user,hostfwd=tcp:127.0.0.1:8080-:80 -
Make the host answer on the same address as the VM
bash sudo ip address add 10.0.2.15/32 dev lo -
Forward traffic to the VM
bash sudo socat TCP-LISTEN:80,bind=10.0.2.15,reuseaddr,fork TCP:127.0.0.1:8080 -
Delete the address when done
bash sudo ip address delete 10.0.2.15/32 dev lo
