📝
Basic Penetration Testing
  • About Knowledge
  • Server Enumeration
    • Scanning
    • Common Services
      • FTP - 21
      • SMTP - 25
      • SMB - 139, 445
  • Web Application
    • Enumeration
    • Exploitation
    • Execute Commands
    • Databases
      • MySQL
      • SQLite
      • MSSQL
      • PostgreSQL
  • Remote Code Execution
  • File Transfer
    • HTTP Server
    • SMB Protocol
    • FTP Server on Kali Linux
  • Hash Cracking
  • Privilege Escalation
    • Windows Privilege Escalation
    • Linux Privilege Escalation
  • Buffer Overflow
  • About LeeCyberSec
Powered by GitBook
On this page
  • Connection
  • Query

Was this helpful?

  1. Web Application
  2. Databases

SQLite

Connection

$ sqlite3 database.db 
SQLite version 3.8.7.1 2014-10-29 13:59:56
Enter ".help" for usage hints.

Query

sqlite> .tables
users
sqlite> select * from users;
admin|passwd
PreviousMySQLNextMSSQL

Last updated 4 years ago

Was this helpful?