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
{ | |
"description": "Bypass WAFs with 8KB Padding.", | |
"edition": 2, | |
"graph": { | |
"edges": [ | |
{ | |
"source": { | |
"exec_alias": "exec", | |
"node_id": 2 | |
}, |
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
// If each letter from ABCDEFGHIJKLMNOPQRSTUVWXYZ corresponds to 1..26 | |
// Find words which have the sum of the letters equal to 100 | |
// Throw this code in your browser's console (tested on Chrome) ;) | |
// If you get 'TypeError: Failed to fetch' in Console then restart the browser. | |
const wordsUrl = 'https://raw.githubusercontent.com/dwyl/english-words/master/words_alpha.txt'; | |
const from = url => f => fetch(url).then(result => result.text()).then(f).catch(console.error); |
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
/** | |
* Open one of the pub quizes from job.ie ,drop this chunk of javascript code in your browser's console and hit Enter | |
* Note that the wpvq_ans89733 is a global variable from the script which handles the quiz which doesn't change. | |
* If that variable changes then change it in this script too and try again. :) | |
**/ | |
(function () { | |
const from = (inputAnswers) => Object.entries(Object.values(inputAnswers).shift()); | |
const correct = ([_, correct]) => correct === "1"; |