Linux server1.hosting4iran.com 4.18.0-553.123.2.el8_10.x86_64 #1 SMP Thu May 7 15:28:41 EDT 2026 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.102
Domains : 326 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
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 ;