6/2/2024 "Memory cannot be defined, yet it defines mankind."
Author: Robert Chen (OtterSec) @notdeghost
EVM,RE / 13 solves / 274 pts
import { TwitterApi } from 'twitter-api-v2'; | |
import { Configuration, OpenAIApi } from 'openai'; | |
import yargs from 'yargs'; | |
import { hideBin } from 'yargs/helpers'; | |
import TelegramBot from 'node-telegram-bot-api'; | |
import * as dotenv from 'dotenv'; | |
dotenv.config(); | |
enum Victim { |
// Navigate to https://github.com/watching and then run: | |
// Taken from: https://stackoverflow.com/questions/11043374/how-to-unwatch-multiple-repos-easily-on-github | |
Array.prototype | |
.slice.apply(document.querySelectorAll('.js-subscription-row')) | |
.forEach(el => { const org = el.querySelector('a[href^="/YOUR_ORG"]'); if (org) el.querySelector('button').click()}); |