mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Minor style update (capitalization of leftover class names)
This commit is contained in:
@@ -15,7 +15,7 @@ from lib.core.data import kb
|
||||
from lib.core.data import paths
|
||||
from lib.core.threads import getCurrentThreadData
|
||||
|
||||
class htmlHandler(ContentHandler):
|
||||
class HTMLHandler(ContentHandler):
|
||||
"""
|
||||
This class defines methods to parse the input HTML page to
|
||||
fingerprint the back-end database management system
|
||||
@@ -50,7 +50,7 @@ def htmlParser(page):
|
||||
|
||||
xmlfile = paths.ERRORS_XML
|
||||
checkFile(xmlfile)
|
||||
handler = htmlHandler(page)
|
||||
handler = HTMLHandler(page)
|
||||
|
||||
parseXmlFile(xmlfile, handler)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user