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
Supported Server Cipher(s): | |
Failed SSLv2 168 bits DES-CBC3-MD5 | |
Failed SSLv2 128 bits RC2-CBC-MD5 | |
Failed SSLv2 128 bits RC4-MD5 | |
Failed SSLv2 56 bits DES-CBC-MD5 | |
Failed SSLv2 40 bits EXP-RC2-CBC-MD5 | |
Failed SSLv2 40 bits EXP-RC4-MD5 | |
Rejected SSLv3 256 bits DHE-RSA-AES256-SHA | |
Rejected SSLv3 256 bits DHE-DSS-AES256-SHA | |
Rejected SSLv3 256 bits DHE-RSA-CAMELLIA256-SHA |
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
# Fact: role | |
# | |
# Purpose: | |
# Return the installed and running applications on the system. | |
# | |
# FIXME: Add mongodb, amq, varnish, | |
# FIXME: As of now, interpreting/matching text and not return codes :( | |
Facter.add(:role) do | |
setcode do |
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/ruby | |
require 'socket' | |
# From bits/ioctls.h | |
SIOCGIFNETMASK = 0x891b # Netmask address | |
SIOCGIFHWADDR = 0x8927 # hardware address | |
SIOCGIFADDR = 0x8915 # PA address | |
SIOCGIFCONF = 0x8912 # iface list |
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
input { | |
stdin { | |
type => "apache-access" | |
} | |
} | |
filter { | |
grok { | |
type => "apache-access" |