Whois.pl: Skirtumas tarp puslapio versijų
Jump to navigation
Jump to search
51 eilutė: | 51 eilutė: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | V2 traukia tiktai | + | V2 traukia tiktai organizacijas. |
<syntaxhighlight lang="perl"> | <syntaxhighlight lang="perl"> |
14:33, 25 vasario 2025 versija
Daro whois surašytiems į ips.txt ip adresams ir subnetams, rezultatus surašo į whois_results.csv
#!/usr/bin/perl
# sudo apt install libnet-whois-ip-perl libtext-csv-perl
use strict;
use warnings;
use Net::Whois::IP qw(whoisip_query);
use Text::CSV;
use Data::Dumper;
# Input and output files
my $input_file = "ips.txt";
my $output_file = "whois_results.csv";
# Open input file
open(my $fh, '<', $input_file) or die "Cannot open $input_file: $!";
# Open output CSV file
my $csv = Text::CSV->new({ binary => 1, eol => "\n" });
open(my $out_fh, '>', $output_file) or die "Cannot open $output_file: $!";
$csv->print($out_fh, ["IP", "Country", "Org-Name"]);
# Process each line
while (my $line = <$fh>) {
chomp $line;
# Extract IP address from CIDR notation if present
if ($line =~ m{^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)}) {
my $ip = $1;
print "Processing: $ip\n";
# Perform whois lookup
my $whois = whoisip_query($ip);
print Dumper($whois);
my $country = $whois->{Country} // "Unknown";
my $org_name = $whois->{Organization} // $whois->{org} // "Unknown";
my $person = $whois->{Person};
# Write to CSV
$csv->print($out_fh, [$line, $country, $org_name, $person]);
}
}
# Close files
close $fh;
close $out_fh;
print "Whois lookup completed. Results saved to $output_file\n";
V2 traukia tiktai organizacijas.
#!/usr/bin/perl
# sudo apt install libnet-whois-ip-perl libtext-csv-perl
use strict;
use warnings;
use Net::Whois::IP qw(whoisip_query);
use Text::CSV;
use Data::Dumper;
# Input and output files
my $input_file = "ips.txt";
my $output_file = "whois_results.csv";
# Open input file
open(my $fh, '<', $input_file) or die "Cannot open $input_file: $!";
# Open output CSV file
my $csv = Text::CSV->new({ binary => 1, eol => "\n" });
open(my $out_fh, '>', $output_file) or die "Cannot open $output_file: $!";
$csv->print($out_fh, ["IP", "Country", "Org"]);
# Function to extract organization-related fields
sub extract_org_info {
my ($whois) = @_;
my @org_fields;
foreach my $key (keys %$whois) {
next if ($key =~ /(phone|abuse|OrgTechRef)/i);
if ($key =~ /org/i) {
push @org_fields, "$key: " . ($whois->{$key} // "Unknown") if defined($whois->{$key});
}
}
return join(" ", @org_fields) || "Unknown";
}
# Process each line
while (my $line = <$fh>) {
chomp $line;
# Extract IP address from CIDR notation if present
if ($line =~ m{^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)}) {
my $ip = $1;
print "Processing: $ip\n";
# Perform whois lookup
my $whois = whoisip_query($ip);
my $country = $whois->{country} // "Unknown";
# Extract organization information
my $org_info = extract_org_info($whois);
# Write to CSV
$csv->print($out_fh, [$ip, $country, $org_info]);
}
}
# Close files
close $fh;
close $out_fh;
print "Whois lookup completed. Results saved to $output_file\n";