Skip to content

Instantly share code, notes, and snippets.

@julescarbon
Created October 16, 2012 17:25
Show Gist options
  • Save julescarbon/3900714 to your computer and use it in GitHub Desktop.
Save julescarbon/3900714 to your computer and use it in GitHub Desktop.
bookmarklet: bare directory listing image bomb
javascript:(function(){
var az = document.getElementsByTagName("a");
for (var i in az) {
az[i].innerHTML = "<img src='" + az[i].href + "'>";
}
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment