-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlist-tickets.gmp.py
executable file
·108 lines (84 loc) · 2.98 KB
/
list-tickets.gmp.py
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# SPDX-FileCopyrightText: 2025 Martin Boller
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# Run with gvm-script --gmp-username admin-user --gmp-password password socket list-tickets.gmp.py
from argparse import ArgumentParser, Namespace, RawTextHelpFormatter
from gvm.protocols.gmp import Gmp
from gvmtools.helper import Table
HELP_TEXT = (
"This script returns tickets "
"from Greenbone Vulnerability Manager.\n\n"
"specify trash as first script parameter to "
"return tickets in the GVM trashcan. No parameters show default tickets\n"
)
def parse_args(args: Namespace) -> Namespace: # pylint: disable=unused-argument
"""Parsing args ..."""
parser = ArgumentParser(
prefix_chars="+",
add_help=False,
formatter_class=RawTextHelpFormatter,
description=HELP_TEXT,
)
parser.add_argument(
"+h",
"++help",
action="help",
help="Show this help message and exit.",
)
parser.add_argument(
"trashed",
nargs="?",
default="Default",
type=str,
help=("trash or default"),
)
script_args, _ = parser.parse_known_args(args)
return script_args
def list_tickets(gmp: Gmp, trashed: str) -> None:
# pylint: disable=unused-argument
if trashed == "trash":
response_xml = gmp.get_tickets(trash=True, filter_string="rows=-1")
else:
response_xml = gmp.get_tickets(filter_string="rows=-1")
tickets_xml = response_xml.xpath("ticket")
heading = ["#", "Name", "Status", "Open Time", "Host", "Task", "Note"]
rows = []
numberRows = 0
print("Listing tickets.\n")
for ticket in tickets_xml:
# Count number of reports
numberRows = numberRows + 1
# Cast/convert to text to show in list
rowNumber = str(numberRows)
name = "".join(ticket.xpath("name/text()"))
ticket_status = "".join(ticket.xpath("status/text()"))
ticket_task = "".join(ticket.xpath("task/name/text()"))
ticket_host = "".join(ticket.xpath("host/text()"))
ticket_open = "".join(ticket.xpath("open_time/text()"))
if ticket_status.upper() == "OPEN":
ticket_note = "".join(ticket.xpath("open_note/text()"))
elif ticket_status.upper() == "FIXED":
ticket_note = "".join(ticket.xpath("fixed_note/text()"))
elif ticket_status.upper() == "CLOSED":
ticket_note = "".join(ticket.xpath("closed_note/text()"))
rows.append(
[
rowNumber,
name,
ticket_status,
ticket_open,
ticket_host,
ticket_task,
ticket_note,
]
)
print(Table(heading=heading, rows=rows))
def main(gmp: Gmp, args: Namespace) -> None:
# pylint: disable=undefined-variable
args = args.script[1:]
parsed_args = parse_args(args=args)
# get the tasks
list_tickets(gmp, parsed_args.trashed)
if __name__ == "__gmp__":
main(gmp, args)