Golang notes – Telegram
Security Research Labs presents a technical piece on GoLibAFL, a new tool for fuzzing Go binaries. It details how to leverage LibAFL for more effective security testing of compiled Go code.
https://www.srlabs.de/blog-post/golibafl---fuzzing-go-binaries-using-libafl
🔥1
This post from WunderGraph delves into the mechanics of sync.Pool and how it can be used to reduce memory allocations. It's a valuable resource for optimizing Go applications for high-performance scenarios.
https://wundergraph.com/blog/golang-sync-pool
🔥1
A recent publication on the Cubed.Run blog uses a creative card analogy to explain the concepts of concurrency in Go. This unique approach makes complex topics like goroutines and channels easier to understand.
https://blog.cubed.run/the-cards-of-concurrency-in-go-0d7582cecb79
Revive is a fast and configurable linter for Go that provides a framework for development of custom rules. This webpage introduces the tool and its capabilities, highlighting its performance and extensibility.
https://revive.run/
This blogpost delves into the new cleanup function feature in Go, which simplifies resource management in tests. It also explores the concept of weak references and how they can be used to handle cached data more effectively.
https://go.dev/blog/cleanups-and-weak
This write-up explores various methods for interacting with SQL databases in Go, from using the standard library to leveraging third-party packages. The author provides insights into the trade-offs of each approach, helping readers choose the best tool for their needs.
https://packagemain.tech/p/different-ways-of-working-with-sql
🔥1
Mohamed Said offers a guide on constructing a secure session manager in Go, emphasizing the importance of cryptography and proper cookie management. This tutorial provides practical code examples to help developers implement a robust and safe authentication system.
https://themsaid.com/building-secure-session-manager-in-go
👍1🔥1
This paper discusses the advantages of the native FIPS support introduced in Go 1.24, a significant feature for developers in regulated industries. It explains how this integration simplifies compliance and enhances the security of Go applications.
https://developers.redhat.com/articles/2025/03/10/benefits-native-fips-support-go-124
👍2