Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
apps /
perl /
3 /
Delete
Unzip
Name
Size
Permission
Date
Action
install.php
323
B
-rwxr-xr-x
2021-12-24 10:19
perl-fcgi
707
B
-rwxr-xr-x
2021-12-24 10:19
remove.php
130
B
-rwxr-xr-x
2021-12-24 10:19
Save
Rename
#!/bin/bash ### BEGIN INIT INFO # Provides: perl-fcgi # Required-Start: networking # Required-Stop: networking # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start the Perl FastCGI daemon. ### END INIT INFO PERL_SCRIPT=/usr/local/apps/perl/bin/fastcgi-wrapper.pl FASTCGI_USER=nobody RETVAL=0 case "$1" in start) su - $FASTCGI_USER -c $PERL_SCRIPT & RETVAL=$? ;; stop) killall -9 fastcgi-wrapper.pl RETVAL=$? ;; restart) killall -9 fastcgi-wrapper.pl su - $FASTCGI_USER -c $PERL_SCRIPT & RETVAL=$? ;; *) echo "Usage: perl-fcgi {start|stop|restart}" exit 1 ;; esac exit $RETVAL