File tree 3 files changed +16
-7
lines changed
3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 2
2
# Author: Gilles Biagomba
3
3
# Program: Birthday_test.sh
4
4
# Description: This script was design check for CVE-2016-2183, CVE-2016-6329.\n
5
- # Or aka Sweet32: Birthday attacks on 64-bit block ciphers in TLS and OpenVPN.\n
5
+ # Or aka Sweet32: Birthday attacks on 64-bit block ciphers in TLS/SSL and OpenVPN.\n
6
6
# https://sweet32.info/ \n
7
7
8
+
9
+ # Nmap Scan
10
+ echo " --------------------------------------------------"
11
+ echo " Performing the SSL scan using Nmap"
12
+ echo " --------------------------------------------------"
13
+ nmap -A -F -Pn -R -sS -sU -sV --script=ssl-enum-ciphers,vulners -iL targets -oA Swett_Thirty-two
14
+ xsltproc Swett_Thirty-two.xml -o Reports/Nmap_TLS_Output.html
15
+ cat Swett_Thirty-two.gnmap | grep Up | cut -d ' ' -f 2 > live
16
+
8
17
for c in $( cat targets) ; do
9
18
for i in $( cat WeakCiphers.txt) ; do
10
19
echo " ----------------------------------------------TLSv1--------------------------------------------------------"
Original file line number Diff line number Diff line change 1
1
# Sweet32: Birthday attacks
2
2
The script below is to test for CVE-2016 -2183, CVE-2016 -6329 or you may know it better as the Sweet32 birthday attack. For more detail please reference the links below;
3
3
4
- https://sweet32.info/
5
- https://access.redhat.com/articles/2548661
6
- https://www.openssl.org/blog/blog/2016/08/24/sweet32/
7
- https://www.rapid7.com/db/vulnerabilities/ssl-cve-2016-2183-sweet32
8
- https://www.digicert.com/blog/sweet32-birthday-attack-what-you-need-to-know/
4
+ 1 . https://sweet32.info/
5
+ 2 . https://access.redhat.com/articles/2548661
6
+ 3 . https://www.openssl.org/blog/blog/2016/08/24/sweet32/
7
+ 4 . https://www.rapid7.com/db/vulnerabilities/ssl-cve-2016-2183-sweet32
8
+ 5 . https://www.digicert.com/blog/sweet32-birthday-attack-what-you-need-to-know/
Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ SRP-DSS-AES-128-CBC-SHA
26
26
SRP-DSS-AES-256-CBC-SHA
27
27
SRP-RSA-3DES-EDE-CBC-SHA
28
28
SRP-RSA-AES-128-CBC-SHA
29
- SRP-RSA-AES-256-CBC-SHA
29
+ SRP-RSA-AES-256-CBC-SHA
You can’t perform that action at this time.
0 commit comments