mirror of
https://github.com/gophish/gophish
synced 2024-11-12 23:37:11 +00:00
e3352f481e
Initial commit of SSRF mitigations. This fixes #1908 by creating a *net.Dialer which restricts outbound connections to only allowed IP ranges. This implementation is based on the blog post at https://www.agwa.name/blog/post/preventing_server_side_request_forgery_in_golang To keep things backwards compatible, by default we'll only block connections to 169.254.169.254, the link-local IP address commonly used in cloud environments to retrieve metadata about the running instance. For other internal addresses (e.g. localhost or RFC 1918 addresses), it's assumed that those are available to Gophish. To support more secure environments, we introduce the `allowed_internal_hosts` configuration option where an admin can set one or more IP ranges in CIDR format. If addresses are specified here, then all internal connections will be blocked except to these hosts. There are various bits about this approach I don't really like. For example, since various packages all need this functionality, I had to make the RestrictedDialer a global singleton rather than a dependency off of, say, the admin server. Additionally, since webhooks are implemented via a singleton, I had to introduce a new function, `SetTransport`. Finally, I had to make an update in the gomail package to support a custom net.Dialer.
145 lines
4.2 KiB
Go
145 lines
4.2 KiB
Go
package main
|
|
|
|
/*
|
|
gophish - Open-Source Phishing Framework
|
|
|
|
The MIT License (MIT)
|
|
|
|
Copyright (c) 2013 Jordan Wright
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"os"
|
|
"os/signal"
|
|
|
|
"gopkg.in/alecthomas/kingpin.v2"
|
|
|
|
"github.com/gophish/gophish/config"
|
|
"github.com/gophish/gophish/controllers"
|
|
"github.com/gophish/gophish/dialer"
|
|
"github.com/gophish/gophish/imap"
|
|
log "github.com/gophish/gophish/logger"
|
|
"github.com/gophish/gophish/middleware"
|
|
"github.com/gophish/gophish/models"
|
|
"github.com/gophish/gophish/webhook"
|
|
)
|
|
|
|
const (
|
|
modeAll string = "all"
|
|
modeAdmin string = "admin"
|
|
modePhish string = "phish"
|
|
)
|
|
|
|
var (
|
|
configPath = kingpin.Flag("config", "Location of config.json.").Default("./config.json").String()
|
|
disableMailer = kingpin.Flag("disable-mailer", "Disable the mailer (for use with multi-system deployments)").Bool()
|
|
mode = kingpin.Flag("mode", fmt.Sprintf("Run the binary in one of the modes (%s, %s or %s)", modeAll, modeAdmin, modePhish)).
|
|
Default("all").Enum(modeAll, modeAdmin, modePhish)
|
|
)
|
|
|
|
func main() {
|
|
// Load the version
|
|
|
|
version, err := ioutil.ReadFile("./VERSION")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
kingpin.Version(string(version))
|
|
|
|
// Parse the CLI flags and load the config
|
|
kingpin.CommandLine.HelpFlag.Short('h')
|
|
kingpin.Parse()
|
|
|
|
// Load the config
|
|
conf, err := config.LoadConfig(*configPath)
|
|
// Just warn if a contact address hasn't been configured
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
if conf.ContactAddress == "" {
|
|
log.Warnf("No contact address has been configured.")
|
|
log.Warnf("Please consider adding a contact_address entry in your config.json")
|
|
}
|
|
config.Version = string(version)
|
|
|
|
// Configure our various upstream clients to make sure that we restrict
|
|
// outbound connections as needed.
|
|
dialer.SetAllowedHosts(conf.AdminConf.AllowedInternalHosts)
|
|
webhook.SetTransport(&http.Transport{
|
|
DialContext: dialer.Dialer().DialContext,
|
|
})
|
|
|
|
err = log.Setup(conf.Logging)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
// Provide the option to disable the built-in mailer
|
|
// Setup the global variables and settings
|
|
err = models.Setup(conf)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
// Unlock any maillogs that may have been locked for processing
|
|
// when Gophish was last shutdown.
|
|
err = models.UnlockAllMailLogs()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
// Create our servers
|
|
adminOptions := []controllers.AdminServerOption{}
|
|
if *disableMailer {
|
|
adminOptions = append(adminOptions, controllers.WithWorker(nil))
|
|
}
|
|
adminConfig := conf.AdminConf
|
|
adminServer := controllers.NewAdminServer(adminConfig, adminOptions...)
|
|
middleware.Store.Options.Secure = adminConfig.UseTLS
|
|
|
|
phishConfig := conf.PhishConf
|
|
phishServer := controllers.NewPhishingServer(phishConfig)
|
|
|
|
imapMonitor := imap.NewMonitor()
|
|
if *mode == "admin" || *mode == "all" {
|
|
go adminServer.Start()
|
|
go imapMonitor.Start()
|
|
}
|
|
if *mode == "phish" || *mode == "all" {
|
|
go phishServer.Start()
|
|
}
|
|
|
|
// Handle graceful shutdown
|
|
c := make(chan os.Signal, 1)
|
|
signal.Notify(c, os.Interrupt)
|
|
<-c
|
|
log.Info("CTRL+C Received... Gracefully shutting down servers")
|
|
if *mode == modeAdmin || *mode == modeAll {
|
|
adminServer.Shutdown()
|
|
imapMonitor.Shutdown()
|
|
}
|
|
if *mode == modePhish || *mode == modeAll {
|
|
phishServer.Shutdown()
|
|
}
|
|
|
|
}
|