|
19 | 19 | from thirdparty import six |
20 | 20 |
|
21 | 21 | # sqlmap version (<major>.<minor>.<month>.<monthly commit>) |
22 | | -VERSION = "1.8.9.1" |
| 22 | +VERSION = "1.8.10.0" |
23 | 23 | TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" |
24 | 24 | TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} |
25 | 25 | VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) |
|
686 | 686 | UNENCODED_ORIGINAL_VALUE = "original" |
687 | 687 |
|
688 | 688 | # Common column names containing usernames (used for hash cracking in some cases) |
689 | | -COMMON_USER_COLUMNS = ("login", "user", "username", "user_name", "user_login", "benutzername", "benutzer", "utilisateur", "usager", "consommateur", "utente", "utilizzatore", "utilizator", "utilizador", "usufrutuario", "korisnik", "uporabnik", "usuario", "consumidor", "client", "cuser") |
| 689 | +COMMON_USER_COLUMNS = ("login", "user", "username", "user_name", "user_login", "account", "account_name", "benutzername", "benutzer", "utilisateur", "usager", "consommateur", "utente", "utilizzatore", "utilizator", "utilizador", "usufrutuario", "korisnik", "uporabnik", "usuario", "consumidor", "client", "customer", "cuser") |
690 | 690 |
|
691 | 691 | # Default delimiter in GET/POST values |
692 | 692 | DEFAULT_GET_POST_DELIMITER = '&' |
|
794 | 794 | RANDOMIZATION_TLDS = ("com", "net", "ru", "org", "de", "uk", "br", "jp", "cn", "fr", "it", "pl", "tv", "edu", "in", "ir", "es", "me", "info", "gr", "gov", "ca", "co", "se", "cz", "to", "vn", "nl", "cc", "az", "hu", "ua", "be", "no", "biz", "io", "ch", "ro", "sk", "eu", "us", "tw", "pt", "fi", "at", "lt", "kz", "cl", "hr", "pk", "lv", "la", "pe", "au") |
795 | 795 |
|
796 | 796 | # Generic www root directory names |
797 | | -GENERIC_DOC_ROOT_DIRECTORY_NAMES = ("htdocs", "httpdocs", "public", "wwwroot", "www") |
| 797 | +GENERIC_DOC_ROOT_DIRECTORY_NAMES = ("htdocs", "httpdocs", "public", "public_html", "wwwroot", "www", "site") |
798 | 798 |
|
799 | 799 | # Maximum length of a help part containing switch/option name(s) |
800 | 800 | MAX_HELP_OPTION_LENGTH = 18 |
|
803 | 803 | MAX_CONNECT_RETRIES = 100 |
804 | 804 |
|
805 | 805 | # Strings for detecting formatting errors |
806 | | -FORMAT_EXCEPTION_STRINGS = ("Type mismatch", "Error converting", "Please enter a", "Conversion failed", "String or binary data would be truncated", "Failed to convert", "unable to interpret text value", "Input string was not in a correct format", "System.FormatException", "java.lang.NumberFormatException", "ValueError: invalid literal", "TypeMismatchException", "CF_SQL_INTEGER", "CF_SQL_NUMERIC", " for CFSQLTYPE ", "cfqueryparam cfsqltype", "InvalidParamTypeException", "Invalid parameter type", "Attribute validation error for tag", "is not of type numeric", "<cfif Not IsNumeric(", "invalid input syntax for integer", "invalid input syntax for type", "invalid number", "character to number conversion error", "unable to interpret text value", "String was not recognized as a valid", "Convert.ToInt", "cannot be converted to a ", "InvalidDataException", "Arguments are of the wrong type") |
| 806 | +FORMAT_EXCEPTION_STRINGS = ("Type mismatch", "Error converting", "Please enter a", "Conversion failed", "String or binary data would be truncated", "Failed to convert", "unable to interpret text value", "Input string was not in a correct format", "System.FormatException", "java.lang.NumberFormatException", "ValueError: invalid literal", "TypeMismatchException", "CF_SQL_INTEGER", "CF_SQL_NUMERIC", " for CFSQLTYPE ", "cfqueryparam cfsqltype", "InvalidParamTypeException", "Invalid parameter type", "Attribute validation error for tag", "is not of type numeric", "<cfif Not IsNumeric(", "invalid input syntax for integer", "invalid input syntax for type", "invalid number", "character to number conversion error", "unable to interpret text value", "String was not recognized as a valid", "Convert.ToInt", "cannot be converted to a ", "InvalidDataException", "Arguments are of the wrong type", "Invalid conversion") |
807 | 807 |
|
808 | 808 | # Regular expression used for extracting ASP.NET view state values |
809 | 809 | VIEWSTATE_REGEX = r'(?i)(?P<name>__VIEWSTATE[^"]*)[^>]+value="(?P<result>[^"]+)' |
|
908 | 908 | KB_CHARS_LOW_FREQUENCY_ALPHABET = "zqxjkvbp" |
909 | 909 |
|
910 | 910 | # For filling in case of dumb push updates |
911 | | -DUMMY_JUNK = "jaiSh6bi" |
| 911 | +DUMMY_JUNK = "Ataiphi2" |
912 | 912 |
|
913 | 913 | # Printable bytes |
914 | 914 | PRINTABLE_BYTES = set(bytes(string.printable, "ascii") if six.PY3 else string.printable) |
|
0 commit comments