This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
restartcap.sh
executable file
·80 lines (72 loc) · 2.74 KB
/
restartcap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/bin/bash
# BEGIN LICENSE #
#
# CERT Tapioca
#
# Copyright 2018 Carnegie Mellon University. All Rights Reserved.
#
# NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE
# ENGINEERING INSTITUTE MATERIAL IS FURNISHED ON AN "AS-IS" BASIS.
# CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, EITHER
# EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED
# TO, WARRANTY OF FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY,
# OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON
# UNIVERSITY DOES NOT MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO
# FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
#
# Released under a BSD (SEI)-style license, please see license.txt or
# contact [email protected] for full terms.
#
# [DISTRIBUTION STATEMENT A] This material has been approved for
# public release and unlimited distribution. Please see Copyright
# notice for non-US Government use and distribution.
# CERT(R) is registered in the U.S. Patent and Trademark Office by
# Carnegie Mellon University.
#
# DM18-0637
#
# END LICENSE #
source ./tapioca.cfg
echo External network: $external_net
echo Internal network: $internal_net
testmode=$1
outputdir="$2"
rewrite=$3
if [ -z "$outputdir" ]; then
outputdir=.
fi
mkdir -p $outputdir
export LANG=en_US.UTF-8
sudo killall tcpdump
sudo killall mitmproxy
sudo killall mitmweb
killall tail
sudo ifdown $internal_net
sudo ifup $internal_net
if [ "$testmode" == "ssltest" ]; then
# Test for clients not validating ssl certificate trust
rm -f logs/ssltest.log
rm -f logs/flows.log.uris
sleep 0.2
xterm -geometry -100-100 -e "tail -F $outputdir/ssltest.log | strings | grep \"5:https,\"" &
sudo ./iptables_mitmproxy.sh
if [ -z "$rewrite" ]; then
mitmproxy --showhost --anticomp --anticache --ssl-insecure --mode transparent -w $outputdir/ssltest.log
else
mitmproxy --showhost --anticomp --anticache --ssl-insecure --mode transparent -w $outputdir/ssltest.log -s rewrite.py
fi
./uris.py $outputdir/ssltest.log
elif [ "$testmode" == "full" ]; then
# Test full HTTPS inspection (certificate installed)
rm -f logs/flows.log
sudo ./iptables_mitmproxy.sh
if [ -z "$rewrite" ]; then
SSLKEYLOGFILE=$outputdir/sslkey.log mitmproxy --showhost --anticomp --anticache --ssl-insecure --mode transparent -w $outputdir/flows.log
else
SSLKEYLOGFILE=$outputdir/sslkey.log mitmproxy --showhost --anticomp --anticache --ssl-insecure --mode transparent -w $outputdir/flows.log -s rewrite.py
fi
elif [ "$testmode" == "tcpdump" ]; then
# Just capture raw traffic without interfering
rm -f logs/tcpdump.pcap
xfce4-terminal --disable-server -T "tcpdump" -e "sudo tcpdump -U -i $internal_net -w $outputdir/tcpdump.pcap -v"
fi