shell bypass 403

UnknownSec Shell


name : advertising_modal.min.js
/******/ (function(modules) { // webpackBootstrap
/******/ 	// The module cache
/******/ 	var installedModules = {};
/******/
/******/ 	// The require function
/******/ 	function __webpack_require__(moduleId) {
/******/
/******/ 		// Check if module is in cache
/******/ 		if(installedModules[moduleId]) {
/******/ 			return installedModules[moduleId].exports;
/******/ 		}
/******/ 		// Create a new module (and put it into the cache)
/******/ 		var module = installedModules[moduleId] = {
/******/ 			i: moduleId,
/******/ 			l: false,
/******/ 			exports: {}
/******/ 		};
/******/
/******/ 		// Execute the module function
/******/ 		modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ 		// Flag the module as loaded
/******/ 		module.l = true;
/******/
/******/ 		// Return the exports of the module
/******/ 		return module.exports;
/******/ 	}
/******/
/******/
/******/ 	// expose the modules object (__webpack_modules__)
/******/ 	__webpack_require__.m = modules;
/******/
/******/ 	// expose the module cache
/******/ 	__webpack_require__.c = installedModules;
/******/
/******/ 	// define getter function for harmony exports
/******/ 	__webpack_require__.d = function(exports, name, getter) {
/******/ 		if(!__webpack_require__.o(exports, name)) {
/******/ 			Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ 		}
/******/ 	};
/******/
/******/ 	// define __esModule on exports
/******/ 	__webpack_require__.r = function(exports) {
/******/ 		if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ 			Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ 		}
/******/ 		Object.defineProperty(exports, '__esModule', { value: true });
/******/ 	};
/******/
/******/ 	// create a fake namespace object
/******/ 	// mode & 1: value is a module id, require it
/******/ 	// mode & 2: merge all properties of value into the ns
/******/ 	// mode & 4: return value when already ns object
/******/ 	// mode & 8|1: behave like require
/******/ 	__webpack_require__.t = function(value, mode) {
/******/ 		if(mode & 1) value = __webpack_require__(value);
/******/ 		if(mode & 8) return value;
/******/ 		if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ 		var ns = Object.create(null);
/******/ 		__webpack_require__.r(ns);
/******/ 		Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ 		if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ 		return ns;
/******/ 	};
/******/
/******/ 	// getDefaultExport function for compatibility with non-harmony modules
/******/ 	__webpack_require__.n = function(module) {
/******/ 		var getter = module && module.__esModule ?
/******/ 			function getDefault() { return module['default']; } :
/******/ 			function getModuleExports() { return module; };
/******/ 		__webpack_require__.d(getter, 'a', getter);
/******/ 		return getter;
/******/ 	};
/******/
/******/ 	// Object.prototype.hasOwnProperty.call
/******/ 	__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ 	// __webpack_public_path__
/******/ 	__webpack_require__.p = "/";
/******/
/******/
/******/ 	// Load entry module and return exports
/******/ 	return __webpack_require__(__webpack_require__.s = 42);
/******/ })
/************************************************************************/
/******/ ({

/***/ "./resources/js/admin/advertising_modal.js":
/*!*************************************************!*\
  !*** ./resources/js/admin/advertising_modal.js ***!
  \*************************************************/
/*! no static exports found */
/***/ (function(module, exports) {

(function ($) {
  "use strict";

  function makeHtml(title, image, description, button1, button2) {
    return "<div id=\"advertisingModalSettings\">\n        <div class=\"d-flex align-items-center justify-content-between\">\n            <h3 class=\"section-title font-20 text-dark-blue mb-10\">".concat(title !== null && title !== void 0 ? title : '', "</h3>\n\n            <button type=\"button\" class=\"btn-close-advertising-modal close-swl btn-transparent d-flex\">\n                <i class=\"fa fa-times\"></i>\n            </button>\n        </div>\n\n        <div class=\"d-flex align-items-center justify-content-center\">\n            <img src=\"").concat(image !== null && image !== void 0 ? image : '', "\" class=\"img-fluid rounded-lg\" alt=\"\">\n        </div>\n\n        <p class=\"font-14 text-gray mt-20\">").concat(description !== null && description !== void 0 ? description : '', "</p>\n\n        <div class=\"row align-items-center mt-20\">\n            ").concat(button1 && button1.link && button1.title ? "<div class=\"col-6\">\n                    <a href=\"".concat(button1.link, "\" class=\"btn btn-primary btn-block\">").concat(button1.title, "</a>\n                    </div>") : '', "\n\n\n            ").concat(button2 && button2.link && button2.title ? "<div class=\"col-6\">\n                        <a href=\"".concat(button2.link, "\" class=\"btn btn-primary btn-block\">").concat(button2.title, "</a>\n                        </div>") : '', "\n        </div>\n    </div>");
  }

  $('body').on('click', '.js-preview-modal', function () {
    var title = $('input[name="value[title]"]').val();
    var image = $('input[name="value[image]"]').val();
    var description = $('textarea[name="value[description]"]').val();
    description = (description + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1<br>$2');
    var button1 = {
      link: '',
      title: ''
    };
    button1.title = $('input[name="value[button1][title]"]').val();
    button1.link = $('input[name="value[button1][link]"]').val();
    var button2 = {
      link: '',
      title: ''
    };
    button2.title = $('input[name="value[button2][title]"]').val();
    button2.link = $('input[name="value[button2][link]"]').val();
    Swal.fire({
      html: makeHtml(title, image, description, button1, button2),
      showCancelButton: false,
      showConfirmButton: false,
      customClass: {
        content: 'p-0 text-left'
      },
      width: '36rem'
    });
  });
})(jQuery);

/***/ }),

/***/ 42:
/*!*******************************************************!*\
  !*** multi ./resources/js/admin/advertising_modal.js ***!
  \*******************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {

module.exports = __webpack_require__(/*! /home/jack/projects/webinar/resources/js/admin/advertising_modal.js */"./resources/js/admin/advertising_modal.js");


/***/ })

/******/ });

© 2025 UnknownSec
Courses | Anyleson - Learning Platform
INR (₹)
India Rupee
$
United States Dollar

Courses

17 Courses
Course
How to Manage Your Virtual Team

How to Manage Your Virtual Team

in Communications
3.75
1:30 Hours
30 Jun 2021
₹59
20% Offer
Excel from Beginner to Advanced

Excel from Beginner to Advanced

in Management
4.75
1:40 Hours
20 Mar 2026
₹94.40 ₹118
Text course
Learn Python Programming

Learn Python Programming

in Web Development
5.00
0:35 Hours
29 Jun 2021
Free
Finished
Learn Linux in 5 Days

Learn Linux in 5 Days

in Web Development
4.00
7:30 Hours
10 Jul 2021
Free
Course
Become a Product Manager

Become a Product Manager

in Business Strategy
4.58
2:30 Hours
28 Jun 2021
Free

Type

More options