View ossec-installer.sh
#!/bin/bash | |
# This script simplifies the installation of the OSSEC HIDS Agent for RHEL/CentOS boxes. | |
# Are we running is root? | |
if [ $(id -u) -ne 0 ]; then | |
echo | |
echo "This script must be run as root!" | |
echo | |
exit; | |
fi |
View audit-tool.py
#!/usr/bin/python | |
# audit-tool.py 2.0 - A simple file comparison utility. | |
# Copyright 2014 13Cubed. All rights reserved. Written by: Richard Davis | |
import sys | |
def compareFiles(filename1, filename2, ignorecase, bidirectional): | |
""" | |
Given two filenames and an ignorecase booelean, compares filename1 | |
against filename2 and returns list of the differences and a count of |
View checknet.sh
#!/bin/bash | |
# If the file that holds the flag doesn't exist, create it with default of 0 | |
if [ ! -f /tmp/checknet.tmp ] | |
then | |
echo 0 > /tmp/checknet.tmp | |
fi | |
target=TARGET_GOES_HERE |
View bashrc
# If this is an interactive shell, customize the prompt | |
if [[ $- == *i* ]]; then | |
echo | |
if [ $(id -u) -eq 0 ]; then # Root user prompt | |
PS1="\[\033[38;5;31m\][\[$(tput sgr0)\]\[\033[38;5;166m\]\u\[$(tput sgr0)\]\[\033[38;5;31m\]@\h\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;34m\]\W\[$(tput sgr0)\]\[\033[38;5;31m\]]\[$(tput sgr0)\]\[\033[38;5;15m\]\\$ \[$(tput sgr0)\]" | |
else # Normal user prompt | |
PS1="\[\033[38;5;31m\][\[$(tput sgr0)\]\[\033[38;5;99m\]\u\[$(tput sgr0)\]\[\033[38;5;31m\]@\h\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;34m\]\W\[$(tput sgr0)\]\[\033[38;5;31m\]]\[$(tput sgr0)\]\[\033[38;5;15m\]\\$ \[$(tput sgr0)\]" | |
fi | |
fi |
View service
#!/bin/bash | |
# Replace myservice with your service name. Insert commands where noted. | |
# chkconfig: - 99 00 | |
# Source function library. | |
. /etc/rc.d/init.d/functions | |
case "$1" in | |
start) | |
echo -n "Starting myservice" |
View checklog.py
#!/usr/bin/python | |
import sys | |
import re | |
def ParseLog(filename, search_string): | |
try: | |
f = open(filename, 'rU') | |
except IOError: | |
print '\n*** I/O Error: Can\'t read file', filename, '***\n' |
View iptohex.py
#!/usr/bin/python | |
import sys | |
import re | |
def DecToHex(dec_ip): | |
dec_octets = str.split(dec_ip, '.') | |
hex_octets = [] | |
if len(dec_octets) != 4: |
View update_dnsbl.sh
#!/bin/bash | |
HOME=/var/named | |
ADLISTURL="https://pgl.yoyo.org/adservers/serverlist.php?hostformat=bindconfig;showintro=0;mimetype=plaintext" | |
MWLISTURL="http://mirror1.malwaredomains.com/files/spywaredomains.zones" | |
ADLISTFILE=/tmp/adlistfile | |
MWLISTFILE=/tmp/mwlistfile | |
# Download newest blacklists | |
curl -s -o $ADLISTFILE $ADLISTURL |
View conkyrc
# .conkyrc | |
background yes | |
use_xft yes | |
xftfont Droid:normal:size=10 | |
xftalpha 1 | |
update_interval 1.0 | |
top_cpu_separate true | |
total_run_times 0 | |
own_window yes |
View ticketbleed.go
package main | |
import ( | |
"crypto/tls" | |
"fmt" | |
"log" | |
"strings" | |
"os" | |
) |
OlderNewer