realansgar
realansgar.dev
realansgar
@realansgar.dev
🧑‍💻 finding flags @fluxfingers.net
🔏 finding bugs @ Cure53
he/him
https://realansgar.dev
Unrelated question: Why does it say NO GLYPH at the end of each line when viewing your post in the Bluesky app? I saw this with multiple of your posts already 🤔
October 8, 2025 at 1:44 AM
2. should be the issue. I think innerText decides HTML entities, like &lt; to <, which is then assigned to innerHTML.
July 14, 2025 at 5:15 AM
Looks fine to me. Is there a pitfall with basename()?
May 21, 2025 at 12:46 PM
It's actually free to register with a (burner) email and read the article, you don't have to pay.
May 5, 2025 at 7:30 AM
Ergänzung zur Kiwi 🥝: Es könnte eine Anspielung auf das Kiwi Farms Forum sein, welches hauptsächlich aus extremen, organisierten harassment von trans Personen bestand.
en.m.wikipedia.org/wiki/Kiwi_Fa...
Kiwi Farms - Wikipedia
en.m.wikipedia.org
March 28, 2025 at 11:02 AM
Surveillance contractors not choosing overly edgy sounding company names challenge (impossible)
March 24, 2025 at 1:46 PM
Beanies sold out 😫
March 21, 2025 at 6:03 PM
I nominate @sonarresearch.bsky.social, now finally on bluesky :)
March 21, 2025 at 12:26 AM
The call expression check looks at the name of the variable, but not the runtime value of the called function, assuming that it is safe if named calc* We can abuse this to call the function constructor directly and not through calcCall which would block it
calcCall(calcPrint.constructor('alert(1)'))
March 11, 2025 at 10:10 AM
The code tries to shadow all globals with local variables, but uses Object.keys to enumerate over window. Object.keys does not include non-enumerable properties, which includes globalThis. This leaves globalThis intact for us to use
March 11, 2025 at 1:43 AM
You can use globalThis to get access to all globals again and call arbitrary global functions with the help of calcCall. Then just send innerText of the whole site to your server with fetch :)
March 10, 2025 at 10:00 PM