2022-01-08 06:35:32 +00:00
|
|
|
package packet
|
2022-01-07 17:41:02 +00:00
|
|
|
|
|
|
|
import (
|
2022-05-09 01:57:34 +00:00
|
|
|
"bufio"
|
2024-08-08 22:07:29 +00:00
|
|
|
"io"
|
2022-05-09 01:57:34 +00:00
|
|
|
"net"
|
|
|
|
"net/http"
|
2022-01-07 17:41:02 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2022-01-10 19:27:12 +00:00
|
|
|
var validMethod = map[string]struct{}{
|
|
|
|
"DELETE": {},
|
|
|
|
"GET": {},
|
|
|
|
"HEAD": {},
|
|
|
|
"POST": {},
|
|
|
|
"PUT": {},
|
|
|
|
"CONNECT": {},
|
|
|
|
"OPTIONS": {},
|
|
|
|
"TRACE": {},
|
|
|
|
"COPY": {},
|
|
|
|
"LOCK": {},
|
|
|
|
"MKCOL": {},
|
|
|
|
"MOVE": {},
|
|
|
|
"PROPFIND": {},
|
|
|
|
"PROPPATCH": {},
|
|
|
|
"SEARCH": {},
|
|
|
|
"UNLOCK": {},
|
|
|
|
"BIND": {},
|
|
|
|
"REBIND": {},
|
|
|
|
"UNBIND": {},
|
|
|
|
"ACL": {},
|
|
|
|
"REPORT": {},
|
|
|
|
"MKACTIVITY": {},
|
|
|
|
"CHECKOUT": {},
|
|
|
|
"MERGE": {},
|
|
|
|
"M-SEARCH": {},
|
|
|
|
"NOTIFY": {},
|
|
|
|
"SUBSCRIBE": {},
|
|
|
|
"UNSUBSCRIBE": {},
|
|
|
|
"PATCH": {},
|
|
|
|
"PURGE": {},
|
|
|
|
"MKCALENDAR": {},
|
|
|
|
"LINK": {},
|
|
|
|
"UNLINK": {},
|
|
|
|
}
|
|
|
|
|
2022-01-08 15:09:01 +00:00
|
|
|
type HttpPacket struct {
|
2022-01-11 17:15:45 +00:00
|
|
|
raw []byte
|
|
|
|
method string
|
|
|
|
domain string
|
2022-11-29 07:54:28 +00:00
|
|
|
port string
|
2022-01-15 16:44:00 +00:00
|
|
|
path string
|
2022-01-11 17:15:45 +00:00
|
|
|
version string
|
2022-01-07 17:41:02 +00:00
|
|
|
}
|
|
|
|
|
2022-03-05 02:51:17 +00:00
|
|
|
func ParseUrl(raw []byte) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-08-08 22:07:29 +00:00
|
|
|
func NewHttpPacketFromReader(rdr io.Reader) (*HttpPacket, error) {
|
|
|
|
sb := strings.Builder{}
|
|
|
|
tee := io.TeeReader(rdr, &sb)
|
|
|
|
p := &HttpPacket{}
|
|
|
|
err := parse(p, bufio.NewReader(tee))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
p.raw = []byte(sb.String())
|
|
|
|
return p, nil
|
2022-01-07 18:01:54 +00:00
|
|
|
}
|
|
|
|
|
2022-01-11 17:15:45 +00:00
|
|
|
func (p *HttpPacket) Raw() []byte {
|
|
|
|
return p.raw
|
|
|
|
}
|
|
|
|
func (p *HttpPacket) Method() string {
|
|
|
|
return p.method
|
|
|
|
}
|
2022-01-15 16:44:00 +00:00
|
|
|
|
2022-01-11 17:15:45 +00:00
|
|
|
func (p *HttpPacket) Domain() string {
|
|
|
|
return p.domain
|
|
|
|
}
|
2022-01-15 16:44:00 +00:00
|
|
|
|
2022-03-05 02:51:17 +00:00
|
|
|
func (p *HttpPacket) Port() string {
|
|
|
|
return p.port
|
|
|
|
}
|
|
|
|
|
2022-01-11 17:15:45 +00:00
|
|
|
func (p *HttpPacket) Version() string {
|
|
|
|
return p.version
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *HttpPacket) IsValidMethod() bool {
|
|
|
|
if _, exists := validMethod[p.Method()]; exists {
|
2022-01-07 17:41:02 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-01-11 17:15:45 +00:00
|
|
|
func (p *HttpPacket) IsConnectMethod() bool {
|
|
|
|
return p.Method() == "CONNECT"
|
2022-01-07 17:41:02 +00:00
|
|
|
}
|
|
|
|
|
2022-01-15 16:44:00 +00:00
|
|
|
func (p *HttpPacket) Tidy() {
|
2022-01-14 21:40:57 +00:00
|
|
|
s := string(p.raw)
|
|
|
|
|
2022-03-04 23:49:28 +00:00
|
|
|
lines := strings.Split(s, "\r\n")
|
2022-01-15 16:44:00 +00:00
|
|
|
|
|
|
|
lines[0] = p.method + " " + p.path + " " + p.version
|
|
|
|
|
2022-01-14 21:40:57 +00:00
|
|
|
for i := 0; i < len(lines); i++ {
|
|
|
|
if strings.HasPrefix(lines[i], "Proxy-Connection") {
|
|
|
|
lines[i] = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result := ""
|
2022-03-04 23:49:28 +00:00
|
|
|
|
2022-01-14 21:40:57 +00:00
|
|
|
for i := 0; i < len(lines); i++ {
|
|
|
|
if lines[i] == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-03-04 23:49:28 +00:00
|
|
|
result += lines[i] + "\r\n"
|
2022-01-14 21:40:57 +00:00
|
|
|
}
|
|
|
|
|
2022-11-29 07:54:28 +00:00
|
|
|
result += "\r\n"
|
2022-03-04 23:49:28 +00:00
|
|
|
|
2022-01-14 21:40:57 +00:00
|
|
|
p.raw = []byte(result)
|
|
|
|
}
|
|
|
|
|
2024-08-08 22:07:29 +00:00
|
|
|
func parse(p *HttpPacket, reader *bufio.Reader) error {
|
2022-11-29 07:54:28 +00:00
|
|
|
request, err := http.ReadRequest(reader)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
p.domain, p.port, err = net.SplitHostPort(request.Host)
|
|
|
|
if err != nil {
|
|
|
|
p.domain = request.Host
|
|
|
|
p.port = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
p.method = request.Method
|
|
|
|
p.version = request.Proto
|
|
|
|
p.path = request.URL.Path
|
|
|
|
|
|
|
|
if request.URL.RawQuery != "" {
|
|
|
|
p.path += "?" + request.URL.RawQuery
|
|
|
|
}
|
|
|
|
|
|
|
|
if request.URL.RawFragment != "" {
|
|
|
|
p.path += "#" + request.URL.RawFragment
|
|
|
|
}
|
|
|
|
if p.path == "" {
|
|
|
|
p.path = "/"
|
|
|
|
}
|
|
|
|
|
|
|
|
request.Body.Close()
|
|
|
|
return nil
|
2022-01-07 17:41:02 +00:00
|
|
|
}
|