]> Sergey Matveev's repositories - tofuproxy.git/blob - rounds/spy.go
e830701c5bef90715c38e694a131f38fd12069dd
[tofuproxy.git] / rounds / spy.go
1 /*
2 tofuproxy -- HTTP proxy with TLS certificates management
3 Copyright (C) 2021 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package rounds
19
20 import (
21         "fmt"
22         "net/http"
23         "strings"
24
25         "go.stargrave.org/tofuproxy/caches"
26         "go.stargrave.org/tofuproxy/fifos"
27 )
28
29 func IsSpy(host string) bool {
30         caches.SpiesM.RLock()
31         defer caches.SpiesM.RUnlock()
32         for _, spy := range caches.Spies {
33                 if strings.HasSuffix(host, spy) {
34                         return true
35                 }
36         }
37         return false
38 }
39
40 func RoundDenySpy(
41         host string,
42         resp *http.Response,
43         w http.ResponseWriter,
44         req *http.Request,
45 ) (bool, error) {
46         if IsSpy(host) {
47                 http.NotFound(w, req)
48                 fifos.LogVarious <- fmt.Sprintf("%s %s\tdeny spy", req.Method, req.URL)
49                 return false, nil
50         }
51         return true, nil
52 }