Go

How To Use Vuls as a Vulnerability Scanner on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Use Vuls as a Vulnerability Scanner on Ubuntu 18.04

Vuls is an open-source, agentless vulnerability scanner written in Go. It automates security vulnerability analysis of the software installed on a system. In this tutorial, you’ll deploy Vuls to an Ubuntu 18.04 server — building Vuls and its dependencies from source code, configuring scanning and reporting to Slack, and optionally connecting it to target machines to enable remote scanning.

Read more
Importing Packages in Go — step-by-step Programming tutorial on Progressive Robot

Importing Packages in Go

The ability to borrow and share code across different projects is foundational to any widely-used programming language—and the entire open-source community. In Go, the basic unit of reusable code is called a package. In this tutorial, you will write you short programs—one that imports a standard library package, and one that imports a third-party package. You will also write an extended program comparing two similar packages, and also use the goimports tool to see how to format your import.

Read more
Definindo métodos em Go — step-by-step Programming tutorial on Progressive Robot

Definindo métodos em Go

As funções permitem que você organize a lógica em procedimentos repetíveis que possam usar diferentes argumentos sempre que forem executados. Durante o processo de definição das funções,…

Read more
Como escrever instruções condicionais em Go — step-by-step Programming tutorial on Progressive Robot

Como escrever instruções condicionais em Go

As instruções condicionais fazem parte de todas as linguagens de programação. Com as instruções condicionais, podemos ter códigos que algumas vezes executam e em outras ocasiões não, dependendo das condições do programa naquele momento. Quando executamos totalmente cada…

Read more
Создание настраиваемых ошибок в Go — step-by-step Programming tutorial on Progressive Robot

Создание настраиваемых ошибок в Go

Go предоставляет два способа создания ошибок в стандартной библиотеке, errors.New и fmt.Errorf. При передаче более сложной информации об ошибках для ваших пользователей или для…

Read more
CHAT