Author Archives: admin

Scan your site for POODLE vulnerability

This site works really well. I highly recommend it. https://www.tinfoilsecurity.com/poodle

Posted in SSL | Comments Off on Scan your site for POODLE vulnerability

How to disable SSL3 in Nginx and Apache to prevent POODLE

Here is how to disable SSLv3 in apache and nginx. Just for fun, before you do it, scan your site with this tool: https://www.tinfoilsecurity.com/poodle Qualys SSL Server Test (this one is much better. tinfoilhat was the first one i found … Continue reading

Posted in Linux, nginx, SSL | Comments Off on How to disable SSL3 in Nginx and Apache to prevent POODLE

How to scan for shellshock

cd /root sudo apt-get install git gcc make libpcap-dev git clone https://github.com/robertdavidgraham/masscan cd masscan make then copied this into a file shellshock.conf range = 172.16.1.1-172.16.1.254 port = 80 banners = true http-user-agent = shellshock-scan http-header = Cookie:() { :; }; … Continue reading

Posted in Linux | Comments Off on How to scan for shellshock

GPG error NO_PUBKEY

I am getting W: GPG error: http:// archive.canonical.com quantal Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32 The fix: sudo apt-key adv –recv-keys –keyserver keyserver.ubuntu.com 40976EAF437D05B5

Posted in Uncategorized | Comments Off on GPG error NO_PUBKEY

How to find missing indexes in SQL Server

This works in SQL Server 2005 or better. SELECT * FROM sys.dm_db_missing_index_details Too easy! See this link for more information.

Posted in Microsoft | Comments Off on How to find missing indexes in SQL Server