From c64870301fcb1f1488be1919330c78e7d7338f89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0tampar?= Date: Sun, 19 Jul 2026 17:23:37 +0200 Subject: [PATCH] Adding some more entries into common tables --- data/txt/common-tables.txt | 9 +++++++++ lib/core/settings.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/data/txt/common-tables.txt b/data/txt/common-tables.txt index 855593c6a..24e1f184b 100644 --- a/data/txt/common-tables.txt +++ b/data/txt/common-tables.txt @@ -3372,17 +3372,23 @@ django_session django_migrations django_content_type django_admin_log +auth_user_groups +auth_user_user_permissions # laravel migrations password_resets +password_reset_tokens failed_jobs personal_access_tokens job_batches model_has_roles model_has_permissions role_has_permissions +cache +cache_locks +notifications # rails @@ -3420,3 +3426,6 @@ subscriptions users_bak users_old orders_backup +user_roles +role_permissions +tokens diff --git a/lib/core/settings.py b/lib/core/settings.py index b015e2d8f..ea7d8d039 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from lib.core.enums import OS from thirdparty import six # sqlmap version (...) -VERSION = "1.10.7.136" +VERSION = "1.10.7.137" TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)