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 | : 18.188.190.212
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 /
cuk /
orms_wait /
[ HOME SHELL ]
Name
Size
Permission
Action
admin
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
default
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
html_modules
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
js_old
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
src_old
[ DIR ]
drwxr-xr-x
student_photos
[ DIR ]
drwxrwxrwx
tcpdf
[ DIR ]
drwxr-xr-x
uploads
[ DIR ]
drwxrwxrwx
API Teaching Appln.doc
99.5
KB
-rwxr-xr-x
API Teaching Appln1.doc
94
KB
-rwxr-xr-x
General Information No.18.2015...
116.35
KB
-rwxr-xr-x
TEACHING - APPLICATION FORM.do...
1.53
MB
-rwxr-xr-x
TEACHING - APPLICATION FORM.pd...
1.02
MB
-rwxr-xr-x
Thumbs.db
20
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
cconfig.php
1.46
KB
-rwxr-xr-x
cconfig2.php
741
B
-rwxr-xr-x
cconfig222.php
1.08
KB
-rwxr-xr-x
cukdegn.csv
2.84
KB
-rwxr-xr-x
home-copy.html
68.5
KB
-rwxr-xr-x
home.html
8.13
KB
-rwxr-xr-x
home.js
27.29
KB
-rwxr-xr-x
home_25102017.html
5.01
KB
-rwxr-xr-x
home_30082017.html
61.38
KB
-rwxr-xr-x
home__arun.html
63.56
KB
-rwxr-xr-x
home_sand.html
67.5
KB
-rwxr-xr-x
homearun.html
43.57
KB
-rwxr-xr-x
homeold.html
56.2
KB
-rwxr-xr-x
index.html
11.32
KB
-rwxr-xr-x
index.html_21000
0
B
-rwxr-xr-x
index22.html
5.62
KB
-rwxr-xr-x
index25082016.html
3.11
KB
-rwxr-xr-x
index_16092017.html
5.55
KB
-rwxr-xr-x
index_22.html
1.35
KB
-rwxr-xr-x
index_arun.html
4.09
KB
-rwxr-xr-x
index_old.html
5.66
KB
-rwxr-xr-x
main_page.html
5.37
KB
-rwxr-xr-x
main_page_09092017_befirechang...
5.32
KB
-rwxr-xr-x
orms.sql
26.24
KB
-rwxr-xr-x
payment_gate_way_responce.php
5.89
KB
-rwxr-xr-x
payment_gateway.php
8.2
KB
-rwxr-xr-x
post.php
7.45
KB
-rwxr-xr-x
registration.html
2.65
KB
-rwxr-xr-x
script.js
1.02
KB
-rwxr-xr-x
sendGridMail.php
1.29
KB
-rwxr-xr-x
style.css
3.2
KB
-rwxr-xr-x
upload_file.php
604
B
-rwxr-xr-x
upload_file10.php
604
B
-rwxr-xr-x
upload_file11.php
604
B
-rwxr-xr-x
upload_file12.php
604
B
-rwxr-xr-x
upload_file13.php
604
B
-rwxr-xr-x
upload_file14.php
604
B
-rwxr-xr-x
upload_file15.php
604
B
-rwxr-xr-x
upload_file16.php
604
B
-rwxr-xr-x
upload_file17.php
604
B
-rwxr-xr-x
upload_file18.php
604
B
-rwxr-xr-x
upload_file19.php
604
B
-rwxr-xr-x
upload_file2.php
604
B
-rwxr-xr-x
upload_file20.php
604
B
-rwxr-xr-x
upload_file3.php
604
B
-rwxr-xr-x
upload_file4.php
604
B
-rwxr-xr-x
upload_file5.php
604
B
-rwxr-xr-x
upload_file6.php
604
B
-rwxr-xr-x
upload_file7.php
604
B
-rwxr-xr-x
upload_file8.php
604
B
-rwxr-xr-x
upload_file9.php
604
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sendGridMail.php
<?php error_reporting(E_ALL); /*$json_string = array( 'to' => array( 'example1@sendgrid.com', 'example2@sendgrid.com' ), 'category' => 'test_category' ); */ function sendGridMail($to, $subject, $html) { $url = 'https://api.sendgrid.com/'; $token = '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'; $params = array( 'to' => $to, 'subject' => $subject, 'html' => $html, 'from' => 'recruitment@cuk.ac.in', ); $request = $url . 'api/mail.send.json'; $headr = array(); $headr[] = 'Authorization: Bearer ' . $token; // Generate curl request $session = curl_init($request); // Tell curl to use HTTP POST curl_setopt($session, CURLOPT_POST, true); // Tell curl that this is the body of the POST curl_setopt($session, CURLOPT_POSTFIELDS, $params); // Tell curl not to return headers, but do return the response curl_setopt($session, CURLOPT_HEADER, false); // Tell PHP not to use SSLv3 (instead opting for TLS) //curl_setopt($session, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2); curl_setopt($session, CURLOPT_RETURNTRANSFER, true); curl_setopt($session, CURLOPT_HTTPHEADER, $headr); // obtain response $response = curl_exec($session); curl_close($session); // print everything out return $response; }
Close