Please use the official ssl-poodle NSE script from the Nmap project.
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
local nmap = require "nmap" | |
local shortport = require "shortport" | |
local stdnse = require "stdnse" | |
local table = require "table" | |
local bin = require "bin" | |
local tls = require "tls" | |
description = [[ | |
Tries to confuse a TLS server into sending a ClientHello by first sending a HelloRequest. |
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
local lpeg = require "lpeg" | |
local U = require "lpeg-utility" | |
local getquote = U.escaped_quote() | |
local unescape = lpeg.P ( { | |
lpeg.Cs((lpeg.V "simple_char" + lpeg.V "unesc")^0), | |
esc = lpeg.P "\\", | |
simple_char = lpeg.P(1) - lpeg.V "esc", | |
unesc = (lpeg.V "esc" * lpeg.Cs( lpeg.V "esc" + lpeg.V "specials" + lpeg.V "code" + lpeg.P(1) ))/"%1", | |
specials = lpeg.S "trn0" / {t="\t", r="\r", n="\n", ["0"]="\0"}, |
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/bash | |
# Usage: progress.sh $(pgrep myprocess) $FD_NUMBER | |
# Find $FD_NUMBER by doing: ls -l /proc/$(pgrep myprocess)/fd/ | |
fd=/proc/$1/fd/$2 | |
fdinfo=/proc/$1/fdinfo/$2 | |
name=$(readlink $fd) | |
size=$(wc -c $fd | awk '{print $1}') | |
while [ -e $fd ]; do |
- Nmap. The script requires version 6.25 or newer. The latest version, 6.47, already includes the next 3 dependencies, so you can skip directly to the Scanning section below.
- An easy way to get the latest Nmap release is to use Kali Linux.
- Binary installers are available for Windows.
- RPM installer available for Linux, or install from source.
- .dmg installer available for Mac OS X.
- tls.lua. The script requires this Lua library for TLS handshaking.
- ssl-heartbleed.nse. This is the script itself.
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/bash | |
PEP8=$(which pep8) | |
if [ -z $PEP8 ]; then | |
echo "No pep8 in your path. Skipping Python checks" | |
else | |
for file in $(find "$@" -name '*.py'); do | |
OUTPUT=$(mktemp) | |
"$PEP8" -r "$file" > "$OUTPUT" |
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
local nmap = require "nmap" | |
local shortport = require "shortport" | |
local stdnse = require "stdnse" | |
local bin = require "bin" | |
local tls = require "tls" | |
description = [[ | |
Checks for server support of the Extended Random TLS extension, which was | |
allegedly created to make exploitation of the Dual EC DRBG weakness easier. The | |
extension was never widely adopted, and IANA did not assign an ExtensionType |
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
" Vim indent file | |
" Language: Lua | |
" Maintainer: Daniel Miller <[email protected]> | |
" Original Author: Daniel Miller <[email protected]> | |
" Last Change: 2014 Feb 6 | |
" Only load this indent file when no other was loaded. | |
if exists("b:did_indent") | |
finish | |
endif |
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/bash | |
# | |
# An example hook script to verify what is about to be committed. | |
# Called by "git commit" with no arguments. The hook should | |
# exit with non-zero status after issuing an appropriate message if | |
# it wants to stop the commit. | |
# | |
if git rev-parse --verify HEAD >/dev/null 2>&1 | |
then |
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
#!/usr/bin/env python | |
import sys | |
if len(sys.argv) != 4: | |
print """{0} - Output a PNG from Nmap XML | |
Usage: {0} <scan.xml> <out.png> <width_in_pixels>""".format(sys.argv[0]) | |
sys.exit(1) | |
try: |
NewerOlder