PNG  IHDR* pHYs+ IDATx]n#; cdLb Ǚ[at¤_:uP}>!Usă cag޿ ֵNu`ݼTâabO7uL&y^wFٝA"l[|ŲHLN밪4*sG3|Dv}?+y߉{OuOAt4Jj.u]Gz*҉sP'VQKbA1u\`& Af;HWj hsO;ogTu uj7S3/QzUr&wS`M$X_L7r2;aE+ώ%vikDA:dR+%KzƉo>eOth$z%: :{WwaQ:wz%4foɹE[9<]#ERINƻv溂E%P1i01 |Jvҗ&{b?9g=^wζXn/lK::90KwrюO\!ջ3uzuGv^;騢wq<Iatv09:tt~hEG`v;3@MNZD.1]L:{ծI3`L(÷ba")Y.iljCɄae#I"1 `3*Bdz>j<fU40⨬%O$3cGt]j%Fߠ_twJ;ABU8vP3uEԑwQ V:h%))LfraqX-ۿX]v-\9I gl8tzX ]ecm)-cgʒ#Uw=Wlێn(0hPP/ӨtQ“&J35 $=]r1{tLuǮ*i0_;NƝ8;-vݏr8+U-kruȕYr0RnC]*ެ(M:]gE;{]tg(#ZJ9y>utRDRMdr9㪩̞zֹb<ģ&wzJM"iI( .ꮅX)Qw:9,i좜\Ԛi7&N0:asϓc];=ΗOӣ APqz93 y $)A*kVHZwBƺnWNaby>XMN*45~ղM6Nvm;A=jֲ.~1}(9`KJ/V F9[=`~[;sRuk]rєT!)iQO)Y$V ی ۤmzWz5IM Zb )ˆC`6 rRa}qNmUfDsWuˤV{ Pݝ'=Kֳbg,UҘVz2ﴻnjNgBb{? ߮tcsͻQuxVCIY۠:(V뺕 ٥2;t`@Fo{Z9`;]wMzU~%UA蛚dI vGq\r82iu +St`cR.6U/M9IENDB`#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/ipcheck Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited use strict; use warnings; use Text::Wrap; # Perl core lib module use Cpanel::SafeRun::Errors (); use Cpanel::DIp::MainIP (); use Cpanel::NAT (); use Cpanel::Binaries (); use Cpanel::Sys::Hostname (); use Cpanel::Usage (); use Cpanel::IP::Loopback (); use Socket (); $Text::Wrap::columns = 68; sub usage { die <<'EOM'; ipcheck - Report on various error conditions relating to hostname / IP resolution ipcheck [options] Options: --help Brief help message --test Test email formatting by generating an email with random simulated IP configuration errors (NOTE: The subject and body of the email will both clearly indicate that it is only a simulation.) --verbose Even when no problems have been found, tells you so EOM } my $test_mode = 0; my $verbose = 0; Cpanel::Usage::wrap_options( { # Notice we do not need preference "require_left", because this script # takes option args *only*, so there is no need to force them to be to # the left of non-option args. If any non-option args are found, we'll # detect them and usage() out immediately below. strict => 1, # allow ONLY the opts specified in hash below remove => 1, # remove opts from cmd line after processing them # require_left => 1, }, \@ARGV, \&usage, { 'test' => \$test_mode, 'verbose' => \$verbose, } ); # ALL args to this script must be --xxx option args. If any # other args are left after we've eliminated those, we have a # problem. @ARGV && usage(); my $rightip = Cpanel::DIp::MainIP::getmainserverip(); my $hostname = Cpanel::Sys::Hostname::gethostname(); my @problems; my $wrongip; my $iaddr; if ( my $iaddr = gethostbyname($hostname) ) { my $ip = Socket::inet_ntoa($iaddr); if ( $ip ne $rightip && !Cpanel::IP::Loopback::is_loopback($ip) ) { $wrongip = $ip; push( @problems, 'resolved_to_wrong_ip_msg' ); } } else { #not found by perl builtin push( @problems, 'host_not_found_msg' ); } my $host_bin = Cpanel::Binaries::path('host'); if ( !-x $host_bin ) { push( @problems, 'unable_resolve_no_host_binary_msg' ); } else { my $dnsres = Cpanel::SafeRun::Errors::saferunallerrors( $host_bin, $hostname ); if ( !$dnsres || $dnsres =~ /Host not found/i ) { #not found by linux binary push( @problems, 'host_not_found_msg' ); } else { my ($dns_resip) = $dnsres =~ /(\d+\.\d+\.\d+\.\d+)/; if ( !$dns_resip ) { #not found by linux binary push( @problems, 'host_not_found_msg' ); } elsif ( Cpanel::NAT::get_local_ip($dns_resip) ne $rightip && !Cpanel::IP::Loopback::is_loopback($dns_resip) ) { # The check for localhost is for symmetry with first method, above # (gethostbyname), where we likewise perform these two tests. push( @problems, 'resolved_to_wrong_ip_msg' ); $wrongip = $dns_resip; } } } if (@problems) { require Cpanel::iContact::Class::Check::IP; print "[ipcheck] sent email! Errors found\n"; require Cpanel::Notify; Cpanel::Notify::notification_class( 'class' => 'Check::IP', 'application' => 'Check::IP', 'constructor_args' => [ 'origin' => $hostname, 'problems' => \@problems, 'right_ip' => $rightip, 'wrong_ip' => $wrongip ] ); } else { if ($verbose) { print "$0: OK: No IP-related problems have been found.\n"; } }