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 | : 52.14.49.59
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 /
kus /
parikshamitra /
admin /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
MainPage.js
3.81
KB
-rwxr-xr-x
MainPage_31012018.js
2.55
KB
-rwxr-xr-x
admin.js
15.51
KB
-rwxr-xr-x
appForm.js
13.49
KB
-rwxr-xr-x
appForm_old_13082018.js
13.43
KB
-rwxr-xr-x
appStatus.js
4.43
KB
-rwxr-xr-x
appStatus_31012018.js
4.09
KB
-rwxr-xr-x
control.js
18.43
KB
-rwxr-xr-x
demo.js
3.32
KB
-rwxr-xr-x
form_submit.js
1.3
KB
-rwxr-xr-x
helpers.js
576
B
-rwxr-xr-x
login.js
2.19
KB
-rwxr-xr-x
login_31012018.js
1.15
KB
-rwxr-xr-x
script.js
3
B
-rwxr-xr-x
validate.js
10.64
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MainPage.js
var $host_url="http://"+window.location.host+"/"+window.location.pathname.split('/')[1]+"/"+window.location.pathname.split('/')[2]+"/"+window.location.pathname.split('/')[3]+"/app.php?a="; function loadMasters() { var crmode = getCookie("curuniv"); $('#user').show(); $('#assigned').show(); $('#save').show(); if(getCookie("username") != 'pmadmin') { $('#user').hide(); $('#assigned').hide(); $('#save').hide(); } $("#masuser").html(getCookie("username")); if(trim(crmode) != '') { var urlarr = window.location.pathname.split('/'); var $url="http://"+window.location.host+"/"; $hoststr = ''; for(var j=1;j<urlarr.length-1;j++) { $hoststr += window.location.pathname.split('/')[j]+"/"; } $host_url = $url+$hoststr+"app.php?cdb="+crmode+"&a="; } $is_logged_user=isLoggedIn(); if($is_logged_user==0) { loadappstatus(); } else { alert('Please Login'); window.location.href="index.html"; } } function isLoggedIn(){ var logedin; $.ajax({ type: "POST", async: false, url: $host_url+"loggedinvalidate", success: function isLoggedInResponce(responce){ responce = eval('(' + responce + ')'); logedin = responce.error_code; } }); return logedin; } function logout() { $.ajax({ type: "POST", async: false, url: $host_url+"logout", }); window.location.href="index.html"; } function loadappform(){ $('#loadtab').load('appForm.html'); $.ajax({ type: "POST", url:$host_url+'getcmsdropdownmenuvalues', success: function GetCMSDropDownMenuValuesResponce(responce) { responce = eval('(' + responce + ')'); var serv_arr = responce.data['serv_type']; var serv_title = ''; FillDropdownValues(serv_arr,'S2',serv_title); var category = responce.data['category']; var cat_title = ''; FillDropdownValues(category,'formcategory',cat_title); var pay_arr = responce.data['pay_type']; var pay_title = ''; FillDropdownValues(pay_arr,'S3',pay_title); } }); } function showStudentDetails($responce) { $responce = eval('('+$responce+')'); $( "#idModal2" ).empty(); $("#idModal2").append($responce.data['html']); $('#idModal1').modal(); } function loadappstatus(){ $('#loadtab').load('appStatus.html'); $.ajax({ type: "POST", url:$host_url+'getcmsdropdownmenuvalues', success: function GetCMSDropDownMenuValuesResponce(responce) { responce = eval('(' + responce + ')'); var serv_arr = responce.data['serv_type']; var serv_title = ''; FillDropdownValues(serv_arr,'S4',serv_title); } }); } function loadCreateUser() { $('#loadtab').load('createUser.html'); } function createUser() { var usrname = $('#usrname').val(); var password = $("#password").val(); if(usrname=='') { alert("Fill user Name"); return; } if(password=='') { alert("Fill password"); return; } var datastring = "&usrname="+usrname+"&password="+encodeURIComponent(password); //alert(datastring); $.ajax({ type: "POST", url: $host_url+"createUser", data:datastring, success: function($responce) { $responce = eval('('+$responce+')'); if($responce.status == 'Success') { alert("user created successfully"); } else { alert("Error While creting user"); } } }); } function FillDropdownValues(arr,ele_name,def_title) { document.getElementById(ele_name).options.length=0; var op = new Option(' Select '+def_title, '#'); op.id='999'; document.getElementById(ele_name).options.add(op); if(ele_name == 'S4') { var op1 = new Option(' All '+def_title, 'all'); op1.id='00'; op1.selected = 'selected'; document.getElementById(ele_name).options.add(op1); } jQuery.each(arr, function(k, v) { var op = new Option(v['val'], v['int_code']); op.id=v['int_code']; document.getElementById(ele_name).options.add(op); }); } function loadprintcor(){ $('#loadtab').load('printCor.html'); }
Close