This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
forked from greenbone/gvm-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend-targets.gmp.py
139 lines (105 loc) · 4.31 KB
/
send-targets.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# -*- coding: utf-8 -*-
# Copyright (C) 2018-2021 Greenbone Networks GmbH
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
from gvm.protocols.gmpv9.types import get_alive_test_from_string
from gvmtools.helper import create_xml_tree, yes_or_no
def check_args(args):
len_args = len(args.script) - 1
if len_args != 1:
message = """
This script pulls target data from an xml document and feeds it to \
a desired GSM
One parameter after the script name is required.
1. <xml_doc> -- .xml file containing targets
Example:
$ gvm-script --gmp-username name --gmp-password pass \
ssh --hostname <gsm> scripts/send-targets.gmp.py example_file.xml
"""
print(message)
sys.exit()
def parse_send_xml_tree(gmp, xml_tree):
credential_options = [
'ssh_credential',
'smb_credential',
'esxi_credential',
'snmp_credential',
]
counter = 1
for target in xml_tree.xpath('target'):
keywords = {} # {'make_unique': True}
keywords['name'] = target.find('name').text
keywords['hosts'] = target.find('hosts').text.split(',')
exclude_hosts = target.find('exclude_hosts').text
if exclude_hosts is not None:
keywords['exclude_hosts'] = exclude_hosts.split(',')
comment = target.find('comment').text
if comment is not None:
keywords['comment'] = comment
credentials = gmp.get_credentials()[0].xpath("//credential/@id")
for credential in credential_options:
cred_id = target.find(credential).xpath('@id')[0]
if cred_id == '':
continue
if cred_id not in credentials:
response = yes_or_no(
"\nThe credential '{}' for 'target {}' could not be "
"located...\nWould you like to continue?".format(
credential, counter
)
)
if response is False:
print("Terminating...\n")
sys.exit()
else:
continue
key = '{}_id'.format(credential)
keywords[key] = cred_id
elem_path = target.find(credential)
port = elem_path.find('port')
if port is not None and port.text is not None:
port_key = '{}_port'.format(credential)
keywords[port_key] = elem_path.find('port').text
alive_test = get_alive_test_from_string(target.find('alive_tests').text)
if alive_test is not None:
keywords['alive_test'] = alive_test
reverse_lookup_only = target.find('reverse_lookup_only').text
if reverse_lookup_only == '1':
keywords['reverse_lookup_only'] = 1
reverse_lookup_unify = target.find('reverse_lookup_unify').text
if reverse_lookup_unify == '1':
keywords['reverse_lookup_unify'] = 1
port_range = target.find('port_range')
if port_range is not None:
keywords['port_range'] = port_range.text
if target.xpath('port_list/@id') is not None:
port_list = {}
port_list = target.xpath('port_list/@id')[0]
keywords['port_list_id'] = port_list
print(keywords)
gmp.create_target(**keywords)
counter += 1
def main(gmp, args):
# pylint: disable=undefined-variable
check_args(args)
xml_doc = args.script[1]
print('\nSending targets...')
xml_tree = create_xml_tree(xml_doc)
parse_send_xml_tree(gmp, xml_tree)
print('\n Target(s) created!\n')
if __name__ == '__gmp__':
main(gmp, args) # pylint: disable=undefined-variable