mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2024-12-22 22:36:53 +00:00
commit
45fcca92e0
105
net/conn.go
105
net/conn.go
@ -2,7 +2,6 @@ package net
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"io"
|
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -41,6 +40,11 @@ func (c *Conn) Write(b []byte) (n int, err error) {
|
|||||||
return c.conn.Write(b)
|
return c.conn.Write(b)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Conn) SetReadDeadline(t time.Time) (error) {
|
||||||
|
c.conn.SetReadDeadline(t)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (c *Conn) SetDeadLine(t time.Time) (error) {
|
func (c *Conn) SetDeadLine(t time.Time) (error) {
|
||||||
c.conn.SetDeadline(t)
|
c.conn.SetDeadline(t)
|
||||||
return nil
|
return nil
|
||||||
@ -66,13 +70,11 @@ func (conn *Conn) WriteChunks(c [][]byte) (n int, err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (conn *Conn) ReadBytes() ([]byte, error) {
|
func (conn *Conn) ReadBytes() ([]byte, error) {
|
||||||
ret := make([]byte, 0)
|
ret := make([]byte, 0)
|
||||||
buf := make([]byte, BUF_SIZE)
|
buf := make([]byte, BUF_SIZE)
|
||||||
|
|
||||||
conn.conn.SetReadDeadline(time.Now().Add(5 * time.Second))
|
for {
|
||||||
|
n, err := conn.Read(buf)
|
||||||
for {
|
|
||||||
n, err := conn.Read(buf)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
switch err.(type) {
|
switch err.(type) {
|
||||||
case *net.OpError:
|
case *net.OpError:
|
||||||
@ -81,25 +83,28 @@ func (conn *Conn) ReadBytes() ([]byte, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ret = append(ret, buf[:n]...)
|
ret = append(ret, buf[:n]...)
|
||||||
|
|
||||||
if n < BUF_SIZE {
|
if n < BUF_SIZE {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret, nil
|
return ret, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lConn *Conn) HandleHttp(p *packet.HttpPacket) {
|
func (lConn *Conn) HandleHttp(p *packet.HttpPacket) {
|
||||||
defer lConn.Close()
|
defer func() {
|
||||||
|
lConn.Close()
|
||||||
|
log.Debug("[HTTP] Closing client Connection.. ", lConn.RemoteAddr())
|
||||||
|
}()
|
||||||
|
|
||||||
p.Tidy()
|
p.Tidy()
|
||||||
|
|
||||||
ip, err := doh.Lookup(p.Domain())
|
ip, err := doh.Lookup(p.Domain())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error("[HTTP DOH] Error looking up for domain with ", p.Domain() , " ", err)
|
log.Error("[HTTP DOH] Error looking up for domain with ", p.Domain() , " ", err)
|
||||||
lConn.Write([]byte(p.Version() + " 502 Bad Gateway\r\n\r\n"))
|
lConn.Write([]byte(p.Version() + " 502 Bad Gateway\r\n\r\n"))
|
||||||
lConn.Close()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,38 +119,39 @@ func (lConn *Conn) HandleHttp(p *packet.HttpPacket) {
|
|||||||
rConn, err := Dial("tcp", ip + port)
|
rConn, err := Dial("tcp", ip + port)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Debug("[HTTP] ", err)
|
log.Debug("[HTTP] ", err)
|
||||||
lConn.Close()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
defer rConn.Close()
|
|
||||||
|
|
||||||
log.Debug("[HTTP] Connected to ", p.Domain())
|
defer func() {
|
||||||
|
defer rConn.Close()
|
||||||
|
log.Debug("[HTTP] Closing server Connection.. ", p.Domain(), " ", rConn.LocalAddr())
|
||||||
|
}()
|
||||||
|
|
||||||
|
log.Debug("[HTTP] New connection to the server ", p.Domain(), " ", rConn.LocalAddr())
|
||||||
|
|
||||||
_, err = rConn.Write(p.Raw())
|
_, err = rConn.Write(p.Raw())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Debug("[HTTP] Error sending request to ", p.Domain(), err)
|
log.Debug("[HTTP] Error sending request to ", p.Domain(), err)
|
||||||
lConn.Close()
|
|
||||||
rConn.Close()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
log.Debug("[HTTP] Sent a request to ", p.Domain())
|
log.Debug("[HTTP] Sent a request to ", p.Domain())
|
||||||
|
|
||||||
go io.Copy(lConn, rConn)
|
go lConn.Serve(rConn, "[HTTP]", lConn.RemoteAddr().String(), p.Domain())
|
||||||
io.Copy(rConn, lConn)
|
rConn.Serve(lConn, "[HTTP]", lConn.RemoteAddr().String(), p.Domain())
|
||||||
|
|
||||||
log.Debug("[HTTP] Closing Connection..", p.Domain())
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lConn *Conn) HandleHttps(p *packet.HttpPacket) {
|
func (lConn *Conn) HandleHttps(p *packet.HttpPacket) {
|
||||||
defer lConn.Close()
|
defer func() {
|
||||||
|
lConn.Close()
|
||||||
|
log.Debug("[HTTPS] Closing client Connection.. ", lConn.RemoteAddr())
|
||||||
|
}()
|
||||||
|
|
||||||
ip, err := doh.Lookup(p.Domain())
|
ip, err := doh.Lookup(p.Domain())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error("[HTTPS DOH] Error looking up for domain: ", p.Domain(), " ", err)
|
log.Error("[HTTPS DOH] Error looking up for domain: ", p.Domain(), " ", err)
|
||||||
lConn.Write([]byte(p.Version() + " 502 Bad Gateway\r\n\r\n"))
|
lConn.Write([]byte(p.Version() + " 502 Bad Gateway\r\n\r\n"))
|
||||||
lConn.Close()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,18 +166,19 @@ func (lConn *Conn) HandleHttps(p *packet.HttpPacket) {
|
|||||||
rConn, err := Dial("tcp", ip + port)
|
rConn, err := Dial("tcp", ip + port)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Debug("[HTTPS] ", err)
|
log.Debug("[HTTPS] ", err)
|
||||||
lConn.Close()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
defer rConn.Close()
|
|
||||||
|
|
||||||
log.Debug("[HTTPS] Connected to ", p.Domain())
|
defer func() {
|
||||||
|
defer rConn.Close()
|
||||||
|
log.Debug("[HTTPS] Closing server Connection.. ", p.Domain(), " ", rConn.LocalAddr())
|
||||||
|
}()
|
||||||
|
|
||||||
|
log.Debug("[HTTPS] New connection to the server ", p.Domain(), " ", rConn.LocalAddr())
|
||||||
|
|
||||||
_, err = lConn.Write([]byte(p.Version() + " 200 Connection Established\r\n\r\n"))
|
_, err = lConn.Write([]byte(p.Version() + " 200 Connection Established\r\n\r\n"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Debug("[HTTPS] Error sending 200 Connection Established to the client", err)
|
log.Debug("[HTTPS] Error sending 200 Connection Established to the client", err)
|
||||||
lConn.Close()
|
|
||||||
rConn.Close()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Debug("[HTTPS] Sent 200 Connection Estabalished to the client")
|
log.Debug("[HTTPS] Sent 200 Connection Estabalished to the client")
|
||||||
@ -180,9 +187,6 @@ func (lConn *Conn) HandleHttps(p *packet.HttpPacket) {
|
|||||||
clientHello, err := lConn.ReadBytes()
|
clientHello, err := lConn.ReadBytes()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Debug("[HTTPS] Error reading client hello from the client", err)
|
log.Debug("[HTTPS] Error reading client hello from the client", err)
|
||||||
log.Debug("[HTTPS] Closing local connection..")
|
|
||||||
lConn.Close()
|
|
||||||
rConn.Close()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -196,36 +200,27 @@ func (lConn *Conn) HandleHttps(p *packet.HttpPacket) {
|
|||||||
|
|
||||||
if _, err := rConn.WriteChunks(chunks); err != nil {
|
if _, err := rConn.WriteChunks(chunks); err != nil {
|
||||||
log.Debug("[HTTPS] Error writing client hello to ", p.Domain(), err)
|
log.Debug("[HTTPS] Error writing client hello to ", p.Domain(), err)
|
||||||
lConn.Close()
|
|
||||||
rConn.Close()
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
go io.Copy(lConn, rConn)
|
go lConn.Serve(rConn, "[HTTPS]", lConn.RemoteAddr().String(), p.Domain())
|
||||||
io.Copy(rConn, lConn)
|
rConn.Serve(lConn, "[HTTPS]", lConn.RemoteAddr().String(), p.Domain())
|
||||||
|
|
||||||
log.Debug("[HTTPS] Closing Connection..", p.Domain())
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (from *Conn) Serve(to *Conn, proto string, fd string, td string) {
|
func (from *Conn) Serve(to *Conn, proto string, fd string, td string) {
|
||||||
defer from.Close()
|
|
||||||
defer to.Close()
|
|
||||||
|
|
||||||
proto += " "
|
proto += " "
|
||||||
|
|
||||||
for {
|
for {
|
||||||
buf, err := from.ReadBytes()
|
from.conn.SetReadDeadline(time.Now().Add(2000 * time.Millisecond))
|
||||||
if err != nil {
|
buf, err := from.ReadBytes()
|
||||||
log.Debug(proto, "Error reading from ", fd, " ", err)
|
if err != nil {
|
||||||
break
|
log.Debug(proto, "Error reading from ", fd, " ", err)
|
||||||
}
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// log.Debug(proto, fd, " sent data: ", len(buf), "bytes")
|
if _, err := to.Write(buf); err != nil {
|
||||||
|
log.Debug(proto, "Error Writing to ", td)
|
||||||
if _, err := to.Write(buf); err != nil {
|
return
|
||||||
log.Debug(proto, "Error Writing to ", td)
|
}
|
||||||
break
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,6 @@ func (p *Proxy) Start() {
|
|||||||
log.Fatal("Error accepting connection: ", err)
|
log.Fatal("Error accepting connection: ", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
conn.SetKeepAlive(false)
|
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
b, err := conn.ReadBytes()
|
b, err := conn.ReadBytes()
|
||||||
|
Loading…
Reference in New Issue
Block a user