mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Trivial update#
This commit is contained in:
parent
30f8c30d6a
commit
31fa7f6c94
8 changed files with 22 additions and 22 deletions
|
|
@ -60,13 +60,13 @@ class Enumeration(Custom, Databases, Entries, Search, Users):
|
|||
bannerParser(kb.data.banner)
|
||||
|
||||
if conf.os and conf.os == "windows":
|
||||
kb.bannerFp["type"] = set(["Windows"])
|
||||
kb.bannerFp["type"] = {"Windows"}
|
||||
|
||||
elif conf.os and conf.os == "linux":
|
||||
kb.bannerFp["type"] = set(["Linux"])
|
||||
kb.bannerFp["type"] = {"Linux"}
|
||||
|
||||
elif conf.os:
|
||||
kb.bannerFp["type"] = set(["%s%s" % (conf.os[0].upper(), conf.os[1:])])
|
||||
kb.bannerFp["type"] = {"%s%s" % (conf.os[0].upper(), conf.os[1:])}
|
||||
|
||||
if conf.os:
|
||||
setOs()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue