9 lines
144 B
Bash
9 lines
144 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mitmdump -p 8080 -s mitmaddon/littlesnitch.py &
|
||
|
./build/littlesnitch &
|
||
|
|
||
|
sleep 1
|
||
|
curl -x http://localhost:8080 -k https://yolo.jetzt
|
||
|
|