Advertisement
Guest User

chrome quick password export

a guest
Jun 18th, 2014
3,744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. simple script to export chrome passwords, run when the password manager is open from the chrome console (hit f12 to access the console) in frame settings( passwords )
  2.  
  3. out="";out2="";dat=document.getElementsByClassName("password");for(i=0;i<dat.length;i++){x=dat[i].parentNode;out+="\n"+x.childNodes[0].innerText+"|"+x.childNodes[1].innerText+"|"+x.childNodes[2].childNodes[0].value;out2+="<br/>"+x.childNodes[0].innerText+"|"+x.childNodes[1].innerText+"|"+x.childNodes[2].childNodes[0].value;};console.log(out);document.write(out2)
  4.  
  5. ~alogsinb
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement