Adding some more entries into common columns

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

View file

@ -2768,6 +2768,42 @@ shouji
u_pass
hashedPw
# API keys, tokens and secrets
api_key
apikey
api_token
access_token
refresh_token
auth_token
session_token
remember_token
secret_key
client_secret
encryption_key
reset_token
password_reset_token
verification_token
confirmation_token
otp
otp_secret
totp_secret
mfa_secret
two_factor_secret
# Framework and identity columns
deleted_at
uuid
role
is_admin
is_active
is_verified
date_of_birth
dob
credit_card
postal_code
# password (international)
adgangskode

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.135"
VERSION = "1.10.7.136"
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)