Merge pull request #637 from dabasanta/DaniloBasanta
Added list of IPv4 address class A&C. Also a script to generate these lists.
This commit is contained in:
64770
Discovery/Infrastructure/All-Ipv4-ClassA-10.10.txt
Normal file
64770
Discovery/Infrastructure/All-Ipv4-ClassA-10.10.txt
Normal file
File diff suppressed because it is too large
Load Diff
64770
Discovery/Infrastructure/All-Ipv4-ClassC-192.168.txt
Normal file
64770
Discovery/Infrastructure/All-Ipv4-ClassC-192.168.txt
Normal file
File diff suppressed because it is too large
Load Diff
22
Discovery/Infrastructure/IPGenerator.sh
Normal file
22
Discovery/Infrastructure/IPGenerator.sh
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
## IP Generator list. Use many iterations as you need.
|
||||
#
|
||||
#for a in {1..254};do
|
||||
# echo "$a.1.1.1"
|
||||
# for b in {1..254};do
|
||||
# echo "$a.$b.1.1"
|
||||
# for c in {1..254};do
|
||||
# echo "$a.$b.$c.1"
|
||||
# for d in {1..254};do
|
||||
# echo "$a.$b.$c.$d"
|
||||
# done
|
||||
# done
|
||||
# done
|
||||
#done
|
||||
|
||||
for a in {1..254};do
|
||||
echo "10.10.$a.1" >> IPList.txt # Saving to file
|
||||
for b in {1..254};do
|
||||
echo "10.10.$a.$b" >> IPList.txt
|
||||
done
|
||||
done
|
||||
Reference in New Issue
Block a user