A Roblox cheat and one AI tool brought down Vercel's platform
41–50 of 186 posts
Re: A Roblox cheat and one AI tool brought down Vercel's platform
#42This looks really really AI-generated even if the author did try to hide it by making some grammar elements improper. Idk if that diminishes it's accuracy though.
So I believe the author has exposure to the issue and interest in understanding it, that’s more than AI alone has got.
Re: A Roblox cheat and one AI tool brought down Vercel's platform
#43Tools that sit in the middle (like Context.ai) end up becoming a pretty large attack surface without feeling like one.
Re: A Roblox cheat and one AI tool brought down Vercel's platform
#44This article is LLM authored and full of hallucinations. "Let that sink in for a second."
Re: A Roblox cheat and one AI tool brought down Vercel's platform
#45This looks really really AI-generated even if the author did try to hide it by making some grammar elements improper. Idk if that diminishes it's accuracy though.
I don't know why you are downvoted. The article is AI blogspam, it doesn't have any more factual information than eg https://www.darkreading.com/application-security/vercel-empl... and is full of empty LLMisms. It's depressing people are willing to read this.
Re: A Roblox cheat and one AI tool brought down Vercel's platform
#46Earlier quoted context omitted.
They said "encrypted at rest", which they almost certainly are. If you spin up an EC2 instance with an ftp server and check the "Encrypt my EBS volume" checkbox, all those files are 'encrypted at rest', but if your ftp password is 'admin/admin', your files will be exposed in plaintext quite quickly. Vercel's backend is of course able to decrypt them too (or else it couldn't run your app for you), and so the attacker…
Hmm, that's confusing. So they're eventually encrypted but plain-text at some point? Doesn't sound good TBH.
(And modern Linux is unusable without root access, thanks to Docker and other fast-and-loose approaches.)
Re: A Roblox cheat and one AI tool brought down Vercel's platform
#47I think this is wrong about what “sensitive” means here. AFAIK, all Vercel env cars are encrypted. The sensitive checkbox means that a develop looking at the env var can’t see what value is stored there. It’s a write-only value. Only the app can see it, via an env var (which obviously can’t be encrypted in such a way that the app can’t see it, otherwise it’d be worthless). If you don’t check that box, you can view th…
Re: A Roblox cheat and one AI tool brought down Vercel's platform
#48Earlier quoted context omitted.
Hmm, that's confusing. So they're eventually encrypted but plain-text at some point? Doesn't sound good TBH.
There isn't really a way around it.
Re: A Roblox cheat and one AI tool brought down Vercel's platform
#49Re: A Roblox cheat and one AI tool brought down Vercel's platform
#50Earlier quoted context omitted.
Hmm, that's confusing. So they're eventually encrypted but plain-text at some point? Doesn't sound good TBH.
If a company says “encrypted at rest” that is generally compliance-speak for “not encrypted, but the hard drive partition is encrypted”. Various certifications require this, I guess because they were written before hyper scalers and the assumed attack vector was that someone would literally steal a hard drive. A running machine is not “at rest”, just like you can read files on your encrypted Mac HDD, the running prog…