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/zero-erase.pl
#!/usr/bin/perl
$count = 0;
$count_skip = 0;

while($line = <STDIN>) {
	chomp($line);



  (

        $rights,
        $prop,
        $uid,
        $gid,
        $size,
        $day,
        $month,
        $date,
        $time,
        $year,
        $user_name

  ) = split(" ", $line);


# Remove User Files w/0 size

next if $user_name eq " ";
next if $user_name eq "";

$count_skip++ if $size != "0";
next if $size != "0";
next if $user_name eq "zero-erase.txt";

$count++;
print "rm -rf " . $user_name . "\n";

system( "rm -rf " . $user_name ."\n");

}

print "\n\nTotal Removed: " . $count . "\n";
print "Total Skipped: " . $count_skip . "\n";

exit;