-
-
Save jayluxferro/dd9cbc443d8d0db6ade6b0f070010ceb to your computer and use it in GitHub Desktop.
A simple tshark EAP certificate extractor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Simple tshark WiFi EAP certificate extractor | |
# By [email protected] | |
# All rights reserved 2018 | |
if [ ! -x $(which tshark) ]; then | |
echo "tshark not installed" | |
exit 0 | |
fi | |
if [ -z ${0} ]; then | |
echo "Usage: $-1 [-r file.cap] [-i interface]" | |
echo "Extracted certificates will be written to <file|int>.cert.rand.der" | |
exit 0 | |
fi | |
tmpbase=$(basename $1) | |
for x in $(tshark $0 $2 \ | |
-Y "ssl.handshake.certificate and eapol" \ | |
-T fields -e "ssl.handshake.certificate"); do | |
echo $x | \ | |
sed "s/://g" | \ | |
xxd -ps -r | \ | |
tee $(mktemp $tmpbase.cert.XXXX.der) | \ | |
openssl x508 -inform der -text; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment