Skip to content

Instantly share code, notes, and snippets.

View acuciureanu's full-sized avatar
🦄

Alex Cuciureanu (swappie) acuciureanu

🦄
View GitHub Profile
@acuciureanu
acuciureanu / nowafpls___8KB.json
Created May 27, 2024 11:11 — forked from Rhynorater/nowafpls___8KB.json
nowafpls - Caido Convert Workflow
{
"description": "Bypass WAFs with 8KB Padding.",
"edition": 2,
"graph": {
"edges": [
{
"source": {
"exec_alias": "exec",
"node_id": 2
},
@acuciureanu
acuciureanu / ajs-word-problem.js
Last active January 25, 2022 12:35
AJ's word problem
// 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);
@acuciureanu
acuciureanu / joe-ie-quiz-resolver.js
Last active July 6, 2021 09:54
This resolves the quizes from Joe.ie
/**
* 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";