Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
github.com/cohhei/tcp
cohhei/http
is a too simple and naive HTTP client and server library that doesn't depend on net/http
. This client has only one method, Do
which sends an HTTP request.
package main
import (
"fmt"
"io"
"log"
"os"
"github.com/cohhei/http"
)
func main() {
// Create a client.
c := http.NewClient()
// Create a request.
req := &http.Request{
Method: "GET",
Host: "example.com",
Path: "/index.html",
Header: Header{},
}
// Send the request.
resp, err := c.Do(req)
if err != nil {
log.Fatal(err)
}
fmt.Println(resp)
io.Copy(os.Stdout, resp.Body)
}
package main
import (
"io"
"log"
"os"
"github.com/cohhei/http"
)
func main() {
log.SetFlags(log.LstdFlags | log.Lshortfile)
http.HandleFunc("/", func(w io.Writer, r io.Reader) {
io.Copy(os.Stderr, r)
w.Write([]byte("HTTP/1.1 200 OK\naaaaa: bbbbbb\n\nHello World!"))
})
log.Print("http://127.0.0.1:8080/")
if err := http.ListenAndServe(8080); err != nil {
log.Fatal(err)
}
}
This package has a TCP client that depends on only syscall
.
// Create a client
c := http.NewTCPClient()
// Connect to the address
ip := [4]byte{127, 0, 0, 1}
port := 11111
if err := c.Connect(ip, port); err != nil {
log.Fatal(err)
}
// Read data
resp, err := c.Read()
if err != nil {
log.Fatal(err)
}
io.Copy(os.Stdout, resp)
// Write data
n, err := c.Write([]byte("world"))
if err != nil {
log.Fatal(err)
}
This package has a UDP client that depends on only syscall
.
c := http.NewUDPClient()
ip := [4]byte{8, 8, 8, 8}
port := 53
b := []byte{0x01}
if err := c.SendTo(b, ip, port); err != nil {
log.Fatal(err)
}
defer c.Close()
resp, err := c.Recvfrom()
if err != nil {
log.Fatal(err)
}
io.Copy(os.Stdout, resp)
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.