Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.22.240.107 | Time @ Server : 19 Oct 2024 08:27:40
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/lib/web/jquery/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/lib/web/jquery/jquery.parsequery.js

/** * Copyright (c) 2010 Conrad Irwin <conrad@rapportive.com> MIT license. * Based loosely on original: Copyright (c) 2008 mkmanning MIT license. * * Parses CGI query strings into javascript objects. * * See the README for details. **/ /*jshint jquery:true */ /*global window:true */ define([ "jquery" ], function($){ $.parseQuery = function(options) { var config = {query: window.location.search || ""}, params = {}; if (typeof options === 'string') { options = {query: options}; } $.extend(config, $.parseQuery, options); config.query = config.query.replace(/^\?/, ''); $.each(config.query.split(config.separator), function(i, param) { var pair = param.split('='), key = config.decode(pair.shift(), null).toString(), value = config.decode(pair.length ? pair.join('=') : null, key); if (config.array_keys(key)) { params[key] = params[key] || []; params[key].push(value); } else { params[key] = value; } }); return params; }; $.parseQuery.decode = $.parseQuery.default_decode = function(string) { return decodeURIComponent((string || "").replace('+', ' ')); }; $.parseQuery.array_keys = function() { return false; }; $.parseQuery.separator = "&"; });