Skip to main content

Posts

Showing posts from February, 2017

overlay with youtube video - simple

It's very simple but I didn't spent too much time. you just need to add your image with x.png paste the js or include it in an external .js file. JS <script> $(document).ready(function(){ var overlay = jQuery('<div id="overlay"></div><div id="box" class="videoWrapper"><iframe src="https://www.youtube.com/embed/B-HCMfaOkL0?autoplay=1&rel=0&enable_js=1" frameborder="0" allowfullscreen></iframe></div><div id="closebox"><img src="images/x.png" /></div>'); overlay.appendTo(document.body).fadeIn('fast');     $("#box").width($(window).width());     $("#box").height($(window).height());     $("#box").css('width','90%');     $("#box").css('margin-left','5%');     $("#box").css('margin-right','5%');          $("#closebox

webx1009.aruba.it 89.46.104.19

123prova.net ageendawifi.com albergovenezia.net altremedicine.com amid.net angolodellesoluzioni.it canaledisecchia.it checcozalone.it clpsrl.com cospat.com deltawear.it elgusto.it espisrl.com euronomade.info forexometro.com fotocolizzi.com gianmarcoventuri.net gizia.it globalsecurity.it hotelquadrifoglio.com ilnuovopicchio.org iswatlab.eu jollybeach.it lacasanettarina.it lacortedilucia.com lemlaboratorio.com loomenstudio.com maestranzeartistiche.it marchotel.it mauriziogreco.it mestieridarte.net monteferrario.com mpdistribuzione.com reccometeo.it rinofior.com sanbernardoabate.it ski-nordik.it stefaniasperandio.com studiograssi.it studiosoluzioni.it studiotravaglin.it suonarealondra.com taffo.com taranta.it ufficialidigaranisseni.it violamassimo.com webx1009.aruba.it

https://servizistudenti.unisannio.it/ - XSS

https://servizistudenti.unisannio.it/pls/self/ssiiolk0.form2

http://www.lavoraconnoi.rai.it/ | stored xss and sql injections

http://www.lavoraconnoi.rai.it/lavoraconnoi/application/initiativeList?initiativeType=all after registering you can add stored XSS in quite any field. Other info will be added after that they fix the problems.

Set the placeholder in the input of the Google GCSE custom search engine.

When you play with the google CSE by removing various things via CSS happens that the placeholder could be "undefined". The timewait or onload are not working correctly and just a workaround. After your usual script part to include GCSE gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//cse.google.com/cse.js?cx=' + cx; put this part gcse.onload = gcse.onreadystatechange = function() { $(function() { // hack to set a placeholder in google's custom search input var pollInput = window.setInterval(function() { var $input = $('.gsc-input input.gsc-input'), $div = $('.search-db'); if ($input.length) { $input.on('focus', function(e) { $div.addClass('wide').removeClass('narrow'); }); $input.on('blur', function(e) { i