관리 메뉴

HAMA 블로그

안전하게 사용하는 Golang 본문

Go

안전하게 사용하는 Golang

[하마] 이승현 (wowlsh93@gmail.com) 2020. 6. 16. 09:26

1. 메모리에서의 안전요소

https://medium.com/a-journey-with-go/go-memory-safety-with-bounds-check-1397bef748b5

 

Go: Memory Safety with Bounds Check

ℹ️ This article is based on Go 1.13.

medium.com

https://insanitybit.github.io/2016/12/28/golang-and-rustlang-memory-safety

 

Golang and Rustlang Memory Safety - InsanityBit

I recently read an excellent blog post by Scott Piper about a tool he has released called Serene. The tool analyzes a binary to see if it has been compiled with security mitigation techniques - essentially a sanity check for best practices. As I was readin

insanitybit.github.io

* Go에서 디폴트로 지원하지 않아서 Go는 메모리세이프한 언어라고 하기 좀 머하다는 Address Space Layout Randomization (ASLR)이란?

https://blog.stalkr.net/2015/04/golang-data-races-to-break-memory-safety.html

 

Golang data races to break memory safety

Go is becoming more and more popular as a programming language and getting more scrutiny from a security point of view. You might remember m...

blog.stalkr.net


2. 웹서비스에서의 안전요소

https://blog.sqreen.com/top-6-security-best-practices-for-go/

 

Top 6 security best practices for Go - Sqreen Blog

In this post, we'll cover top six security practices that you need to consider when developing with Go and determine how to apply these practices.

blog.sqreen.com

3. 동시성에서의 안전요소

https://medium.com/@sargun/go-concurrency-considered-harmful-26499a422830

 

Go concurrency considered harmful

Go has been gaining a ton of popularity as of late. I’ve been using Go for work, working on container management software. Before that, I…

medium.com

https://medium.com/dm03514-tech-blog/golang-candidates-and-contexts-a-heuristic-approach-to-race-condition-detection-e2b230e70d08

 

Golang: Candidates and Contexts — A Heuristic Approach to Race Condition Detection

Concurrency In GO

medium.com

 

Comments