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.217.89.130
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 /
jssu /
custom_js /
[ HOME SHELL ]
Name
Size
Permission
Action
OnloadModule.js
639
B
-rwxr-xr-x
PasswordPopup.js
1.04
KB
-rwxr-xr-x
PreMultipleSaveValidation.js
306
B
-rwxr-xr-x
PreSaveModuleValidation.js
362
B
-rwxr-xr-x
batch_setup.js
6.82
KB
-rwxr-xr-x
dash_board.js
616
B
-rwxr-xr-x
deviation_report.js
1013
B
-rwxr-xr-x
download_upload_mannual.js
1.96
KB
-rwxr-xr-x
evaluation.js
15.82
KB
-rwxr-xr-x
evaluationreport.js
699
B
-rwxr-xr-x
freeze_marks.js
3
KB
-rwxr-xr-x
gandhiGridValidation.js
310
B
-rwxr-xr-x
include_js.js
5
B
-rwxr-xr-x
marks_deviation_report.js
1.03
KB
-rwxr-xr-x
month_year.js
1.52
KB
-rwxr-xr-x
postSaveSchemaGroupDetails.js
265
B
-rwxr-xr-x
practical_entry_freezing.js
9.44
KB
-rwxr-xr-x
practical_marks.js
6.83
KB
-rwxr-xr-x
practical_report_popups.js
1.54
KB
-rwxr-xr-x
preCustomGridEditValidation.js
361
B
-rwxr-xr-x
report_setup.js
20.52
KB
-rwxr-xr-x
report_setup_popup.js
4.58
KB
-rwxr-xr-x
revaluation_report.js
488
B
-rwxr-xr-x
user_report.js
5.21
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : month_year.js
function PopulateMonthYear(year_id,month_id) { $.ajax({ type: "POST", async:false, url: $host_url+"getMonthYear", success: function PopulateMonthYearResponce($responce) { $responce = eval('(' + $responce + ')'); if( $responce.error_code=='0') { document.getElementById(year_id).options.length=0; $op = new Option('Select One', '0'); $op.id='0'; document.getElementById(year_id).options.add($op); for($i=0;$i < $responce.data['year'].length;$i++) { $op = new Option($responce.data['year'][$i]['year'], $responce.data['year'][$i]['internal_code']); $op.id=$responce.data['year'][$i]['internal_code'];//specifying the id for options document.getElementById(year_id).options.add($op); } document.getElementById(month_id).options.length=0; $op = new Option('Select One', '0'); $op.id='0'; document.getElementById(month_id).options.add($op); for($i=0;$i < $responce.data['month'].length;$i++) { $op = new Option($responce.data['month'][$i]['month_name'], $responce.data['month'][$i]['internal_code']); $op.id=$responce.data['month'][$i]['internal_code'];//specifying the id for options document.getElementById(month_id).options.add($op); } $("#"+year_id).val($responce.data['current_year']); $("#"+month_id).val($responce.data['current_month']); } } }); }
Close