Adding some more entries into common tables

This commit is contained in:
Miroslav Štampar 2026-07-19 17:23:37 +02:00
parent f88ecc007d
commit c64870301f
2 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -20,7 +20,7 @@ from lib.core.enums import OS
from thirdparty import six
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
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)