-
Notifications
You must be signed in to change notification settings - Fork 0
/
deactivate_license.py
64 lines (52 loc) · 2.27 KB
/
deactivate_license.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
#!/usr/bin/env python3
# Copyright (c) 2018, Palo Alto Networks
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# Authors: Nathan Embery
import click
from skilletlib import Panos
from skilletlib.exceptions import LoginException
from skilletlib.exceptions import SkilletLoaderException
import os
@click.command()
@click.option("-i", "--target_ip", help="IP address of the device (localhost)", type=str, default="localhost")
@click.option("-r", "--target_port", help="Port to communicate to NGFW (443)", type=int, default=443)
@click.option("-u", "--target_username", help="Firewall Username (admin)", type=str, default="admin")
@click.option("-p", "--target_password", help="Firewall Password (admin)", type=str, default="admin")
@click.option("-k", "--support_api_key", help="support.paloaltonetworks.com API Key", type=str, default=None)
def cli(target_ip, target_port, target_username, target_password, support_api_key):
"""
Ensures a license exists on the NGFW
"""
try:
if support_api_key is None or support_api_key == '':
print('No Support API key found!')
exit(1)
device = Panos(api_username=target_username,
api_password=target_password,
hostname=target_ip,
api_port=target_port
)
if not device.deactivate_vm_license(support_api_key):
exit(1)
exit(0)
except LoginException as lxe:
print(lxe)
exit(1)
except SkilletLoaderException as pe:
print(pe)
exit(1)
# failsafe
exit(1)
if __name__ == '__main__':
cli()