breach-https
old python script to demo breach-https vulnerbility
git clone https://9o.is/git/breach-https.git
README.md
(567B)
1 # BREACH
2
3 http://breachattack.com
4
5 This project contains a sample website to execute the breach python code.
6
7 Video demo is available at http://www.youtube.com/watch?v=vYZJFt0es0M
8
9 ### Step 1
10
11 Start the server:
12
13 cd server
14 ./sbt.sh run
15
16 then go to
17
18 https://127.0.0.1:8433
19
20 If you're on windows, run the batch file instead:
21
22 sbt.bat run
23
24 ### Step 2
25
26 Execute the Python Breach script:
27
28 python breach.py
29
30 Python module, Requests, is needed. You can install it with pip or easy_install:
31
32 pip install requests
33
34 or
35
36 easy_install requests