Skip to content

Instantly share code, notes, and snippets.

View kennethhebb's full-sized avatar

Ken Hebb kennethhebb

View GitHub Profile
@kennethhebb
kennethhebb / proxy.go
Created February 2, 2021 20:18 — forked from vmihailenco/proxy.go
Simple TCP proxy in Golang
package main
import (
"bytes"
"encoding/hex"
"flag"
"fmt"
"io"
"log"
"net"
@kennethhebb
kennethhebb / proxy.go
Created February 2, 2021 19:24 — forked from ericflo/proxy.go
Golang TCP Proxy
package proxy
import (
"io"
"net"
"sync"
log "github.com/Sirupsen/logrus"
)