| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -53,6 +53,9 @@ | |||
| 53 | 53 | * Added time-based payloads for CUBRID. | |
| 54 | 54 | * Added out-of-band DNS channels for H2 and ClickHouse. | |
| 55 | 55 | * Added PostgreSQL command execution through a PL extension. | |
| 56 | + * Added the running of non-query statements without stacked queries through a gadget. On PostgreSQL, when the `dblink` extension is present, `--sql-query`, `--file-write`, `--os-cmd`, and `--os-shell` now work from a plain (e.g. boolean-based) injection point. | ||
| 57 | + * Added file read and file write support for SQLite through the `fileio` extension functions `readfile` and `writefile`. | ||
| 58 | + * Added the data access and the security type of a routine to the output of `--procs` on MySQL and PostgreSQL, so a routine that runs as its definer or that modifies data stands out. | ||
| 56 | 59 | * Added the tamper scripts `blindbinary`, `dollarquote`, `infoschema2innodb`, `oraclequote`, and `sign`. | |
| 57 | 60 | ||
| 58 | 61 | ## Fewer dependencies | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -20,7 +20,7 @@ | |||
| 20 | 20 | from thirdparty import six | |
| 21 | 21 | ||
| 22 | 22 | # sqlmap version (<major>.<minor>.<month>.<monthly commit>) | |
| 23 | - VERSION = "1.10.8.49" | ||
| 23 | + VERSION = "1.10.8.50" | ||
| 24 | 24 | TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" | |
| 25 | 25 | TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} | |
| 26 | 26 | VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments