Category: Security
Use Google Authenticator to login to a Linux PC
June 14th, 2011From here:
Google recently announced two-step authentication for google apps. Fortunately they started from the beginning with open-source code, and released a PAM module that allows us to use it for something else: use a Time-based One-time Password… more »
IPv6 ip6tables firewall configuration
January 17th, 2011 This is an IPv6 firewall configuration script, designed to be stateful. Original found at SIXXS. more »
Social Engineering: 5 Security Holes at the Office (Includes Video)
June 10th, 2009From: www.csoonline.com
Social Engineering: 5 Security Holes at the Office (Includes Video)
We poked around a secure building with social engineering expert
Chris Nickerson and found several ways a criminal could get inside and
access sensitive d… more »
Social Engineering: Anatomy of a Hack
June 10th, 2009From: www.csoonline.com
Social Engineering: Anatomy of a Hack
How a social engineering expert gained access to extremelysensitive information with little more than a thrift-shop shirt, a plate of cookies and a Linksys box
by Joan Go… more »
SQL mapping
April 20th, 2009Use the following SQL queries to get information about a MSSQL database:
List of databases on the server
USE MASTER
SELECT dbid, name
FROM SYSDATABASES
List all the tables in a database
USE
SELECT id, name… more »