mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
First CSS style added for a HTML table dump format (Issue #254)
This commit is contained in:
@@ -499,3 +499,18 @@ SUHOSHIN_MAX_VALUE_LENGTH = 512
|
||||
|
||||
# Regular expression used for extracting form tags
|
||||
FORM_SEARCH_REGEX = r"(?si)<form(?!.+<form).+?</form>"
|
||||
|
||||
# CSS style used in HTML dump format
|
||||
HTML_DUMP_CSS_STYLE = """<style>
|
||||
table{
|
||||
margin:10;
|
||||
background-color:#ffffff;
|
||||
font-family:verdana;
|
||||
font-size:12px;
|
||||
align:center;
|
||||
}
|
||||
td{
|
||||
font-family:verdana;
|
||||
font-size:10px;
|
||||
}
|
||||
</style>"""
|
||||
|
||||
Reference in New Issue
Block a user