Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fa3f3ba

Browse files
committed
Minor update
1 parent f125f64 commit fa3f3ba

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

lib/core/dump.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
from lib.core.settings import TRIM_STDOUT_DUMP_SIZE
4848
from lib.core.settings import UNICODE_ENCODING
4949
from lib.core.settings import UNSAFE_DUMP_FILEPATH_REPLACEMENT
50+
from lib.core.settings import VERSION_STRING
5051
from lib.core.settings import WINDOWS_RESERVED_NAMES
5152
from thirdparty.magic import magic
5253

@@ -532,6 +533,7 @@ def dbTableValues(self, tableValues):
532533
elif conf.dumpFormat == DUMP_FORMAT.HTML:
533534
dataToDumpFile(dumpFP, "<!DOCTYPE html>\n<html>\n<head>\n")
534535
dataToDumpFile(dumpFP, "<meta http-equiv=\"Content-type\" content=\"text/html;charset=%s\">\n" % UNICODE_ENCODING)
536+
dataToDumpFile(dumpFP, "<meta name=\"generator\" content=\"%s\" />\n" % VERSION_STRING)
535537
dataToDumpFile(dumpFP, "<title>%s</title>\n" % ("%s%s" % ("%s." % db if METADB_SUFFIX not in db else "", table)))
536538
dataToDumpFile(dumpFP, HTML_DUMP_CSS_STYLE)
537539
dataToDumpFile(dumpFP, "\n</head>\n<body>\n<table>\n<thead>\n<tr>\n")

lib/core/settings.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.2.9.2"
22+
VERSION = "1.2.9.3"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
@@ -792,9 +792,9 @@
792792
background-color: #D3DFEE
793793
}
794794
td{
795-
font-size:10px;
795+
font-size:12px;
796796
}
797797
th{
798-
font-size:10px;
798+
font-size:12px;
799799
}
800800
</style>"""

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fd8f239e259afaf5f24bcf34a0ad187f lib/core/bigarray.py
3737
4086fb55f42e27de5330505605baad0f lib/core/decorators.py
3838
fbb55cc6100318ff922957b6577dc58f lib/core/defaults.py
3939
db165596ef0a3e19ec59c24192bb318d lib/core/dicts.py
40-
9ea8a043030796e6faef7f7e957729d5 lib/core/dump.py
40+
d4b3d448bcfd9f15d089fc81d38f4825 lib/core/dump.py
4141
ab3f4f3e3019add5f4a2e28f7e8748a4 lib/core/enums.py
4242
cada93357a7321655927fc9625b3bfec lib/core/exception.py
4343
1e5532ede194ac9c083891c2f02bca93 lib/core/__init__.py
@@ -50,7 +50,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
5050
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5151
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5252
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
53-
5e2fea9a1e0cc3d12578dbcf079dba67 lib/core/settings.py
53+
f2ec47bbf669523c8e874eb63adf0126 lib/core/settings.py
5454
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5555
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5656
815d1cf27f0f8738d81531e73149867d lib/core/target.py

0 commit comments

Comments
 (0)