> For the complete documentation index, see [llms.txt](https://pentest.mxhx.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pentest.mxhx.org/03-getting-in/sqlite3.md).

# SQLite3

## Basics

* DB is actually in a File/Dir

```
> file [FILENAME]       ..to check the filetype/info
> sqlite3 [FILENAME]    ..to connect

.tables    ... to get a list of tables.
SELECT     ... to extract the content of a table using SQL.
```
