1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# SPDX-FileCopyrightText: 2024 Martin Boller
#
# SPDX-License-Identifier: GPL-3.0-or-later
from argparse import Namespace
from gvm.protocols.gmp import Gmp
from gvmtools.helper import Table
def main(gmp: Gmp, args: Namespace) -> None:
# pylint: disable=unused-argument
response_xml = gmp.get_alerts(filter_string="rows=-1")
alerts_xml = response_xml.xpath("alert")
heading = [
"#",
"Name",
"Id",
"Event",
"Event type",
"Method",
"Condition",
"In use",
]
rows = []
numberRows = 0
print("Listing alerts.\n")
for alert in alerts_xml:
# Count number of reports
numberRows = numberRows + 1
# Cast/convert to text to show in list
rowNumber = str(numberRows)
name = "".join(alert.xpath("name/text()"))
alert_id = alert.get("id")
alert_condition = "".join(alert.xpath("condition/text()"))
alert_method = "".join(alert.xpath("method/text()"))
alert_event_type = "".join(alert.xpath("event/data/text()"))
alert_event = "".join(alert.xpath("event/text()"))
alert_inuse = "".join(alert.xpath("in_use/text()"))
if alert_inuse == "1":
alert_inuse = "Yes"
else:
alert_inuse = "No"
rows.append(
[
rowNumber,
name,
alert_id,
alert_event,
alert_event_type,
alert_method,
alert_condition,
alert_inuse,
]
)
print(Table(heading=heading, rows=rows))
if __name__ == "__gmp__":
main(gmp, args)
|