-
Notifications
You must be signed in to change notification settings - Fork 0
/
cisco_firepower.json
133 lines (133 loc) · 3.59 KB
/
cisco_firepower.json
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
{
"appid" : "F501CF42-46D4-4023-A156-208640865AA8",
"name" : "Cisco Firepower",
"description" : "This app interfaces with Cisco Firepower devices to add or remove IPs or networks to a Firepower Network Group Object, which is configured with an ACL.",
"publisher": "World Wide Technology",
"package_name": "phantom_cisco_firepower_1.1",
"type": "firewall",
"license": "Copyright (c) World Wide Technology, Inc. 2016",
"main_module" : "cisco_firepower_connector.pyc",
"app_version": "1.1.11",
"utctime_updated": "2016-12-21T09:02:18.000000Z",
"product_vendor": "Cisco Systems",
"product_name": "Cisco Firepower",
"product_version_regex": ".*",
"min_phantom_version": "1.0.240",
"logo": "cisco.png",
"configuration": {
"firepower_host": {
"description": "Device IP/Hostname",
"order": 0,
"data_type": "string",
"required": true
},
"ph": {
"data_type": "ph",
"order": 1
},
"username": {
"description": "User with access to the Firepower node",
"data_type": "string",
"order": 2,
"required": true
},
"password": {
"description": "Password",
"data_type": "password",
"order": 3,
"required": true
},
"domain_name": {
"description": "Firepower Domain",
"data_type": "string",
"order": 4,
"required": true
},
"network_group_object": {
"description": "Network Group Object",
"data_type": "string",
"order": 5,
"required": true
}
},
"actions": [
{
"action": "test connectivity",
"description": "Validate the asset configuration for connectivity",
"verbose": "This action logs into the Cisco Firepower device using a REST call",
"type": "test",
"identifier": "test connectivity",
"read_only": true,
"parameters": {},
"output": [],
"versions": "EQ(*)"
},
{
"action": "list networks",
"description": "Lists currently blocked networks",
"type": "investigate",
"identifier": "list_networks",
"read_only": true,
"parameters": {},
"render": {
"width": 12,
"title": "Static Routes",
"type": "table",
"height": 20
},
"output": [
{
"data_path": "action_result.data.*.network",
"data_type": "string",
"column_name": "Blocked Network",
"column_order": 0
},
{
"data_path": "action_result.status",
"data_type": "string"
},
{
"data_path": "action_result.message",
"data_type": "string"
}
],
"versions": "EQ(*)"
},
{
"action": "block ip",
"description": "Blocks an IP network",
"type": "contain",
"identifier": "block_ip",
"read_only": false ,
"parameters": {
"ip": {
"contains": [ "ip", "ip network" ],
"description": "IP/network to block (X.X.X.X/NM)",
"data_type": "string",
"primary": "true",
"required": true
}
},
"output": [],
"versions": "EQ(*)"
},
{
"action": "unblock ip",
"description": "Unblocks an IP network",
"type": "correct",
"identifier": "unblock_ip",
"read_only": false,
"parameters": {
"ip": {
"contains": [ "ip", "ip network" ],
"description": "IP/network to unBlock (X.X.X.X/NM)",
"data_type": "string",
"primary": "true",
"required": true
}
},
"output": [],
"versions": "EQ(*)"
}
]
}