-
Notifications
You must be signed in to change notification settings - Fork 0
/
oc_email_server.go
158 lines (131 loc) · 3.41 KB
/
oc_email_server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package main
import (
"bufio"
"bytes"
"crypto/tls"
"fmt"
"io/ioutil"
"log"
"net"
"net/http"
"net/smtp"
"regexp"
"strings"
"golang.org/x/net/proxy"
)
const (
password = "secretPassword" // Set your desired password here
from = "noreply@your.domain>"
host = "smtp.your.domain"
port = "2525"
torProxy = "127.0.0.1:9050"
)
func main() {
http.HandleFunc("/upload", handleUpload)
fmt.Println("Server is running on http://localhost:8083")
http.ListenAndServe(":8083", nil)
}
func handleUpload(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
http.Error(w, "Only POST requests are allowed", http.StatusMethodNotAllowed)
return
}
// Check the password
if r.Header.Get("X-Password") != password {
http.Error(w, "Invalid password", http.StatusUnauthorized)
return
}
file, _, err := r.FormFile("file")
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
defer file.Close()
// Read the file content
content, err := ioutil.ReadAll(file)
if err != nil {
log.Println("Error reading file:", err)
http.Error(w, "Error reading file", http.StatusInternalServerError)
return
}
to, err := extractToHeader(content)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
if to == "" {
http.Error(w, "Missing To email address", http.StatusBadRequest)
return
}
// Send the content via email
err = sendMail(content, to)
if err != nil {
log.Println("Error sending mail:", err)
http.Error(w, "Error sending mail: "+err.Error(), http.StatusInternalServerError)
return
}
// Output to the client
fmt.Fprintf(w, "File received and sent.\nNo data is stored or logged by Onion Courier.\n")
}
func extractToHeader(content []byte) (string, error) {
scanner := bufio.NewScanner(bytes.NewReader(content))
re := regexp.MustCompile(`(?i)^To:\s*(.*)$`) // Case insensitive match for "To:"
for scanner.Scan() {
line := scanner.Text()
if match := re.FindStringSubmatch(line); match != nil {
return strings.TrimSpace(match[1]), nil
}
}
if err := scanner.Err(); err != nil {
return "", fmt.Errorf("error reading content: %v", err)
}
return "", nil
}
func sendMail(message []byte, to string) error {
// Create a SOCKS5 dialer
dialer, err := proxy.SOCKS5("tcp", torProxy, nil, proxy.Direct)
if err != nil {
return fmt.Errorf("error creating SOCKS5 dialer: %v", err)
}
// Create a custom dialer function
customDialer := func(network, addr string) (net.Conn, error) {
return dialer.Dial(network, addr)
}
// Create a custom TLS config
tlsConfig := &tls.Config{
InsecureSkipVerify: true,
}
// Connect to the server using the custom dialer
conn, err := customDialer("tcp", host+":"+port)
if err != nil {
return fmt.Errorf("error connecting to server: %v", err)
}
c, err := smtp.NewClient(conn, host)
if err != nil {
return fmt.Errorf("error creating SMTP client: %v", err)
}
err = c.StartTLS(tlsConfig)
if err != nil {
return fmt.Errorf("error starting TLS: %v", err)
}
if err = c.Mail(from); err != nil {
return fmt.Errorf("error Mail: %v", err)
}
if err = c.Rcpt(to); err != nil {
return fmt.Errorf("error Rcpt: %v", err)
}
w, err := c.Data()
if err != nil {
return fmt.Errorf("error Data: %v", err)
}
_, err = w.Write(message)
if err != nil {
return fmt.Errorf("error Write: %v", err)
}
err = w.Close()
if err != nil {
return fmt.Errorf("error Close: %v", err)
}
c.Quit()
return nil
}