Skip to content

Instantly share code, notes, and snippets.

@soatok
soatok / idleon.md
Last active May 15, 2024 17:13
Legends of IdleOn RNG Manipulation

Disclosure Timeline

Note: All dates are in YYYY-MM-DD format (as per ISO 8601 and other standards).

Date Action
2023-07-06 Emailed lava at lavaflame2 dot com with these details and a recommended fix.
2023-08-06 A month later, I follow up just asking if Lava has received my messages.
2023-11-15 Additional follow-up email
2023-11-15 Mentioned knowing an exploit in Discord, passed details onto moderator (Hotair)
@dicene
dicene / gist:b714660b13da4bd7767f89182476af4c
Last active November 1, 2018 23:02
Lua Scraping Function
// http://novicelab.org/jsonabc/ is a good resource to sort and beautify the json so that commits are clean.
function scrapeit()
print("Downloading...")
downloadFile(getMudletHomeDir().."/functions.html", "https://wiki.mudlet.org/w/Manual:Lua_Functions")
end
function trim(s)
return (s:gsub("^%s*(.-)%s*$", "%1"))
end