Skip to content

Commit dad2f02

Browse files
committed
Minor update
1 parent 05005dd commit dad2f02

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

extra/dbwire/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A wire protocol is shared across a whole family of products, so one client serve
2020

2121
| Module | Protocol | Engines |
2222
|-----------------|---------------------|---------|
23-
| `postgres.py` | PostgreSQL v3 | PostgreSQL, CockroachDB, CrateDB, Redshift, Greenplum |
23+
| `postgres.py` | PostgreSQL v3 | PostgreSQL, CockroachDB, CrateDB, Redshift, Greenplum, Vertica |
2424
| `mysql.py` | MySQL client/server | MySQL, MariaDB, TiDB, Aurora (MySQL), Percona |
2525
| `tds.py` | TDS | Microsoft SQL Server, Sybase |
2626
| `firebird.py` | Firebird wire | Firebird 3 / 4 / 5 |

extra/dbwire/postgres.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99
Minimal pure-python PostgreSQL frontend/backend protocol v3 client (stdlib only).
1010
11-
Covers the whole PostgreSQL-wire family (PostgreSQL, CockroachDB, CrateDB, Redshift, Greenplum, ...).
11+
Covers the whole PostgreSQL-wire family (PostgreSQL, CockroachDB, CrateDB, Redshift, Greenplum, Vertica).
1212
Auth: trust / cleartext / MD5 / SCRAM-SHA-256 (modern default). Uses the *simple query* protocol, whose
1313
per-message implicit transaction auto-commits - so it is immune to the aborted-transaction poisoning and
1414
commit-before-fetch pitfalls that bite the stateful native drivers. Binary (bytea) values arrive as the

lib/core/dicts.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@
271271
DBMS.MONETDB: "monetdb",
272272
DBMS.PRESTO: "presto",
273273
DBMS.FIREBIRD: "firebird",
274+
DBMS.VERTICA: "postgres", # Vertica speaks a PostgreSQL-v3-derived wire protocol (trust/cleartext/md5 auth)
274275
}
275276

276277
# Reference: https://blog.jooq.org/tag/sysibm-sysdummy1/

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty import six
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.10.7.89"
23+
VERSION = "1.10.7.90"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)