Skip to content

Instantly share code, notes, and snippets.

View imeesa's full-sized avatar
💭
tell me if you have any cool projects to work on

Eesa imeesa

💭
tell me if you have any cool projects to work on
View GitHub Profile
@hackermondev
hackermondev / writeup.md
Last active January 1, 2026 21:34
How we pwned X (Twitter), Vercel, Cursor, Discord, and hundreds of companies through a supply-chain attack

hi, i'm daniel. i'm a 16-year-old high school senior. in my free time, i hack billion dollar companies and build cool stuff.

about a month ago, a couple of friends and I found serious critical vulnerabilities on Mintlify, an AI documentation platform used by some of the top companies in the world.

i found a critical cross-site scripting vulnerability that, if abused, would let an attacker to inject malicious scripts into the documentation of numerous companies and steal credentials from users with a single link open.

(go read my friends' writeups (after this one))
how to hack discord, vercel, and more with one easy trick (eva)
Redacted by Counsel: A supply chain postmortem (MDL)

@bribes
bribes / hacking-minecraft-realms.md
Last active July 18, 2025 20:49
Hacking Minecraft Realms: Spoofing Realms Owner
{
"193.25.217.28": "WoodieScan",
"51.75.66.201": "slowstack",
"151.115.73.107": "matscan",
"154.213.185.46": "MC Server Scanner",
"154.213.187.114": "MC Server Scanner",
"3.14.29.73": "MC Server Scanner",
"154.213.187.131": "MYNX scanner",
"172.104.152.224": "mcsrvstat.us",
"94.131.100.102": "ServerOverflow",
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active January 2, 2026 02:10
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@sunnniee
sunnniee / vencord-plugin-guide.md
Last active September 26, 2025 07:55
turns out i have a use for this again
@pinheaded
pinheaded / cog_ext.py
Last active October 25, 2025 11:58
a basic cog + extension example for discord.py v2
from discord import app_commands
from discord.ext import commands
# all cogs inherit from this base class
class ExampleCog(commands.Cog):
def __init__(self, bot):
self.bot = bot # adding a bot attribute for easier access
# adding a command to the cog
@commands.command(name="ping")

github.ref vs github.head_ref in GitHub Actions

Trigger event pull_request pull_request_target push
github.ref refs/pull/53/merge refs/heads/main refs/heads/test/pull_request_target
github.head_ref test/pull_request_target test/pull_request_target -
  • main: default branch
  • test/pull_request_target: topic branch name
  • 53: pull request number