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.147.52.243
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 /
student /
reva /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
app.php
416
B
-rwxr-xr-x
candidate2_list.js
32.56
KB
-rwxr-xr-x
candidate4_list.js
29.16
KB
-rwxr-xr-x
candidate5_list.js
31.63
KB
-rwxr-xr-x
candidate_list.js
38.68
KB
-rwxr-xr-x
candidate_list08112016.js
34.27
KB
-rwxr-xr-x
candidate_list16112016.js
34.23
KB
-rwxr-xr-x
candidate_list22.js
34.95
KB
-rwxr-xr-x
candidate_list27092016.js
34.17
KB
-rwxr-xr-x
candidate_list_07032017.js
34.64
KB
-rwxr-xr-x
candidate_list_08052015.js
21.12
KB
-rwxr-xr-x
candidate_list_11042015.js
20.41
KB
-rwxr-xr-x
candidate_list_24032015.js
20.41
KB
-rwxr-xr-x
candidate_list_arun.js
33.78
KB
-rwxr-xr-x
candidate_list_before_paygate....
19.74
KB
-rwxr-xr-x
candidate_list_before_postoffi...
19.03
KB
-rwxr-xr-x
candidate_list_mohan.js
34.19
KB
-rwxr-xr-x
candidate_list_old.js
38.11
KB
-rwxr-xr-x
candidateod_list.js
23.48
KB
-rwxr-xr-x
curve-min.js
8.21
KB
-rwxr-xr-x
form_submit.js
1.3
KB
-rwxr-xr-x
jquery-1.8.3.js
259.82
KB
-rwxr-xr-x
jquery-ui-1.7.2.custom.min.js
188.23
KB
-rwxr-xr-x
jquery.corner.js
10.97
KB
-rwxr-xr-x
jscript.js
7.59
KB
-rwxr-xr-x
jscript1.js
6.91
KB
-rwxr-xr-x
jscript__before_paygate.js
5.55
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jscript1.js
var path_name=window.location.pathname; var funivcode= getCookie("univcode"); alert(funivcode); path_name=path_name.replace("result.php",""); path_name=path_name.replace("index.php",""); path_name=path_name.replace("student.php",""); path_name=path_name.replace("payment_gate_way_responce.php",""); var $host_url="http://"+window.location.host+"/"+path_name+"/app.php?a="; $g_dropdown_data=''; $g_edit_app_code=0; function GetUrlParameters() { var url_object=new Object(); var data_set=window.location.href.split("?"); if(data_set.length>1) { var params_set=data_set[1].split("&"); for(i=0;i<params_set.length;i++) { var pv=params_set[i]; var pvv=pv.split("="); url_object[pvv[0]]=pvv[1]; } } return url_object; } function date_format($str) { if(trim($str)=="" || $str=="undefined") $date="0000-00-00"; else { var indx=$str.indexOf("/"); if(indx==-1) return $str; else { $date=$str.split('/'); return($date[2] +'-'+$date[1]+'-'+$date[0]); } } } function home() { window.location.href="index.php"; } function PopulateCategoryList() { $.ajax({ type: "POST", async:false, url: $host_url+"PopulateCategoryList", success: PopulateCategoryListResponce }); } function PopulateCategoryListResponce(responce) { responce = eval('(' + responce + ')'); document.getElementById("category").options.length = 0; document.getElementById("FCONSTYPE").options.length = 0; var category=responce.data['category']; var mess_data=responce.data['mess_data']; // FUNIVCODE var funivcode = responce.data['FUNIVCODE']; setCookie("funivcode",funivcode,1); var FCONSTYPE=responce.data['FCONSTYPE']; for($i=0;$i < category.length;$i++) { $op = new Option(category[$i]['value'], category[$i]['internal_code']); $op.id=category[$i]['internal_code'];//specifying the id for options document.getElementById("category").options.add($op); } //var funivcode=; for($i=0;$i < FCONSTYPE.length;$i++) { $op = new Option(FCONSTYPE[$i]['value'], FCONSTYPE[$i]['internal_code']); $op.id=FCONSTYPE[$i]['internal_code'];//specifying the id for options document.getElementById("FCONSTYPE").options.add($op); } $("#main_message_board").html(mess_data); } function ValidateRegNo() { var reg_no=trim($("#reg_no").val()); var category=$("#category").val(); var FCONSTYPE=$("#FCONSTYPE").val(); if(empty(reg_no)) { alert("Register number should be entered"); return false; } window.location.href="student.php?r="+reg_no+"&c="+category+"&li="+FCONSTYPE; } //######################################################## function DisplayApplications() { alert(getcookie('funivcode')); url_object=GetUrlParameters(); var r=url_object['r']; $.ajax({ type: "POST", async:false, data:"r="+r, url: $host_url+"DisplayApplications", success: DisplayApplicationsResponce }); } function DisplayApplicationsResponce(responce) { responce = eval('(' + responce + ')'); var html=responce.data['html']; if(responce.error_code==0) { var student_info=""; if(trim($("#student_info").html())!='undefined' && !empty($("#student_info").html())) { student_info='<table width="100%" align="center" class="result_table_header">'+$("#student_info").html()+'</table><br><br>'; } $("#applications").html(student_info+html); } else { } } function trim($str) { return jQuery.trim($str); } function empty (mixed_var) { var key; if (mixed_var === "" || mixed_var === 0 || mixed_var === "0" || mixed_var === null || mixed_var === false || typeof mixed_var === 'undefined' ){ return true; } if (typeof mixed_var == 'object') { for (key in mixed_var) { return false; } return true; } return false; } function in_array(needle, haystack, argStrict) { var key = '', strict = !!argStrict; if (strict) { for (key in haystack) { if (haystack[key] === needle) { return true; } } } else { for (key in haystack) { if (haystack[key] == needle) { return true; } } } return false; } //downloadFileFromServer function DownLoadUpload() { $('#tabs').load("src/download_upload.html"); } function downloadFileFromServer() { if( trim(document.getElementById('download_upload_path').value) == '' ) { alert('Please Enter the Path.'); document.getElementById('download_upload_path').focus(); return; } else { window.location.href=$host_url+"downloadFileFromServer&download_file_path="+$("#download_upload_path").val(); } } function UploadFileToServer() { if( trim(document.getElementById('upload_to_server_file_name').value) == '' ) { alert('Please Enter the File Path.'); document.getElementById('upload_to_server_file_name').focus(); return; } else { ext = document.getElementById('upload_to_server_file_name').value; filepath = ext; ext = ext.substring(ext.length-3,ext.length); ext = ext.toLowerCase(); if(ext != "") { document.getElementById('form_upload_download_details').action = $host_url+"UploadFileToServer&filepath="+filepath+"&storage_path="+$("#download_upload_file_path").val(); document.getElementById('form_upload_download_details').target='_new'; // document.getElementById('form_module_details_upload').target='report_display'; document.getElementById('form_upload_download_details').submit(); } else { alert("Please select a File"); } } } function ValidateStudentMobileNo() { var FMOBILE=$("#FMOBILE").val(); if(empty(FMOBILE)) { alert(FMOBILE); return false; } url_object=GetUrlParameters(); var r=url_object['r']; var e=url_object['e']; $.ajax({ type: "POST", async:false, data:"r="+r+"&e="+e+"&FMOBILE="+FMOBILE, url: $host_url+"ValidateStudentMobileNo", success: ValidateStudentMobileNoResponce }); } function MakeOnlinePayment(app_no) { window.location.href="payment_gateway.php?productinfo="+app_no; } function ValidateStudentMobileNoResponce(responce) { responce = eval('(' + responce + ')'); if(responce.error_code==0) { DisplayRevalutionApplications(); } else { alert("Invalid Mobile No"); $("#your_app_div").html(""); } } function setCookie(c_name,value,expiredays) { var exdate=new Date() exdate.setDate(exdate.getDate()+expiredays) document.cookie=c_name+ "=" +escape(value)+ ((expiredays==null) ? "" : ";expires="+exdate.toGMTString()) } function getCookie(c_name) { if (document.cookie.length>0) { c_start=document.cookie.indexOf(c_name + "=") if (c_start!=-1) { c_start=c_start + c_name.length+1 c_end=document.cookie.indexOf(";",c_start) if (c_end==-1) c_end=document.cookie.length return unescape(document.cookie.substring(c_start,c_end)) } } return ""; }
Close