Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 738 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 738 Bytes

heartbleed

Execute the heartbleed exploit

python heartbleed.py 127.0.0.1 -p 8443

Setup and run server

  • Install docker and run the daemon
  • Install the docker container with docker pull hmlio/vaas-cve-2014-0160
  • Run the container with a port mapping docker run -d -p 8443:443 hmlio/vaas-cve-2014-0160
  • Open your browser and visit https://localhost:8443/

Spoof data

cd data_spoof
npm install
node send_data.js

Edit frontend

One file

  • docker cp container_name:/var/www/index.html .
  • Edit the file locally
  • docker cp index.html container_name:/var/www/index.html

Entire directory

  • docker cp container_name:/var/www .
  • Edit the file locally
  • docker cp www container_name:/var/