More Passwords

At first, the Exploit.in dump was giving me trouble because I generated all of the SQL with Bash.  Do not do this.  It’s way harder to escape database-unfriendly characters.  So, I just did it with PHP really quick and started importing them this morning .  So far, I’m up to…

RHEL 6.9 to CentOS 6.9 Script

Sometimes, it’s a bit of a pain to work with RedHat Enterprise Linux.  I’ve been developing a solution with a co-worker that will allow you to convert a RHEL 6.9 box to a CentOS 6.9 box.  So here you have it.  The script that converts RHEL 6.9 to Cent 6.9:…

‘sup.sh’ – What’s up on this server?

I have a script that I use to determine some quick stats on a server.  The script is called ‘sup.sh’.  I’ll post it here for your enjoyment, entertainment, and possible usage. #!/bin/bash { IFS=$'\n' ### PULL THE SYSTEM INFORMATION ### UPTIME=`uptime` D_UP=`uptime | awk '{ s = ""; for (i…