GoKart: A static analysis tool for securing Go code
1–10 of 88 posts
Re: GoKart: A static analysis tool for securing Go code
#2* Just a forward-style abstract interpretation living on-top of Go's type system as an additional layer so you get explanations for why the tool believes that a nil-pointer dereference may occur, etc.
Re: GoKart: A static analysis tool for securing Go code
#3Go has some nice tooling which is quite easy to use w.r.t. static analysis. I started writing a nil pointer analysis tool which was going to take advantage of and provide some more advanced information*. I "unfortunately" had a lot more fun stuff to do during my vacation, but it was very easy to get started with! So kudos to the Go team for making this kind of stuff possible for a 1-man team. * Just a forward-style a…
It still boggles my mind that Go decided to force programmers to worry about nil pointers.
Re: GoKart: A static analysis tool for securing Go code
#4Go has some nice tooling which is quite easy to use w.r.t. static analysis. I started writing a nil pointer analysis tool which was going to take advantage of and provide some more advanced information*. I "unfortunately" had a lot more fun stuff to do during my vacation, but it was very easy to get started with! So kudos to the Go team for making this kind of stuff possible for a 1-man team. * Just a forward-style a…
> I started writing a nil pointer It still boggles my mind that Go decided to force programmers to worry about nil pointers.