shell bypass 403
(function ($) { "use strict"; $('body').on('click', '.js-show-description', function (e) { e.preventDefault(); var message = $(this).parent().find('.report-description').val(); var reason = $(this).parent().find('.report-reason').val(); var $modal = $('#reportMessage'); $modal.find('.js-reason span').html(reason); $modal.find('.js-description p').html(message); $modal.modal('show'); }); })(jQuery);