How to Install and Uninstall gokart Package on openSuSE Tumbleweed

Last updated: June 17,2024

1. Install "gokart" package

Please follow the guidance below to install gokart on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install gokart

2. Uninstall "gokart" package

Please follow the guidelines below to uninstall gokart on openSuSE Tumbleweed:

$ sudo zypper remove gokart

3. Information about the gokart package on openSuSE Tumbleweed

Information for package gokart:
-------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : gokart
Version : 0.5.1-1.7
Arch : x86_64
Vendor : openSUSE
Installed Size : 19.9 MiB
Installed : No
Status : not installed
Source package : gokart-0.5.1-1.7.src
Upstream URL : https://github.com/praetorian-inc/gokart
Summary : Static analysis tool for securing Go code
Description :
GoKart is a static analysis tool for Go that finds vulnerabilities using the
SSA (single static assignment) form of Go source code. It is capable of tracing
the source of variables and function arguments to determine whether input
sources are safe, which reduces the number of false positives compared to
other Go security scanners. For instance, a SQL query that is concatenated
with a variable might traditionally be flagged as SQL injection; however,
GoKart can figure out if the variable is actually a constant or constant
equivalent, in which case there is no vulnerability.