Skip to content

Instantly share code, notes, and snippets.

@hellais
Created March 14, 2012 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hellais/2039763 to your computer and use it in GitHub Desktop.
Save hellais/2039763 to your computer and use it in GitHub Desktop.
get mozilla ciphers
# Read the cpp file to understand what Ciphers map to what name
fileA = open('security/manager/ssl/src/nsNSSComponent.cpp','r')
start = None
lines = fileA.readlines()
for i, line in enumerate(lines):
if line.strip().startswith('static CipherPref CipherPrefs'):
# Get the starting boundary of the Cipher Preferences
start = i
if start and line.strip().startswith('{NULL, 0}'):
# Get the ending boundary of the Cipher Prefs
end = i
break
fileA.close()
# Parse the lines and put them into a dict
ciphers = {}
for x in lines[start:end]:
line = x.strip()
if line.startswith('{'):
for i, y in enumerate(line):
if y == '}':
parsed = line[1:i]
key, value = parsed.split(',')
ciphers[key.replace("\"","")] = value.strip()
# Read the JS file to understand what ciphers are enabled
fileB = open('netwerk/base/public/security-prefs.js', 'r')
enabled_ciphers = []
for x in fileB.readlines():
start = None
line = x.strip()
for i, y in enumerate(line):
if y == "(":
start = i
if start and y == ")":
end = i
if start:
inner = line[start+1:end]
key, value = inner.replace("\"","").split(",")
if key.startswith('security.ssl3'):
enabled_ciphers.append((key.strip(), value.strip()))
fileB.close()
used_ciphers = []
for k, v in enabled_ciphers:
if v == "true":
used_ciphers.append(ciphers[k])
oSSLinclude = ('/usr/include/openssl/ssl3.h', '/usr/include/openssl/ssl.h',
'/usr/include/openssl/ssl2.h', '/usr/include/openssl/ssl23.h',
'/usr/include/openssl/tls1.h')
sslProto = open('security/nss/lib/ssl/sslproto.h', 'r')
sslProtoD = {}
# This reads the HEX code for the ciphers that are used
# by firefox.
for x in sslProto.readlines():
line = x.strip()
if line.lower().startswith("#define"):
# If I ever see somebody putting mixed tab
# and spaces I will cut their fingers :)
line = line.replace('\t', ' ')
key = line.split(' ')[1]
value = line.split(' ')[-1]
key = key.strip()
value = value.strip()
#print "%s %s\n\n" % (key, value)
sslProtoD[key] = value
sslProto.close()
cipher_codes = []
for x in used_ciphers:
cipher_codes.append(sslProtoD[x].lower())
cipher_hex = {}
for fl in oSSLinclude:
fp = open(fl, 'r')
for x in fp.readlines():
line = x.strip()
if line.lower().startswith("#define"):
line = line.replace('\t', ' ')
value = line.split(' ')[1]
key = line.split(' ')[-1]
key = key.strip()
value = value.strip()
if key.startswith('0x'):
key = key.replace('0x0300','0x').lower()
#print "%s %s" % (key, value)
cipher_hex[key] = value
fp.close()
for x in cipher_codes:
try:
res = """#ifdef %s
CIPHER(%s, %s)
#else
XCIPHER(%s, %s)
#endif""" % (cipher_hex[x], x, cipher_hex[x], x, cipher_hex[x])
print res
except:
print "Not found %s" % x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment