Skip to content

Instantly share code, notes, and snippets.

@stelcheck
Created January 15, 2016 03:13
Show Gist options
  • Save stelcheck/97a9ab778b63a07b6359 to your computer and use it in GitHub Desktop.
Save stelcheck/97a9ab778b63a07b6359 to your computer and use it in GitHub Desktop.
var mySecret = "All your base";
var found = false;
while (!found) {
var b = new Buffer(1000);
var str = b.toString('utf8')
if (str.indexOf(mySecret) > -1) {
found = true;
console.log('Found:', str);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment