Skip to content

Instantly share code, notes, and snippets.

View lbeckman314's full-sized avatar
🌻
:(){ :|:& };:

Liam Beckman lbeckman314

🌻
:(){ :|:& };:
View GitHub Profile
@hackermondev
hackermondev / writeup.md
Last active March 16, 2026 15:29
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)

@LiquidityC
LiquidityC / Makefile
Last active December 26, 2025 00:21
Generic drop in Makefile
VERSION = \"1.0.0\"
PREFIX ?= out
INCDIR = include
SRCDIR = src
LANG = c
OBJDIR = .obj
MODULE ?= binary_name
CC ?= gcc
@gerritjvv
gerritjvv / helm-avoid-nil-pointer.md
Created September 21, 2023 10:01
helm avoid nil pointer on nested values and maps

When you nest values in yaml like

server:
  spec:
    cpu: 0.5

You use it in helm as {{ .Values.server.spec.cpu | default 0.5 }}, which works fine till you try the values as not defined
e.g

@wgeorgecook
wgeorgecook / template.txt
Last active July 13, 2023 12:36
EthicsPoint Bedaquiline Template
We did it!
https://twitter.com/johngreen/status/1679458253292417024?s=20
@SMUsamaShah
SMUsamaShah / List of in-browser VMs.md
Last active December 5, 2025 03:40
List of Javascript based virtual machines running in browser
@amulyakashyap09
amulyakashyap09 / elastic_search_query.md
Last active January 13, 2025 18:06
How to query in elastic-search

Terminologies

We will be using following information throughout this article:

  • index_name : customers
  • index_type : personal
  • customer will have name,age,gender,email,phone,address,city,state as fields in schema for now

INFO Queries

@cannin
cannin / highlight_pmc.user.js
Last active October 29, 2019 21:25
Highlight PMC Text
// ==UserScript==
// @name Highlight PMC
// @namespace http://tampermonkey.net/
// @version 0.1
// @description TBA
// @author cannin
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/jquery.mark.min.js
// @grant GM.getValue
// @grant GM.setValue

[?25l[?7l -/oyddmdhs+:.
-odNMMMMMMMMNNmhy+-`  .
-yNMMMMMMMMMMMNNNmmdhy+-  .vir. d$b
`omMMMMMMMMMMMMNmdmmmmddhhy/`  .d$$$$$$b. .cd$$b. .d$$b. d$$$$$$$$$$$b .d$$b. .d$$b.
omMMMMMMMMMMMNhhyyyohmdddhhhdo`  $$$$( )$$$b d$$$()$$$. d$$$$$$$b Q$$$$$$$P$$$P.$$$$$$$b. .$$$$$$$b.
.ydMMMMMMMMMMdhs++so/smdddhhhhdm+`  Q$$$$$$$$$$B$$$$$$$$P" d$$$PQ$$$$b. $$$$. .$$$P' `$$$ .$$$P' `$$$
oyhdmNMMMMMMMNdyooydmddddhhhhyhNd.  "$$$$$$$P Q$$$$$$$b d$$$P Q$$$$b $$$$b $$$$b..d$$$ $$$$b..d$$$
:oyhhdNNMMMMMMMNNNmmdddhhhhhyymMh  | d$$$$$$P" "$$$$$$$$ Q$$$
@mordr
mordr / note.md
Last active February 27, 2025 13:53
Set Visual Studio Code as default editor for kubectl

Set KUBE_EDITOR to Visual Studio Code, assumes 'code' is in PATH

export KUBE_EDITOR='code --wait'

Running k edit ... will open up the yaml using Visual Studio Code.