HEX
Server: Apache
System: Linux viper.innovativeinternet.net 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
User: thetradingroom (1095)
PHP: 8.3.25
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //ibin/netscapemail
#!/usr/bin/perl
$count = 0;


#print "mkdir ".$location."/".$date."\n";
#system("mkdir ".$location."/".$date."\n");


while($line = <STDIN>) {
  chomp($line);
  #print "cp ".$line ." ".$location."/".$date."\n";
#system("removeme apache_log.1 ".$line. " \n");
#  system("cp ".$line ." ".$location."/".$date."\n");
#print("cd /home/".$line."/www\n");
#print("ln -s /var/log/httpd/".$line." stats\n");


next if $line =~ /xmozilla/;


if ( $line =~ /mail:/) {
# 	$line =~ s/(\w+)/\u\L$1/g; # upper/lower case
 	$line =~ s/(\w+)/\L$1/g; # upper/lower case
	$line =~ s|mail: ||;
	$line =~ s|.net$|.net,|;
	$line =~ s|.com$|.com,|;
	$line =~ s|.org$|.org,|;
	$line =~ s|.edu$|.edu,|;
	$line =~ s|.us$|.us,|;
	

	$count++;
	if ($count ==49 ) {
		print ("\n\n");
		$count = 0;
	}


	print ($line."\n");
}

}
exit;


__END__


 if(-e "/path/to/file.txt") { true } else { false }
if(!(-e "/path/to/file.txt")) { does not exists; }