Scan a IPv4 range for a certain port
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wwmap/src/ipv4.rs

42 lines
922 B

use anyhow::{Result, anyhow};
use convert_base::Convert;
2 years ago
use crate::util;
/*
Algorithm: O(n)
let i = 0 .. u32:max_value()
# Convert each i to base 256 and we get all the ipv4 addresses
# This is waaaay better than a stupid loop
*/
#[derive(Debug)]
2 years ago
pub struct IPv4 {
pub id: u64,
pub ip: Vec<u16>
}
impl IPv4 {
pub fn new(id: u64) -> Self {
let mut base = Convert::new(10, 256);
2 years ago
let id_vec = util::number_to_vec(id); // push all digits into a vec
let ip = base.convert::<u8, u16>(&id_vec);
Self { id, ip }
}
}
2 years ago
pub fn get_all(blacklist: Option<Vec<[u8; 4]>>) -> Result<Vec<[u8; 4]>> {
let blacklist = blacklist.unwrap_or(Vec::new());
let ips: Vec<u32> = (0..u32::max_value()).collect(); // 32 bit max value is the last IP
//if combos.len() <= 0 {
Err(anyhow!("Unable to generate IPv4 permutations"))
// } else {
// Ok(combos)
// }
}