View | Details | Raw Unified | Return to bug 258385
Collapse All | Expand All

(-)b/devel/Makefile (+1 lines)
Lines 874-879 Link Here
874
    SUBDIR += godot2-tools
874
    SUBDIR += godot2-tools
875
    SUBDIR += goffice
875
    SUBDIR += goffice
876
    SUBDIR += gogs
876
    SUBDIR += gogs
877
    SUBDIR += gokart
877
    SUBDIR += golangci-lint
878
    SUBDIR += golangci-lint
878
    SUBDIR += golint
879
    SUBDIR += golint
879
    SUBDIR += google-cloud-cpp
880
    SUBDIR += google-cloud-cpp
(-)b/devel/gokart/Makefile (+17 lines)
Added Link Here
1
PORTNAME=	gokart
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	0.2.0
4
CATEGORIES=	devel security
5
6
MAINTAINER=	fuz@fuz.su
7
COMMENT=	Static analysis tool for securing Go code
8
9
LICENSE=	MIT
10
LICENSE_FILE=	${WRKSRC}/LICENSE
11
12
USES=		go:modules
13
GO_MODULE=	github.com/praetorian-inc/gokart
14
15
PLIST_FILES=	bin/gokart
16
17
.include <bsd.port.mk>
(-)b/devel/gokart/distinfo (+5 lines)
Added Link Here
1
TIMESTAMP = 1631187589
2
SHA256 (go/devel_gokart/gokart-v0.2.0/v0.2.0.mod) = 32d3dfaeb74e86df0fd520a532f1ecefe3bd71ced8271ac464c64bc58f28ee49
3
SIZE (go/devel_gokart/gokart-v0.2.0/v0.2.0.mod) = 405
4
SHA256 (go/devel_gokart/gokart-v0.2.0/v0.2.0.zip) = 7f62c4e86fab5f3226ecda8ec31625fe913f515fc181a5eb77f9c3165c580439
5
SIZE (go/devel_gokart/gokart-v0.2.0/v0.2.0.zip) = 132596
(-)b/devel/gokart/pkg-descr (-1 / +11 lines)
Added Link Here
0
- 
1
GoKart is a static analysis tool for Go that finds vulnerabilities using
2
the SSA (single static assignment) form of Go source code.  It is
3
capable of tracing the source of variables and function arguments to
4
determine whether input sources are safe, which reduces the number of
5
false positives compared to other Go security scanners.  For instance, a
6
SQL query that is concatenated with a variable might traditionally be
7
flagged as SQL injection; however, GoKart can figure out if the variable
8
is actually a constant or constant equivalent, in which case there is no
9
vulnerability.
10
11
WWW: https://github.com/praetorian-inc/gokart

Return to bug 258385