You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: plugins/subnet/bin/komand_subnet
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ from sys import argv
6
6
7
7
Name="Subnet"
8
8
Vendor="rapid7"
9
-
Version="2.0.1"
9
+
Version="2.0.2"
10
10
Description="The Subnet plugin takes input as a network in CIDR notation and returns useful information, such as the number of hosts, the ID, host address range, and broadcast address"
|ip_address|string|None|True|The IP address|None|198.51.100.100|None|None|
89
-
|subnet|string|None|True|The subnet in CIDR notation or Netmask|None|198.51.100.0/24|None|None|
89
+
|subnet|string|None|True|The Subnet in CIDR notation or Netmask|None|198.51.100.0/24|None|None|
90
90
91
91
Example input:
92
92
@@ -123,10 +123,11 @@ Example output:
123
123
124
124
## Troubleshooting
125
125
126
-
The number of hosts per network does not include the ID and broadcast address. However, the number of network does include the all-ones and all-zeros network.
126
+
*The number of hosts per network does not include the ID and broadcast address. However, the number of network does include the all-ones and all-zeros network.
127
127
128
128
# Version History
129
129
130
+
* 2.0.2 - Updated SDK to the latest version (6.2.5)
130
131
* 2.0.1 - Initial updates for fedramp compliance | Updated SDK to the latest version
131
132
* 2.0.0 - Add new action Check Address in Subnet | Code refactor
132
133
* 1.0.2 - New spec and help.md format for the Extension Library
Copy file name to clipboardexpand all lines: plugins/subnet/plugin.spec.yaml
+30-25
Original file line number
Diff line number
Diff line change
@@ -3,52 +3,57 @@ extension: plugin
3
3
products: [insightconnect]
4
4
name: subnet
5
5
title: Subnet
6
-
description: The Subnet plugin takes input as a network in CIDR notation and returns useful information, such as the number of hosts, the ID, host address range, and broadcast address
7
-
version: 2.0.1
6
+
description: The Subnet plugin takes input as a network in CIDR notation and returns
7
+
useful information, such as the number of hosts, the ID, host address range, and
troubleshooting: The number of hosts per network does not include the ID and broadcast address. However, the number of network does include the all-ones and all-zeros network.
34
+
- Returns network information about CIDR
35
+
troubleshooting:
36
+
- The number of hosts per network does not include the ID and broadcast address. However,
37
+
the number of network does include the all-ones and all-zeros network.
34
38
version_history:
35
-
- "2.0.1 - Initial updates for fedramp compliance | Updated SDK to the latest version"
36
-
- "2.0.0 - Add new action Check Address in Subnet | Code refactor"
37
-
- "1.0.2 - New spec and help.md format for the Extension Library"
38
-
- "1.0.1 - Add `utilities` plugin tag for Marketplace searchability"
39
-
- "1.0.0 - Update to v2 Python plugin architecture | Support web server mode"
40
-
- "0.1.1 - SSL bug fix in SDK"
41
-
- "0.1.0 - Initial plugin"
39
+
- 2.0.2 - Updated SDK to the latest version (6.2.5)
40
+
- 2.0.1 - Initial updates for fedramp compliance | Updated SDK to the latest version
41
+
- 2.0.0 - Add new action Check Address in Subnet | Code refactor
42
+
- 1.0.2 - New spec and help.md format for the Extension Library
43
+
- 1.0.1 - Add `utilities` plugin tag for Marketplace searchability
44
+
- 1.0.0 - Update to v2 Python plugin architecture | Support web server mode
Copy file name to clipboardexpand all lines: plugins/subnet/setup.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
5
5
setup(name="subnet-rapid7-plugin",
6
-
version="2.0.1",
6
+
version="2.0.2",
7
7
description="The Subnet plugin takes input as a network in CIDR notation and returns useful information, such as the number of hosts, the ID, host address range, and broadcast address",
0 commit comments