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
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 🤔
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...
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...
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 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)'))
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
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
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
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 :)