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 NewSubst ; use Filter::Util::Call ; use Carp ; use strict ; use warnings ; sub filter { my ($self) = @_ ; my ($status) ; if (($status = filter_read()) > 0) { $self->{Found} = 1 if $self->{Found} == 0 and /$self->{Start}/ ; if ($self->{Found}) { s/$self->{From}/$self->{To}/ ; filter_del() if /$self->{Stop}/ ; } } $status ; } sub import { my ($self, @args) = @_ ; croak("usage: use Subst qw(start stop from to)") unless @args == 4 ; filter_add( { Start => $args[0], Stop => $args[1], From => $args[2], To => $args[3], Found => 0 } ) ; } 1 ;