File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747from lib .core .settings import TRIM_STDOUT_DUMP_SIZE
4848from lib .core .settings import UNICODE_ENCODING
4949from lib .core .settings import UNSAFE_DUMP_FILEPATH_REPLACEMENT
50+ from lib .core .settings import VERSION_STRING
5051from lib .core .settings import WINDOWS_RESERVED_NAMES
5152from 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 " )
Original file line number Diff line number Diff line change 1919from 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 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
792792 background-color: #D3DFEE
793793}
794794td{
795- font-size:10px ;
795+ font-size:12px ;
796796}
797797th{
798- font-size:10px ;
798+ font-size:12px ;
799799}
800800</style>"""
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ fd8f239e259afaf5f24bcf34a0ad187f lib/core/bigarray.py
37374086fb55f42e27de5330505605baad0f lib/core/decorators.py
3838fbb55cc6100318ff922957b6577dc58f lib/core/defaults.py
3939db165596ef0a3e19ec59c24192bb318d lib/core/dicts.py
40- 9ea8a043030796e6faef7f7e957729d5 lib/core/dump.py
40+ d4b3d448bcfd9f15d089fc81d38f4825 lib/core/dump.py
4141ab3f4f3e3019add5f4a2e28f7e8748a4 lib/core/enums.py
4242cada93357a7321655927fc9625b3bfec lib/core/exception.py
43431e5532ede194ac9c083891c2f02bca93 lib/core/__init__.py
@@ -50,7 +50,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
50500c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5151a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5252fcb74fcc9577523524659ec49e2e964b lib/core/session.py
53- 5e2fea9a1e0cc3d12578dbcf079dba67 lib/core/settings.py
53+ f2ec47bbf669523c8e874eb63adf0126 lib/core/settings.py
5454dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5555a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5656815d1cf27f0f8738d81531e73149867d lib/core/target.py
You can’t perform that action at this time.
0 commit comments