Adriano Sela Aviles
Adriano Sela Aviles
``` 01:18 $ sudo go run main.go -h 151.156.31.34 -p 80 # command-line-arguments ./main.go:92:8: undefined: ipv4Header ./main.go:100:2: not enough arguments to return ./main.go:134:8: undefined: tcpHeader ./main.go:170:2: not enough arguments to...
> Please check if what you want to add to `awesome-go` list meets [quality standards](https://github.com/avelino/awesome-go/blob/main/CONTRIBUTING.md#quality-standards) before sending pull request. Thanks! **Please provide package links to:** - repo link (github.com, gitlab.com,...
I am building a proxy between ssh and `kubectl exec` using the `remotecommand` library. One of the neat things I'd like to do is deduce what shell to drop you...
### 🔧 Changes Sometime in October 2023, the behavior of the Auth0 API changed. It used to automatically set the scopes `openid` and `profile` for all new Okta Workforce enterprise...
## Support for Serving on Generic net.Listener Adds the ability to initialize a `VncProxy` object with your own `net.Listener`. #### Example: Where `ln` is a `net.Listener` implementation ``` proxy :=...
## Support for Border0 Connector / Docker Exec This PR introduces the ability to deploy the [Border0 Connector](https://docs.border0.com/docs/border0-connector#connectors) as a node in a containerlab environment (lab)... connecting all nodes without...
## Expose ALB Listener's SSL Policy As A Manifest Parameter I want to restrict the minimum TLS version that my clients talk to my service with... for compliance-related reasons. The...
Could we get a semantic versioning release for this project :)
## Backwards Compatible Fix for [CVE-2024-6221](https://nvd.nist.gov/vuln/detail/CVE-2024-6221) Also tracked as: - [SNYK-PYTHON-FLASKCORS-7707876](https://security.snyk.io/vuln/SNYK-PYTHON-FLASKCORS-7707876) - [GHSA-hxwh-jpp2-84pm](https://github.com/advisories/GHSA-hxwh-jpp2-84pm) Adds a configuration option that allows setting a custom true/false value in the response header `Access-Control-Allow-Private-Network` (whenever...
Having a `sync.Once` be checked in each `net.Conn` operation (i.e. on every `Read()`) seems quite inefficient. I suggest enqueuing accepted connections from the inner `net.Listener`'s `Accept()`, processing/reading the header asynchronously,...