Skip to content

Instantly share code, notes, and snippets.

View jcesarstef's full-sized avatar

Julio C. Stefanutto jcesarstef

View GitHub Profile
.log
0
1
1234
12345
123456
18Renmeng
2
ACrenshaw
AGorg
@jcesarstef
jcesarstef / build-openssl.sh
Last active July 12, 2017 00:38 — forked from bmaupin/build-openssl.sh
Build openssl (with SSLv2/3 support for security testing)
#!/bin/bash
# Get insecure OpenSSL 1.0.2 version from https://openssl.org/source/
# v1.1.0 seems to have removed SSLv2/3 support
openssl_version=1.0.2k
# Build OpenSSL
wget https://openssl.org/source/openssl-$openssl_version.tar.gz
tar -xvf openssl-$openssl_version.tar.gz
cd openssl-$openssl_version