Skip to content

Instantly share code, notes, and snippets.

@Kvnbbg
Kvnbbg / tamper_monkey.js
Created September 24, 2025 20:57 — forked from alkimiadev/tamper_monkey.js
tamper monkey script to block all users who reply to a tweet(starting at index 4 for my specific use case)
// ==UserScript==
// @name Block Tweet Responders
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Blocks all users who replied to a tweet starting from the 5th reply
// @author me
// @match https://x.com/*
// @grant none
// ==/UserScript==
@Kvnbbg
Kvnbbg / cloudflare_challenge
Created August 28, 2025 14:02 — forked from epixoip/cloudflare_challenge
How I obtained the private key for www.cloudflarechallenge.com
I wasn't first to get the key. Nor was I second, third, or even fourth. I'm probably not even the
10th to get it (ok, looks like I was the 8th.) But I'm happy that I was able to prove to myself
that I too could do it.
First, I have to admit I was a skeptic. Like the handful of other dissenters, I had initially
believed that it would be highly improbable under normal conditions to obtain the private key
through exploiting Heartbleed. So this was my motivation for participating in Cloudflare's
challenge. I had extracted a lot of other things with Heartbleed, but I hadn't actually set out to
extract private keys. So I wanted to see first-hand if it was possible or not.
{
"success": true,
"credits_left": 100,
"rate_limit_left": 100,
"daily_rate_limit_left": 100,
"minute_rate_limit_left": 499,
"next_minute_rate_limit_reset": "2025-08-10T02:18:30.000Z",
"person": {
"publicIdentifier": "kmcloudarchsre",
"linkedInIdentifier": "ACoAAEq9nhUBY5ESVSgACedysR_YLndYv-XJtRI",
@Kvnbbg
Kvnbbg / make_dmg.sh
Last active February 14, 2025 17:25 — forked from HuangJiaLian/make_dmg.sh
Two steps to turn a Python file to a macOS installer
#!/bin/sh
# References
# https://www.pythonguis.com/tutorials/packaging-pyqt5-applications-pyinstaller-macos-dmg/
# https://medium.com/@jackhuang.wz/in-just-two-steps-you-can-turn-a-python-script-into-a-macos-application-installer-6e21bce2ee71
# ---------------------------------------
# Clean up previous builds
# ---------------------------------------