this post was submitted on 21 Mar 2025
660 points (100.0% liked)
Programmer Humor
21822 readers
1319 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Is the backend Python and the frontend JavaScript? Because then that would happen and just be normal, because Boolean true is
True
in python.Probably, but if you're interpreting user inputs as raw code, you've got much much worse problems going on, lol.
Given the warning about capitalization, the best possible case is that they're using ast.literal_eval() rather than throwing untrusted input into
eval()
.Err, I guess they might be comparing strings to 'True' and are choosing to be really strict about capitalization for some reason.
Yeah. Maybe .to_lower() is really expensive in their environment, lol.