
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.