How to Install and Uninstall golang-github-hashicorp-go-cleanhttp-dev Package on Kali Linux

Last updated: May 14,2024

1. Install "golang-github-hashicorp-go-cleanhttp-dev" package

This is a short guide on how to install golang-github-hashicorp-go-cleanhttp-dev on Kali Linux

$ sudo apt update $ sudo apt install golang-github-hashicorp-go-cleanhttp-dev

2. Uninstall "golang-github-hashicorp-go-cleanhttp-dev" package

This tutorial shows how to uninstall golang-github-hashicorp-go-cleanhttp-dev on Kali Linux:

$ sudo apt remove golang-github-hashicorp-go-cleanhttp-dev $ sudo apt autoclean && sudo apt autoremove

3. Information about the golang-github-hashicorp-go-cleanhttp-dev package on Kali Linux

Package: golang-github-hashicorp-go-cleanhttp-dev
Source: golang-github-hashicorp-go-cleanhttp
Version: 0.5.2-1
Installed-Size: 40
Maintainer: Debian Go Packaging Team
Architecture: all
Size: 10820
SHA256: 7dc1868f058e1fa3ea218afb942f3b2b56dc2cc92c3b195e63b8533f1bc7c9d6
SHA1: d82c5645b3acf8496da4253779641da78e7f58af
MD5sum: 747a485e341399927e7c4882f8242e5e
Description: Functions for accessing "clean" Go http.Client values
The Go standard library contains a default http.Client called
http.DefaultClient. It is a common idiom in Go code to start with
http.DefaultClient and tweak it as necessary, and in fact, this is encouraged;
from the http package documentation:
.
The Client's Transport typically has internal state (cached TCP connections),
so Clients should be reused instead of created as needed. Clients are safe
for concurrent use by multiple goroutines.
.
Unfortunately, this is a shared value, and it is not uncommon for libraries to
assume that they are free to modify it at will. With enough dependencies, it
can be very easy to encounter strange problems and race conditions due to
manipulation of this shared value across libraries and goroutines (clients are
safe for concurrent use, but writing values to the client struct itself is not
protected).
.
Making things worse is the fact that a bare http.Client will use a default
http.Transport called http.DefaultTransport, which is another global value that
behaves the same way. So it is not simply enough to replace http.DefaultClient
with &http.Client{}.
.
This repository provides some simple functions to get a "clean" http.Client --
one that uses the same default values as the Go standard library, but returns a
client that does not share any state with other clients.
.
This package contains the source.
Description-md5:
Multi-Arch: foreign
Homepage: https://github.com/hashicorp/go-cleanhttp
Section: golang
Priority: optional
Filename: pool/main/g/golang-github-hashicorp-go-cleanhttp/golang-github-hashicorp-go-cleanhttp-dev_0.5.2-1_all.deb