class Parser(Component): (source)
Known subclasses: wpscan_out_parse.WPScanCliParser, wpscan_out_parse.WPScanJsonParser
| Method | __init__ |
Undocumented |
| Method | get_results |
Returns a dictionnary structure like |
| Method | get_summary_line |
Return the summary string in one line |
| Method | get_error |
Return any error or None if no errors |
Inherited from Component:
| Instance Variable | data |
Initial data. |
| Instance Variable | false_positives_strings |
Undocumented |
| Instance Variable | show_all_details |
Undocumented |
| Method | is_false_positive |
False Positive Detection |
| Method | get_infos |
Return the component informations as a list of strings. |
| Method | get_warnings |
Return the component warnings as a list of strings. |
| Method | get_alerts |
Return the component alerts as a list of strings. |
Undocumented
| Parameters | data | Undocumented (type: Dict[str, Any]) |
| args | Undocumented (type: Any) | |
| kwargs | Undocumented (type: Any) |
Returns a dictionnary structure like
{
'infos':[],
'warnings':[],
'alerts':[],
'summary':{
'table':[
{
'Component': None,
'Version': None,
'Version State': None,
'Vulnerabilities': None,
'Status': None
},
...
],
'line':'WPScan result summary: alerts={}, warnings={}, infos={}, error={}'
},
'error':None
}
| Returns | Undocumented (type: WPScanResults) | |