Linux 186-227-203-186.cprapid.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
Apache
Server IP : 186.227.203.186 & Your IP : 216.73.216.101
Domains : 154 Domain
User : pmcaxingo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
usr /
share /
doc /
perl-Filter /
examples /
method /
Delete
Unzip
Name
Size
Permission
Date
Action
Count.pm
466
B
-rw-r--r--
2015-01-21 23:06
Decompress.pm
616
B
-rw-r--r--
2015-01-21 23:06
Joe2Jim.pm
281
B
-rw-r--r--
2015-01-21 23:06
NewSubst.pm
763
B
-rw-r--r--
2015-01-21 23:06
Subst.pm
428
B
-rw-r--r--
2015-01-21 23:06
UUdecode.pm
813
B
-rw-r--r--
2015-01-21 23:06
Save
Rename
package Filter::UUdecode ; use Filter::Util::Call ; use strict ; use warnings ; our $VERSION = '1.00' ; sub import { my($self) = @_ ; my ($count) = 0 ; filter_add( \$count ) ; } sub filter { my ($self) = @_ ; my ($status) ; while (1) { return $status if ($status = filter_read() ) <= 0; chomp ; ++ $$self ; # Skip the begin line (if it is there) ($_ = ''), next if $$self == 1 and /^begin/ ; # is this the last line? if ($_ eq " " or length $_ <= 1) { $_ = '' ; # If there is an end line, skip it too return $status if ($status = filter_read() ) <= 0 ; $_ = "\n" if /^end/ ; filter_del() ; return 1 ; } # uudecode the line $_ = unpack("u", $_) ; # return the uudecoded data return $status ; } } 1 ;