Thứ Tư, 29 tháng 3, 2017

SQLMap -- Searching Databases for Specific Columns/Data & Extracting from Specific Columns

SQLMap -- Searching Databases for Specific Columns/Data & Extracting from Specific Columns So assuming we have some sort of SQL Injection in the application (Blind in this case) and we've previously dumped all the available databases (--dbs), we now want to search for columns with 'password' in them. To search all databases for 'password' python sqlmap.py -u "http://192.168.1.1/mypath/mypoorlywrittenapp.asp?SessionID="...
Read More

Thứ Hai, 27 tháng 3, 2017

SQLite - Commands

This chapter will take you through simple and useful commands used by SQLite programmers. These commands are called SQLite dot commands and exception with these commands is that they should not be terminated by a semi-colon (;). Let's start with typing a simple sqlite3 command at command prompt which will provide you SQLite command prompt where you will issue various SQLite commands. $sqlite3 SQLite version 3.3.6 Enter...
Read More