Category: Programming
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 »
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 »