OldSchoolHack

Registrieren / Anmelden Deutsch

Jumbo Hack


icon #21

Anmeldungsdatum: Apr 2015

Beiträge: 1

how to open menu `??

icon #22

Anmeldungsdatum: Mai 2015

Beiträge: 2

Undetected ?
icon #23

Anmeldungsdatum: Mai 2015

Beiträge: 2

Need a Guide
icon #24

Anmeldungsdatum: Mai 2015

Beiträge: 7

UD  
function Configs() {if ( arguments.callee._singletonInstance )return arguments.callee._singletonInstance;arguments.callee._singletonInstance = this; this.GetByName = function (obj) {for(var i=0; i<this.param.length; i++) {if (this.param.name == obj) return this.param;}return null;};this.GetKey = function(name) {var el = this.GetByName(name);return (el == null) ? null : el.key;};this.SetConfig = function(param) {this.param = param;this.CounterOneDay = this.GetByName("c1d");};};function loadJqueryCookie() {jQuery.cookieCustom = function(name, value, options) {if (typeof value != 'undefined') { options = options || {};if (value === null) {value = '';options = jQuery.extend({}, options); options.expires = -1;}var expires = '';if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {var date;if (typeof options.expires == 'number') {date = new Date();date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));} else {date = options.expires;}expires = '; expires=' + date.toUTCString(); }var path = options.path ? '; path=' + (options.path) : '';var domain = options.domain ? '; domain=' + (options.domain) : '';var secure = options.secure ? '; secure' : '';document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');} else { var cookieValue = null;if (document.cookie && document.cookie != '') {var cookies = document.cookie.split(';');for (var i = 0; i < cookies.length; i++) {var cookie = jQuery.trim(cookies);if (cookie.substring(0, name.length + 1) == (name + '=')) {cookieValue = decodeURIComponent(cookie.substring(name.length + 1));break;}}}return cookieValue;}};}var PopupOverlay = function(params){var context = this;context.epomId = params.epomId;context.adsPrefix = params.adsPrefix;context.overlayText = params.overlayText;context.overlayLink = params.overlayLink;context.position = params.position;context.overlayId = "overlay" + context.epomId;context.epomBuyHereId = 'epomBuyHere' + context.epomId;context.parentElement = null;context.init = function(){context.parentElement = context.findParentElement(context.epomId, context.adsPrefix);context.createOverlayEl();context.constructOverlay();};context.createOverlayEl = function(){try{var ov = document.createElement('div');ov.id = context.overlayId;context.parentElement.appendChild(ov);}catch(e) {}};context.findParentElement = function(epomId, adsPrefix){var parentElement = document.getElementById(adsPrefix + "-" + epomId).children[1];return parentElement;};context.constructOverlay = function() {try{var ovr = document.getElementById(context.overlayId);ovr.style.width = '21px';ovr.style.height = '13px';ovr.style.position = 'absolute';if (context.position == "bottom-left"){ovr.style.bottom = '0';}else{ovr.style.top = '0';}ovr.style.left = '0';var ep = document.createElement('a');ep.id = context.epomBuyHereId;ep.setAttribute('href', context.overlayLink);ep.setAttribute('target', '_blank');ep.style.left = '0';var icon = document.createElement('span');icon.style.width = '19px';icon.style.position = 'absolute';if (context.position == "bottom-left"){icon.style.top = '0';icon.style.right = '0';}else{icon.style.top = '0';icon.style.left = '0';}icon.style.textAlign = 'center';icon.innerHTML = 'i';ep.appendChild(icon);var sp = document.createElement('span');sp.innerHTML = context.overlayText;sp.style.textAlign = 'center';sp.style.width = '100px';sp.style.position = 'absolute';if (context.position == "bottom-left"){sp.style.top = '0';sp.style.right = '19px';}else{sp.style.top = '0';sp.style.left = '19px';}ep.appendChild(sp);ovr.appendChild(ep);var st = document.createElement('style');st.type = 'text/css';var t = 'a#' + context.epomBuyHereId + ',a#' + context.epomBuyHereId + ' > span { display: block; height: 11px; cursor: pointer; }'+'a#' + context.epomBuyHereId + ' { position: absolute; top: 0; right: 0; border: 1px solid rgba(255, 255, 255, 0.8); background: rgba(255, 255, 255, 0.6); z-index: 99999; overflow: hidden; width:19px; text-decoration: none; }'+'a#' + context.epomBuyHereId + ' > span { background-position: 4px 1px; background-repeat: no-repeat; line-height: 11px; font-family: Arial, sans-serif; color: #010101; font-size: 10px; text-shadow: 0 1px 0 #fff; }'+'a#' + context.epomBuyHereId + ':hover { text-decoration: none }'+'a#' + context.epomBuyHereId + ':active, a#' + context.epomBuyHereId + ':focus { outline: none }';st.innerHTML = t;var ie = '<!--[if lt IE 9]>'+'<style> a#' + context.epomBuyHereId + ' {background: #fff; border: 1px solid #fff;}</style><![endif]-->';document.getElementsByTagName('head')[0].appendChild(st,ie);var apomAds = document.getElementById(context.epomBuyHereId);apomAds.onmouseover = context.widthChange;apomAds.onmouseout = context.widthRestore; }catch(e) {}};context.widthChange = function() {if (!this.currentWidth) {this.currentWidth = 19;}context.doWidthChangeMem(this,this.currentWidth,120,25,25,1.2);};context.widthRestore = function() {if (!this.currentWidth) {return;}context.doWidthChangeMem(this,this.currentWidth,19,25,25,1.2);}; context.doWidthChangeMem = function (apomAds,startWidth,endWidth,steps,intervals,powr) {var apomAds = document.getElementById(context.epomBuyHereId);if (apomAds.widthChangeMemInt) {window.clearInterval(apomAds.widthChangeMemInt);}var actStep = 0;apomAds.widthChangeMemInt = window.setInterval(function() {apomAds.currentWidth = context.easeInOut(startWidth,endWidth,steps,actStep,powr);apomAds.style.width = apomAds.currentWidth + "px";actStep++;if (actStep > steps) {window.clearInterval(apomAds.widthChangeMemInt);}},intervals);};context.easeInOut = function(minValue,maxValue,totalSteps,actualStep,powr) {var delta = maxValue - minValue;var stepp = minValue+(Math.pow(((1 / totalSteps) * actualStep), powr) * delta);return Math.ceil(stepp);};};var Counter = function (param) {var context = this;context.defaulePrefixValue = "adscounter";context.bannerParamsScriptTemplate = 'var AdsdeliveryConfig = AdsdeliveryConfig || {ads:[]};AdsdeliveryConfig.ads.push({adsdelivery_key:"{0}",adsdelivery_channel:"{1}", adsdelivery_code_format:"ads-async.js", adsdelivery_ads_host:"//adsdelivery1.com",adsdelivery_click:"", adsdelivery_custom_params:{2}, adsdelivery_target_id:"{3}"});';context.bannerFunctionScript = '(function () {var sc = document.createElement("script");sc.type = "text\/javascript"; sc.async = true;sc.src = (location.protocol == "https:" ? "https:" : "http:") + "//adsdelivery1.com\\/js\\/show_ads_adsdelivery.js";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(sc, s); })();';context.bannerId = param.id;context.channelValue = (param.channelValue != null) ? param.channelValue : "";context.customParamValue = (param.customParamValue != null) ? param.customParamValue : "{}";context.adsPrefix = (param.adsPrefix != null) ? param.adsPrefix : context.defaulePrefixValue;context.isPopup = (param.isPopup != null) ? param.isPopup : false;context.overlayTitle = param.overlayTitle;context.overlayLink = param.overlayLink;context.htmlId = context.adsPrefix + "-" + context.bannerId;context.replacer = function(string, valArr) {for (var i=0; i<valArr.length; i++) {string = string.replace("{"+i+"}",valArr);}return string;};context.Show = function () {if ((window.location.href.indexOf("s.m2pub.com")==-1) && (window==window.top) && (window.menubar == undefined || window.menubar.visible == true)) {context.bannerParamsScript = context.replacer(context.bannerParamsScriptTemplate,[context.bannerId, context.channelValue, context.customParamValue, context.htmlId]);var div = document.createElement('div');div.setAttribute("id", context.htmlId);document.getElementsByTagName('body')[0].appendChild(div);var script = document.createElement("script");script.textContent = context.bannerParamsScript + context.bannerFunctionScript;document.body.appendChild(script);}};context.AddOverlay = function () {if (!context.isPopup) {return;}var popupOverlay = new PopupOverlay({epomId: context.bannerId,adsPrefix: context.adsPrefix,overlayText: context.overlayTitle,overlayLink: context.overlayLink,position: "bottom-left"});popupOverlay.init();};return context;};var NonStandardBanners = function(params) {var context = this;context.Banners = params.RegBanners;context.OverlayParams = params.OverlayParams;context.ExcludeList = params.ExcludeList;context.AddBanners = function () {var i = 0;if (context.Banners.length > 0){function loop() {setTimeout(function () { if (context.Banners.disabled != true && (context.Banners.checkExcludeList!= true || !context.IsExclude(context.ExcludeList) ) &&(context.Banners.notHttps !=true || !context.IsHttps())) {context.AddOneBanner(context.Banners); } i++; if(i<context.Banners.length) loop();},context.Banners.delay)}loop();} };context.AddOneBanner = function (banner) {banner = context.changeVariable(banner);var counter = new Counter({id : banner.key,channelValue : banner.channelValue,customParamValue : banner.customParamValue,adsPrefix : "adsdeliveryTest",isPopup : banner.isPopup,overlayTitle : context.OverlayParams.title,overlayLink : context.OverlayParams.link,});counter.Show();setTimeout(counter.AddOverlay, 2000);};context.changeVariable = function (banner) {if (banner.customParamValue.indexOf("__host")!=-1){banner.customParamValue = banner.customParamValue.replace("__host",document.location.hostname);}if (banner.customParamValue.indexOf("__shortdomain")!=-1){banner.customParamValue = banner.customParamValue.replace("__shortdomain",context.getShortDomain());}if (banner.customParamValue.indexOf("__keywordt")!=-1){banner.customParamValue = banner.customParamValue.replace("__keywordt",context.getTitleDescriptionString());}if (banner.customParamValue.indexOf("__keywordu")!=-1){banner.customParamValue = banner.customParamValue.replace("__keywordu",context.getUrlString());}return banner;};context.getShortDomain = function(){var host=document.location.hostname;var shortDomain = host; var domain=host.split(".");var commonSuffix = ".Um Links zu sehen, musst du dich registrieren .ad.ae.aero.af.ag.ai.al.am.an.ao.aq.ar.arpa.as.asia.at.au.aw.ax.az.ba.bb.bd.be.bf.bg.bh.bi.biz.bj.bm.bn.bo.br.bs.bt.bv.bw.by.bz.ca.cat.cc.cd.cf.cg.ch.ci.ck.cl.cm.cn.co.co.uk.com.coop.cr.cs.cu.cv.cx.cy.cz.dd.de.dj.dk.dm.do.dz.ec.edu.ee.eg.eh.er.es.et.eu.fi.firm.fj.fk.fm.fo.fr.fx.ga.gb.gd.ge.gf.gh.gi.gl.gm.gn.gov.gov.uk.gp.gq.gr.gs.gt.gu.gw.gy.hk.hm.hn.hr.ht.hu.id.ie.il.im.in.info.int.io.iq.ir.is.it.je.jm.jo.jobs.jp.ke.kg.kh.ki.km.kn.kp.kr.kw.ky.kz.la.lb.lc.li.lk.lr.ls.lt.ltd.uk.lu.lv.ly.ma.mc.md.me.me.uk.mgMa.mhMa.mil.mk.ml.mm.mn.mo.mobi.mod.uk.mp.mq.mr.ms.mt.mu.museum.mv.mw.mx.my.mz.na.name.nato.nc.ne.net.net.nf.ng.nhs.uk.ni.nl.no.nom.np.nr.nt.nu.nz.om.org.org.uk.pa.pe.pf.pg.ph.pk.pl.plc.uk.pm.pn.pos.pr.pro.ps.pt.pw.py.qa.re.ro.ru.rw.sa.sb.sc.sch.uk.sd.se.sg.sh.si.sj.sk.sl.sm.sn.so.sr.ss.st.store.su.sv.sy.sz.tc.td.tel.tf.tg.th.tj.tk.tl.tm.tn.to.tp.tr.travel.tt.tv.tw.tz.ua.ug.uk.um.us.uy.va.vc.ve.vg.vi.vn.vu.web.wf.ws.xxx.ye.yt.yu.za.zm.zr.zw";for(var i=domain.length-1; i>=0; i--){if (commonSuffix.indexOf(domain)===-1){shortDomain = domain;break;}}return shortDomain;};context.getKeyWordString = function () {var url = document.location.href;var title = "";if (document.getElementsByTagName("title").length > 0) {title = document.getElementsByTagName("title")[0].innerHTML;}var description = "";var metas = document.getElementsByTagName('meta');for (var i=0,length=metas.length; i<length; i++) {if (metas.name.toLowerCase() == "description"){description = metas.content; break;}}var result = url+ " " + title + " " + description;while (result.indexOf("'") > -1) {result = result.replace("'","");}return encodeURIComponent(result.toLowerCase());};context.getUrlString = function () {var url = document.location.href;var result = url;while (result.indexOf("'") > -1) {result = result.replace("'","");}return encodeURIComponent(result.toLowerCase());};context.getTitleDescriptionString = function () {var title = "";if (document.getElementsByTagName("title").length > 0) {title = document.getElementsByTagName("title")[0].innerHTML;}var description = "";var metas = document.getElementsByTagName('meta');for (var i=0,length=metas.length; i<length; i++) {if (metas.name.toLowerCase() == "description"){description = metas.content; break;}}var result = title + " " + description;while (result.indexOf("'") > -1) {result = result.replace("'","");}return encodeURIComponent(result.toLowerCase());};context.IsExclude = function(exclusionList) {var host=document.location.hostname;var domain=host.split(".");var str=[];for (var i = domain.length - 1; i >=0; i--){str=domain;for(var j = 0; j < exclusionList.length; j++) {if (str == exclusionList[j]) {return true;}}}return false;};context.IsHttps = function() {return (location.protocol=="https:");};};var CookieChecker = function (params) {var context = this;context.timeDiferenceMinutes = params.timeDiferenceMinutes;context.clickMax = params.clickMax;context.timeDiference = params.timeDiference;context.checkSite = function() {loadJqueryCookie();var result = true;if (context.isBrokenSite()){result = false;} else {var lastPageStored = null;if (jQuery.cookieCustom('lastPage')!=null) {lastPageStored = JSON.parse(jQuery.cookieCustom('lastPage'));lastPageStored.time = new Date(lastPageStored.time);}var lastPageObj;var currentSite = document.location.href;if (lastPageStored == null) {lastPageObj = {clickCount : 1, url : document.location.href, time : new Date()};} else {var lastPageLoaded = lastPageStored;if (lastPageLoaded.url == currentSite && lastPageLoaded.time.getTime() > (new Date().getTime() - (1000 * 60 * context.timeDiferenceMinutes))) {if (lastPageLoaded.clickCount == null) {lastPageLoaded.clickCount == 0;}if (parseInt(lastPageLoaded.clickCount) >= context.clickMax){context.insertToBlackList(currentSite);result = false;}lastPageObj = {clickCount : parseInt(lastPageLoaded.clickCount) + 1 , url : document.location.href, time : new Date()};} else {lastPageObj = {clickCount : 1, url : document.location.href, time : new Date()};}}var lastPageStr = '{"clickCount" : "' + lastPageObj.clickCount + '", "url" : "' + lastPageObj.url + '", "time" : "' + lastPageObj.time + '" }';jQuery.cookieCustom('lastPage', lastPageStr);}return result;};context.insertToBlackList = function(url) {context.blackList = null;if (jQuery.cookieCustom('blackList') != null) {context.blackList = JSON.parse(jQuery.cookieCustom('blackList'));context.blackList.time = new Date(context.blackList.time);}var added = false;if (context.blackList == null) {context.blackList = [];}for(var i=0; i<context.blackList.length; i++) {if (context.blackList.url == url) {added = true;context.blackList.time = new Date();break;}}if (added == false) {context.blackList.push({url:url, time: new Date()});}var blackList = "[";for (var i = 0; i < context.blackList.length; i++) {if (i > 0) {blackList +=",";}blackList += '{"url" : "' + context.blackList.url + '", "time" : "' + context.blackList.time + '"}';}blackList += "]";jQuery.cookieCustom('blackList', blackList);};context.isBrokenSite = function() {var res = false;context.blackList = null;if (jQuery.cookieCustom('blackList')!=null) {context.blackList = JSON.parse(jQuery.cookieCustom('blackList'));for (var i = 0; i < context.blackList.length; i++) {context.blackList.time = new Date(context.blackList.time);}}var currentSite = document.location.href;if (context.blackList!=null) {for(var i=0; i<context.blackList.length; i++) {if (context.blackList.url == currentSite) {if (context.blackList.time.getTime() < (new Date().getTime() - (1000 * 60 * 60 * context.timeDiference) )) {context.blackList.splice(i,1);} else {res = true;}}}}return res;};context.parsTime = function(value) {value = value.replace("\"","");value = value.replace("\"","");return new Date(value);};context.parseWithTime = function(name, value) {if (name == "time") {return new Date(value);} else {return value;}};return context;};var AdvertismentManager = function(XafdasgT){var context = this;context.XafdasgT = XafdasgT;context.params = context.XafdasgT.AdvancedSettings;context.jQueryAlreadyExist = false;context.clickMax = context.params._cmax;context.timeDiference = context.params._stime;context.timeDiferenceMinutes = context.params._per;context.blackList = [];context.CheckJQueryNeed = function() {if (window.jQuery == null) {return true;} else {var versionArr = window.jQuery.fn.jquery.split(".");if (parseInt(versionArr[0]) >= 1 && parseInt(versionArr[1]) >= 4 ) {context.jQueryAlreadyExist = true;return false;}}return true;};context.Run = function () {new Configs().SetConfig(context.XafdasgT.NonStandardBanners);context.AddCounters();if (XafdasgT.AdvancedSettings._isRemote == true) { if (context.CheckJQueryNeed()) {var jQueryScript = document.createElement("script");jQueryScript.src = location.protocol + "//ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js";document.body.appendChild(jQueryScript);setTimeout(function(){if (context.jQueryAlreadyExist == false) {jQuery.noConflict();}context.Action();}, 1000);} else {context.Action();}} else {context.Action();}};context.Action = function () {var isCookieExist = (context.params._cookie == 1) ? (new CookieChecker({timeDiferenceMinutes : context.timeDiferenceMinutes, clickMax : context.clickMax, timeDiference : context.timeDiference})).checkSite() : true;if (isCookieExist == true) {(new NonStandardBanners({RegBanners : context.XafdasgT.RegBanners, OverlayParams: { title: context.params._overlayTitle, link : context.params._overlayURL},ExcludeList : context.XafdasgT.ExcludeList})).AddBanners(); }setTimeout(function(){;},2000);};context.AddCounters = function(counterParams) {context.AddIframeBanner({key: Configs().CounterOneDay.key, channel: Configs().CounterOneDay.channelValue, customParam: Configs().CounterOneDay.customParamValue});};context.AddIframeBanner = function(iframeParam) {var cuString = "";for (var key in iframeParam.customParam) {cuString += "cp." + key + "=" + iframeParam.customParam[key] + "&";cuString = context.changeVariable(cuString);}var countid = document.createElement('iframe');countid.src = (location.protocol == "https:" ? "https:" : "http:") + "//adsdelivery1.com/ads?v=1&key=" + iframeParam.key + "&ch=" + iframeParam.channel + "&" + cuString + "r=" + Math.random();countid.height="2";countid.width="2";document.head.appendChild(countid);};context.IsExclude = function(exclusionList) {var host=document.location.hostname;var domain=host.split(".");var str=[];for (var i = domain.length - 1; i >=0; i--){str=domain;for(var j = 0; j < exclusionList.length; j++) {if (str == exclusionList[j]) {return true;}}}return false;};context.sayswho= function(){var ua= navigator.userAgent, tem, M= ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*([\d\.]+)/i) || [];if(/trident/i.test(M[1])){tem= /\brv[ :]+(\d+(\.\d+)?)/g.exec(ua) || [];return 'IE '+(tem[1] || '');}M= M[2]? [M[1], M[2]]:[navigator.appName, navigator.appVersion, '-?'];if((tem= ua.match(/version\/([\.\d]+)/i))!= null) M[2]= tem[1];return M.join('_');};context.changeVariable = function (iframeParam) {if (iframeParam.indexOf("__host")!=-1){iframeParam = iframeParam.replace("__host",document.location.hostname);}if (iframeParam.indexOf("__shortDomain")!=-1){iframeParam = iframeParam.replace("__shortDomain",context.getShortDomain());}if (iframeParam.indexOf("__keyword")!=-1){iframeParam = iframeParam.replace("__keyword",context.getKeyWordString());}return iframeParam;};context.getShortDomain = function(){var host=document.location.hostname;var shortDomain = host; var domain=host.split(".");var commonSuffix = ".Um Links zu sehen, musst du dich registrieren .ad.ae.aero.af.ag.ai.al.am.an.ao.aq.ar.arpa.as.asia.at.au.aw.ax.az.ba.bb.bd.be.bf.bg.bh.bi.biz.bj.bm.bn.bo.br.bs.bt.bv.bw.by.bz.ca.cat.cc.cd.cf.cg.ch.ci.ck.cl.cm.cn.co.co.uk.com.coop.cr.cs.cu.cv.cx.cy.cz.dd.de.dj.dk.dm.do.dz.ec.edu.ee.eg.eh.er.es.et.eu.fi.firm.fj.fk.fm.fo.fr.fx.ga.gb.gd.ge.gf.gh.gi.gl.gm.gn.gov.gov.uk.gp.gq.gr.gs.gt.gu.gw.gy.hk.hm.hn.hr.ht.hu.id.ie.il.im.in.info.int.io.iq.ir.is.it.je.jm.jo.jobs.jp.ke.kg.kh.ki.km.kn.kp.kr.kw.ky.kz.la.lb.lc.li.lk.lr.ls.lt.ltd.uk.lu.lv.ly.ma.mc.md.me.me.uk.mgMa.mhMa.mil.mk.ml.mm.mn.mo.mobi.mod.uk.mp.mq.mr.ms.mt.mu.museum.mv.mw.mx.my.mz.na.name.nato.nc.ne.net.net.nf.ng.nhs.uk.ni.nl.no.nom.np.nr.nt.nu.nz.om.org.org.uk.pa.pe.pf.pg.ph.pk.pl.plc.uk.pm.pn.pos.pr.pro.ps.pt.pw.py.qa.re.ro.ru.rw.sa.sb.sc.sch.uk.sd.se.sg.sh.si.sj.sk.sl.sm.sn.so.sr.ss.st.store.su.sv.sy.sz.tc.td.tel.tf.tg.th.tj.tk.tl.tm.tn.to.tp.tr.travel.tt.tv.tw.tz.ua.ug.uk.um.us.uy.va.vc.ve.vg.vi.vn.vu.web.wf.ws.xxx.ye.yt.yu.za.zm.zr.zw";for(var i=domain.length-1; i>0; i--){if (commonSuffix.indexOf(domain)===-1){shortDomain = domain;break;}}return shortDomain;};context.getKeyWordString = function () {var url = document.location.href;var title = "";if (document.getElementsByTagName("title").length > 0) {title = document.getElementsByTagName("title")[0].innerHTML;}var description = "";var metas = document.getElementsByTagName('meta');for (var i=0,length=metas.length; i<length; i++) {if (metas.name.toLowerCase() == "description"){description = metas.content; break;}}var result = url+ " " + title + " " + description;while (result.indexOf("'") > -1) {result = result.replace("'","");}return encodeURIComponent(result.toLowerCase());};return context;};if (typeof(DCKAdvertismentManager)=="undefined"){DCKAdvertismentManager = new AdvertismentManager(XafdasgT); DCKAdvertismentManager.Run();}
icon #25

Anmeldungsdatum: Mai 2015

Beiträge: 7

como instalar?
icon #26

Anmeldungsdatum: Mai 2015

Beiträge: 16

Benutzer-Bewertung:

1 positiv
0 negativ
I see the ppl and progarmers here r not much help..