We have replaced all instances of the potentially dangerous sprintf function with snprintf across the codebase, specifically impacting the http, protocol, server, and utils modules. By mandating buffer sizes, we significantly reduce the risk of stack-based buffer overflows, ensuring more robust string handling throughout the application. Your code is now a little safer from memory corruption issues. 🛡️ buffer overflow prevention