#overflow — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #overflow, aggregated by home.social.
-
Something Nobody Told You About The Image Element (It Can Overflow), by @css (@frontendmasters.com):
-
Something Nobody Told You About The Image Element (It Can Overflow), by @css (@frontendmasters.com):
-
Memo to self: do not put a glass which has been used for measuring dish washing liquid into a dishwasher without rinsing. No photo, because I was frantically getting towels to stem the frothy overflow!
-
Memo to self: do not put a glass which has been used for measuring dish washing liquid into a dishwasher without rinsing. No photo, because I was frantically getting towels to stem the frothy overflow!
-
Critical #NGINX #Vulnerability Can #Crash Workers and May Allow Remote Code Execution
source: thehackernews.com/2026/07/crit…
The #overflow lives in nginx's #script engine, the code that assembles strings from directives at request time. It only surfaces under a specific #configuration: a regex-based map whose output variable is referenced in a #string expression after a capture from an earlier #regex match.
#web #www #internet #online #exploit #hack #hacker #cybersecurity #news #webserver #server #security #software #bug
-
“Almost Always Unsigned” [2022], Dale Weiler (https://graphitemaster.github.io/aau/).
Via HN: https://news.ycombinator.com/item?id=48836431
On Lobsters: https://lobste.rs/s/fvpk3i/almost_always_unsigned_2022
#Programming #PLDI #Arithmetic #Overflow #Underflow #Integers #Math #Conversions #Casts #Promotions #Bugs
-
“Almost Always Unsigned” [2022], Dale Weiler (https://graphitemaster.github.io/aau/).
Via HN: https://news.ycombinator.com/item?id=48836431
On Lobsters: https://lobste.rs/s/fvpk3i/almost_always_unsigned_2022
#Programming #PLDI #Arithmetic #Overflow #Underflow #Integers #Math #Conversions #Casts #Promotions #Bugs
-
“Signed By Default Camp”, Bill “Ginger Bill” Hall (https://www.gingerbill.org/article/2026/05/03/signed-by-default/).
On Lobsters: https://lobste.rs/s/asnoqy/signed_integers_by_default
On HN: https://news.ycombinator.com/item?id=48828937
#Programming #PLDI #Odin #Arithmetic #Overflow #Underflow #Conversions #Casts #Correctness
-
“Signed By Default Camp”, Bill “Ginger Bill” Hall (https://www.gingerbill.org/article/2026/05/03/signed-by-default/).
On Lobsters: https://lobste.rs/s/asnoqy/signed_integers_by_default
On HN: https://news.ycombinator.com/item?id=48828937
#Programming #PLDI #Odin #Arithmetic #Overflow #Underflow #Conversions #Casts #Correctness
-
Sorry, #Fedi - Mastodon was telling me "999 new posts", so I just skimmed everything. If I missed something cool, one of the cool people I follow will probably boost it.
(Does Mastodon's default web client cap the number displayed to 999? Or did I just hit it by coincidence?)
-
Sorry, #Fedi - Mastodon was telling me "999 new posts", so I just skimmed everything. If I missed something cool, one of the cool people I follow will probably boost it.
(Does Mastodon's default web client cap the number displayed to 999? Or did I just hit it by coincidence?)
-
#overflow : to flow over the brim
- French: débordement
- German: überschwemmen, die Überschwemmung
- Portuguese: transbordar
- Spanish: desbordamiento
------------
Try our new word guessing game @ https://24hippos.com
-
#overflow : to flow over the brim
- French: débordement
- German: überschwemmen, die Überschwemmung
- Portuguese: transbordar
- Spanish: desbordamiento
------------
Try our new word guessing game @ https://24hippos.com
-
Why Keyboard Users Can’t Scroll Your Overflow Containers, by @csstricks:
https://css-tricks.com/why-keyboard-users-cant-scroll-your-overflow-containers/
-
Why Keyboard Users Can’t Scroll Your Overflow Containers, by @csstricks:
https://css-tricks.com/why-keyboard-users-cant-scroll-your-overflow-containers/
-
THANK YOU ALL!!! - what errors should I check for and handle?
Thank you all for your kind, patient and educative responses when I obnoxiously post amateur questions! 💙 While I cannot make any promises because of how my brain works, I am almost ready to continue reading *The C Programming Language, 2nd Edition”. I just want to experiment a little bit with error handling, specifially how to handle wrong input (char VS. int, etc.) and also to learn to indentify code that runs the risk of overflow/underflow.
Question: what errors do you recommend checking for and handling?
Meanwhile, thank you all! 🥰
#include <stdio.h> //Function declarations int newPin(); int checkPin(int i); //Program that prompts for, verifies and saves pins temporarily into an array int main() { //New pin int pin = 0; //History int history[10] = {0,0,0,0,0,0,0,0,0,0}; int history_limit = 10; int history_index = 0; printf("Hello there! What would you like to do? (V)iew your saved pins, (S)ave a new pin or (E)xit: "); int choice = 0; while ((choice = getchar()) != EOF) { switch (choice) { case ('V'): { //Display saved pins printf("\nYour saved pins are:\n\n"); for (int i = 0; i < history_limit; i++) printf("%d\n", history[i]); printf("\nWhat would you like to do next? (V)iew your saved pins, (S)ave a new pin or (E)xit: "); break; } case('S'): { //Prompt for and verify newly entered pin pin = newPin(); if (checkPin(pin) == pin) { history[history_index] = pin; history_index++; if (history_index >= history_limit) history_index = 0; } break; } case ('E'): goto EXIT; //Terminate program } } EXIT: printf("\nGoodbye!\n"); return 0; } //Function definitions //Prompt user to enter a new pin int newPin() { int pin = 0; printf("This enter your pin: "); scanf("%d", &pin); getchar(); return pin; } //Verify newly entered pin int checkPin (int i) { int check = 0; printf("Confirm your new pin: "); while((scanf("%d", &check)) != EOF) { if (check != i) printf("Mismatch! Confirm your new pin: "); else if (check == i) { printf("Success! Your new pin is %d. What would you like to do next? (V)iew your saved pins, (S)ave a new pin or (E)xit: ", i); goto EXIT; } } EXIT: return i; } //TODO //Error handling (overflow, input data type, other?) -
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
[C programming] Why and how is the allocated bytes affecting these unexpected behaviors?
-
[C programming] Why and how is the allocated bytes affecting these unexpected behaviors?
-
[C] What is the relationship between string length, allocated memory size and overflow?
-
Demystifying Block Formatting Contexts, by @ppk:
-
Demystifying Block Formatting Contexts, by @ppk:
-
# Think of the children!
EU age verification APP cracked in 120 secs
The hack was so easy it looks like the app was designed to be so weak
https://cybernews.com/security/eu-age-verification-app-hack/
#InfoSec #EU #Age #Verification #hack #crack #programming #buffer #overflow #programming #Android
-
# Think of the children!
EU age verification APP cracked in 120 secs
The hack was so easy it looks like the app was designed to be so weak
https://cybernews.com/security/eu-age-verification-app-hack/
#InfoSec #EU #Age #Verification #hack #crack #programming #buffer #overflow #programming #Android
-
In Java unterscheidest du grob zwischen primitiven Datentypen und Referenztypen. Primitive Typen sind die Basis: Sie speichern den Wert direkt, ohne Objekt-Hülle. Das macht sie schnell, vorhersehbar und speichereffizient. Wichtig ist dabei: Die Größe der primitiven Typen ist in Java fest definier
https://magicmarcy.de/datentypen-in-java-ohne-stolperfallen
#DAtentypen #Java #Stolperfallen #2038 #Overflow #int #Integer #String #float #double #BigDecimal #Wertebereiche #Programming
-
Security Patches
InfoSec
Regardless of which Operating System you run, it is important to keep up with the critical updates to keep your machines as safe as possible
- Realize that by the time a critical bug has been reported, verified, patched and delivered to your distribution of choice, a significant amount of time has passed...
- From the first day the bug has been discovered [zero day] to the day you patch your computing machine, you've had a vunurable open machine in that one respect.
- Keep the amount of time between the availability, of patches & the update of your machines, especially your VMs (Qemu et al) & physical servers as short as possible
- Make sure to always use manual updates on your server VM's!
- I shall not explain why, start reading on Wikipedia and furthe, the explanation is too long for this short post
Notes:
- every OS can have vunurabilities
- Security in obscurity does not work!
- you are not secure because you run obsolete AmigaOS QNX or cool and niche *BSD as an OS
- buffer overflows hide everywhere
- I reguraly find them!
#Security #patches #programming #InfoSec #AmigaOS #Amiga #QNX #Linux #feeBSD #netBSD #openBSD #technology #software #buffer #overflow #mathematics
-
Security Patches
InfoSec
Regardless of which Operating System you run, it is important to keep up with the critical updates to keep your machines as safe as possible
- Realize that by the time a critical bug has been reported, verified, patched and delivered to your distribution of choice, a significant amount of time has passed...
- From the first day the bug has been discovered [zero day] to the day you patch your computing machine, you've had a vunurable open machine in that one respect.
- Keep the amount of time between the availability, of patches & the update of your machines, especially your VMs (Qemu et al) & physical servers as short as possible
- Make sure to always use manual updates on your server VM's!
- I shall not explain why, start reading on Wikipedia and furthe, the explanation is too long for this short post
Notes:
- every OS can have vunurabilities
- Security in obscurity does not work!
- you are not secure because you run obsolete AmigaOS QNX or cool and niche *BSD as an OS
- buffer overflows hide everywhere
- I reguraly find them!
#Security #patches #programming #InfoSec #AmigaOS #Amiga #QNX #Linux #feeBSD #netBSD #openBSD #technology #software #buffer #overflow #mathematics
-
My Garmin watch hit an empty battery, upon connecting to the charger the step counter went haywire and apparently overflowed 🤣
-
My Garmin watch hit an empty battery, upon connecting to the charger the step counter went haywire and apparently overflowed 🤣
-
#overflow : to flow over
- French: débordement
- German: überschwemmen, die Überschwemmung
- Portuguese: transbordar
- Spanish: desbordamiento
------------
Try our new word guessing game @ https://24hippos.com
-
#overflow : to flow over
- French: débordement
- German: überschwemmen, die Überschwemmung
- Portuguese: transbordar
- Spanish: desbordamiento
------------
Try our new word guessing game @ https://24hippos.com
-
Fixing a Buffer Overflow in Unix v4 Like It's 1973
https://sigma-star.at/blog/2025/12/unix-v4-buffer-overflow/
#HackerNews #Fixing #a #Buffer #Overflow #in #Unix #v4 #Like #1973 #unix #v4 #buffer #overflow #cybersecurity #programming #history
-
Fixing a Buffer Overflow in Unix v4 Like It's 1973
https://sigma-star.at/blog/2025/12/unix-v4-buffer-overflow/
#HackerNews #Fixing #a #Buffer #Overflow #in #Unix #v4 #Like #1973 #unix #v4 #buffer #overflow #cybersecurity #programming #history
-
Hi, Mastodon 🦣 can you help me out?
If you can test in actual Safari, what do you see for this demo?
https://codepen.io/thebabydino/pen/EayKKjQ??editors=1100
Is it the result in the first screenshot? (what I get in Chrome & Firefox)
Or the result in the second screenshot? (what I get in Epiphany)
If you cannot test yourself, boosts appreciated. 🙏
Thank you!
#CSS #SVG #filter #svgFilter #overflow #web #dev #webDev #webDevelopment #code #coding #frontend #bug
-
Hi, Mastodon 🦣 can you help me out?
If you can test in actual Safari, what do you see for this demo?
https://codepen.io/thebabydino/pen/EayKKjQ??editors=1100
Is it the result in the first screenshot? (what I get in Chrome & Firefox)
Or the result in the second screenshot? (what I get in Epiphany)
If you cannot test yourself, boosts appreciated. 🙏
Thank you!
#CSS #SVG #filter #svgFilter #overflow #web #dev #webDev #webDevelopment #code #coding #frontend #bug
-
StackOverflow 的每月發問數量已經降到開站第一個月的等級了
-
StackOverflow 的每月發問數量已經降到開站第一個月的等級了
-
Oh, joy! Another riveting tale of a #four-byte #heap #overflow in FFmpeg's #EXIF writer. 🤦♂️ Because who doesn't love diving into the scintillating world of internal workings for a #bug that lived for three whole days? 🙄 Let's all trust #FFmpeg, until it self-destructs again. 🚀
https://bugs.pwno.io/0014 #overflow #tech #news #security #vulnerability #HackerNews #ngated -
Oh, joy! Another riveting tale of a #four-byte #heap #overflow in FFmpeg's #EXIF writer. 🤦♂️ Because who doesn't love diving into the scintillating world of internal workings for a #bug that lived for three whole days? 🙄 Let's all trust #FFmpeg, until it self-destructs again. 🚀
https://bugs.pwno.io/0014 #overflow #tech #news #security #vulnerability #HackerNews #ngated -
CAST Overflow Returns WHAT?!
CASTing huge number to INT causes overflow! SQL doesn't error, it wraps around or returns NULL. This breaks number conversion! Watch!
#sql #sqltricks #database #sqltutorial #cast #overflow #sqlquiz #codingchallenge #sqlshorts #sqlbugs #typeconversion #sqlwtf
-
CAST Overflow Returns WHAT?!
CASTing huge number to INT causes overflow! SQL doesn't error, it wraps around or returns NULL. This breaks number conversion! Watch!
#sql #sqltricks #database #sqltutorial #cast #overflow #sqlquiz #codingchallenge #sqlshorts #sqlbugs #typeconversion #sqlwtf
-
Updating CSS Border Radius When a Container Is Overflowing, by @rikschennink:
https://pqina.nl/blog/update-container-border-radius-scrollbar-overflow/
-
Updating CSS Border Radius When a Container Is Overflowing, by @rikschennink:
https://pqina.nl/blog/update-container-border-radius-scrollbar-overflow/