shell bypass 403

UnknownSec Shell


name : modal-add-role.js
// Add new role Modal JS
//------------------------------------------------------------------
(function () {
  var addRoleForm = $('#addRoleForm');

  // add role form validation
  if (addRoleForm.length) {
    addRoleForm.validate({
      rules: {
        modalRoleName: {
          required: true
        }
      }
    });
  }

  // reset form on modal hidden
  $('.modal').on('hidden.bs.modal', function () {
    $(this).find('form')[0].reset();
  });

  // Select All checkbox click
  const selectAll = document.querySelector('#selectAll'),
    checkboxList = document.querySelectorAll('[type="checkbox"]');
  selectAll.addEventListener('change', t => {
    checkboxList.forEach(e => {
      e.checked = t.target.checked;
    });
  });
})();

© 2025 UnknownSec
afwwrfwafr45458465
Password