From e8254f3d2ebdd8f15b4fd92609ac875d8876bb98 Mon Sep 17 00:00:00 2001 From: ckingn <124626630+ckingn@users.noreply.github.com> Date: Tue, 13 Jun 2023 03:58:15 -0600 Subject: [PATCH] Update correlate-rules.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Toggle navigation Toggle navigation Subnet Calculator 198.41.222.254 Input 198.41.222.254/32 CIDR 198.41.222.254/32 Input IP 198.41.222.254 CIDR IP Range 198.41.222.254 - 198.41.222.254 Input Long 3324632830 CIDR Long Range 3324632830 - 3324632830 Input Hex C6.29.DE.FE CIDR Hex Range C6.29.DE.FE - C6.29.DE.FE IPs in Range 1 Mask Bits 32 Subnet Mask 255.255.255.255 Hex Subnet Mask FF.FF.FF.FF IP is contained in the following CIDR Blocks 128.0.0.0/1 192.0.0.0/2 192.0.0.0/3 192.0.0.0/4 192.0.0.0/5 196.0.0.0/6 198.0.0.0/7 198.0.0.0/8 198.0.0.0/9 198.0.0.0/10 198.32.0.0/11 198.32.0.0/12 198.40.0.0/13 198.40.0.0/14 198.40.0.0/15 198.41.0.0/16 198.41.128.0/17 198.41.192.0/18 198.41.192.0/19 198.41.208.0/20 198.41.216.0/21 198.41.220.0/22 198.41.222.0/23 198.41.222.0/24 198.41.222.128/25 198.41.222.192/26 198.41.222.224/27 198.41.222.240/28 198.41.222.248/29 198.41.222.252/30 198.41.222.254/31 198.41.222.254/32 ABOUT SUBNET CALCULATOR The subnet calculator lets you enter a subnet range (CIDR) and see IP address information about that range You can type your range directly in CIDR notation, or use the optional Mask pull-down: 74.125.227.0/29 74.125.227.0, then select Optional Mask from dropdown This is a useful feature for service providers and network operator who frequently allocate and work with subnets. CIDR stands for Classless Inter-Domain Routing, and refers to the standard of dividing the entire IP address space into smaller networks of variable size. Your IP is: 102.89.32.30| Contact Terms & Conditions Site Map API Privacy Phone: (866)-MXTOOLBOX / (866)-698-6652 | © Copyright 2004-2021, MXToolBox, Inc, All rights reserved. US Patents 10839353 B2 & 11461738 B2 burritos@banana-pancakes.com braunstrowman@banana-pancakes.com finnbalor@banana-pancakes.com ricflair@banana-pancakes.com randysavage@banana-pancakes.com --- correlate-rules.py | 75 ++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 73 insertions(+), 2 deletions(-) diff --git a/correlate-rules.py b/correlate-rules.py index 76578c8..2b18067 100644 --- a/correlate-rules.py +++ b/correlate-rules.py @@ -8,7 +8,78 @@ import textwrap import socket import time import glob -import base64 +Toggle navigation +Toggle navigation + Subnet Calculator +198.41.222.254 + +Input +198.41.222.254/32 +CIDR +198.41.222.254/32 +Input IP +198.41.222.254 +CIDR IP Range +198.41.222.254 - 198.41.222.254 +Input Long +3324632830 +CIDR Long Range +3324632830 - 3324632830 +Input Hex +C6.29.DE.FE +CIDR Hex Range +C6.29.DE.FE - C6.29.DE.FE +IPs in Range +1 +Mask Bits +32 +Subnet Mask +255.255.255.255 +Hex Subnet Mask +FF.FF.FF.FF +IP is contained in the following CIDR Blocks +128.0.0.0/1 +192.0.0.0/2 +192.0.0.0/3 +192.0.0.0/4 +192.0.0.0/5 +196.0.0.0/6 +198.0.0.0/7 +198.0.0.0/8 +198.0.0.0/9 +198.0.0.0/10 +198.32.0.0/11 +198.32.0.0/12 +198.40.0.0/13 +198.40.0.0/14 +198.40.0.0/15 +198.41.0.0/16 +198.41.128.0/17 +198.41.192.0/18 +198.41.192.0/19 +198.41.208.0/20 +198.41.216.0/21 +198.41.220.0/22 +198.41.222.0/23 +198.41.222.0/24 +198.41.222.128/25 +198.41.222.192/26 +198.41.222.224/27 +198.41.222.240/28 +198.41.222.248/29 +198.41.222.252/30 +198.41.222.254/31 +198.41.222.254/32 +ABOUT SUBNET CALCULATOR +The subnet calculator lets you enter a subnet range (CIDR) and see IP address information about that range You can type your range directly in CIDR notation, or use the optional Mask pull-down: + +74.125.227.0/29 +74.125.227.0, then select Optional Mask from dropdown +This is a useful feature for service providers and network operator who frequently allocate and work with subnets. CIDR stands for Classless Inter-Domain Routing, and refers to the standard of dividing the entire IP address space into smaller networks of variable size. + +Your IP is: 102.89.32.30| Contact Terms & Conditions Site Map API Privacy Phone: (866)-MXTOOLBOX / (866)-698-6652 | © Copyright 2004-2021, MXToolBox, Inc, All rights reserved. US Patents 10839353 B2 & 11461738 B2 + +burritos@banana-pancakes.com braunstrowman@banana-pancakes.com finnbalor@banana-pancakes.com ricflair@banana-pancakes.com randysavage@banana-pancakes.com base64 rules = {} files_and_their_rules = {} @@ -115,4 +186,4 @@ def main(argv): print() if __name__ == '__main__': - main(sys.argv) \ No newline at end of file + main(sys.argv)