mirror of https://github.com/gophish/gophish
Add configurable list of filetypes that allow substitutions in attachments
parent
cec2da5128
commit
642d5fd7a4
14
config.json
14
config.json
|
@ -19,5 +19,17 @@
|
|||
"logging": {
|
||||
"filename": "",
|
||||
"level": ""
|
||||
},
|
||||
"attachments": {
|
||||
"plain_text_file_list": [
|
||||
".txt",
|
||||
".html",
|
||||
".ics",
|
||||
".ps1",
|
||||
".bat",
|
||||
".vbs",
|
||||
".sh",
|
||||
".py"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -26,6 +26,11 @@ type PhishServer struct {
|
|||
KeyPath string `json:"key_path"`
|
||||
}
|
||||
|
||||
// Attachments represents the handling of attachments in emails
|
||||
type Attachments struct {
|
||||
PlainTextFileList []string `json:"plain_text_file_list"`
|
||||
}
|
||||
|
||||
// Config represents the configuration information.
|
||||
type Config struct {
|
||||
AdminConf AdminServer `json:"admin_server"`
|
||||
|
@ -37,6 +42,7 @@ type Config struct {
|
|||
TestFlag bool `json:"test_flag"`
|
||||
ContactAddress string `json:"contact_address"`
|
||||
Logging *log.Config `json:"logging"`
|
||||
Attachments Attachments `json:"attachments"`
|
||||
}
|
||||
|
||||
// Version contains the current gophish version
|
||||
|
|
|
@ -26,7 +26,19 @@ var validConfig = []byte(`{
|
|||
"db_name": "sqlite3",
|
||||
"db_path": "gophish.db",
|
||||
"migrations_prefix": "db/db_",
|
||||
"contact_address": ""
|
||||
"contact_address": "",
|
||||
"attachments": {
|
||||
"plain_text_file_list": [
|
||||
".txt",
|
||||
".html",
|
||||
".ics",
|
||||
".ps1",
|
||||
".bat",
|
||||
".vbs",
|
||||
".sh",
|
||||
".py"
|
||||
]
|
||||
}
|
||||
}`)
|
||||
|
||||
func createTemporaryConfig(t *testing.T) *os.File {
|
||||
|
|
|
@ -61,6 +61,21 @@ func (a *Attachment) ApplyTemplate(ptx PhishingTemplateContext) (io.Reader, erro
|
|||
// "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
|
||||
fileExtension := filepath.Ext(a.Name)
|
||||
|
||||
if array_contains(conf.Attachments.PlainTextFileList, fileExtension) {
|
||||
b, err := ioutil.ReadAll(decodedAttachment)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
processedAttachment, err := ExecuteTemplate(string(b), ptx)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if processedAttachment == string(b) {
|
||||
a.vanillaFile = true
|
||||
}
|
||||
return strings.NewReader(processedAttachment), nil
|
||||
}
|
||||
|
||||
switch fileExtension {
|
||||
|
||||
case ".docx", ".docm", ".pptx", ".xlsx", ".xlsm":
|
||||
|
@ -136,21 +151,18 @@ func (a *Attachment) ApplyTemplate(ptx PhishingTemplateContext) (io.Reader, erro
|
|||
zipWriter.Close()
|
||||
return bytes.NewReader(newZipArchive.Bytes()), err
|
||||
|
||||
case ".txt", ".html", ".ics":
|
||||
b, err := ioutil.ReadAll(decodedAttachment)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
processedAttachment, err := ExecuteTemplate(string(b), ptx)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if processedAttachment == string(b) {
|
||||
a.vanillaFile = true
|
||||
}
|
||||
return strings.NewReader(processedAttachment), nil
|
||||
default:
|
||||
return decodedAttachment, nil // Default is to simply return the file
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
func array_contains(s []string, str string) bool {
|
||||
for _, v := range s {
|
||||
if v == str {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue