Stoppt die Vorratsdatenspeicherung! Jetzt klicken &handeln! Willst du auch an der Aktion teilnehmen? Hier findest du alle relevanten Infos und Materialien:

Archived entries for

XSS Rays

Das XSS-Tester Bookmarklet XSS Rays ist ein nützliches kleines Tool in der Webentwickler Werkzeugkiste.

It works as a bookmarklet and scans any links, paths or forms on the target scanning page (even cross domain). You can add vectors to it quite easily and it includes some of the most common injections I’ve found on sites over the years. I’ve tested it on IE7/IE8 and Firefox but it could work in other browsers.

jQuery Tips and Tricks

queness hat einige jQuery Tips and Tricks gesammelt.

Einige Beispiele:
Make the entire LI clickable

	$("ul li").click(function(){
	 //get the url from href attribute and launch the url
	 window.location=$(this).find("a").attr("href"); return false;
	});

<ul>
	<li><a href="home">home</a></li>
	<li><a href="home">about</a></li>
	<li><a href="home">contact</a></li>
</ul>

Disable right click

$(document).bind("contextmenu",function(e){
	//you can enter your code here, e.g a menu list
	//cancel the default context menu
 return false;
});

Write our own selector

//extend the jQuery functionality
$.extend($.expr[':'], { 

	//name of your special selector
 moreThanAThousand : function (a){
		//Matching element
		return parseInt($(a).html()) > 1000;
	}
});
$(document).ready(function() {
	$('td:moreThanAThousand').css('background-color', '#ff0000');
});
<table>
<tbody>
	<tr><td>1400</td><td>700</td><td>400</td></tr>
	<tr><td>2500</td><td>600</td><td>100</td></tr>
	<tr><td>100</td><td>1100</td><td>900</td></tr>
	<tr><td>2600</td><td>1100</td><td>1200</td></tr>
</tbody>
</table>

SQL Injection Scanner: sqlfury

Nette kleine AIR Anwendung: SQLfury.

An SQL injection scanner, using blind SQL injection techniques to extract information from a target database.

Git for Web Designers

Im webdesigner depot gibt es ein Intro to Git for Web Designers mit einigen Links zu Tools und weiteren Informationen.

Interview mit dem Besitzer von Wikileaks.de

Ein Interview von netzpolitik mit Theodor ‘morphium’ Reppe, dem Besitzer der Domain Wikileaks.de.



Copyright © 2004–2009. All rights reserved. – Impressum

RSS Feed. This blog is proudly powered by Wordpress and uses Modern Clix, a theme by Rodrigo Galindez.