Category: Programming
Overcoming Objections to an Application Security Program
From here:Today a large percentage of security professionals truly ?get? application security. They understand the importance, the best-practices, the value, etc. What inhibits their success the most in building an effective application security program… more »
Malware IN Registry a.k.a If It Can?t Be Done, Why Am I Looking At It?
From here:July 28th, 2009 cutaway Posted in Incident Response, Malware, Microsoft, Security | 27 views I have to say that reading the Windows Incident Response blog has been very useful on several occasions. Particularly last mont… more »
SQL mapping
Use 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 »