-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
45 lines (45 loc) · 1.25 KB
/
config.json
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
{
"api_key": "your_api_key",
"host": "https://your_gophish_server",
"recipient_email": "recipient@example.com",
"smtp_profiles": [
{
"name": "SMTP1",
"host": "smtp1.example.com",
"from_address": "noreply1@example.com",
"username": "user1",
"password": "pass1",
"ignore_cert_errors": true,
"headers": [
{"key": "X-Header", "value": "Foo Bar"}
]
},
{
"name": "SMTP2",
"host": "smtp2.example.com",
"from_address": "noreply2@example.com",
"username": "user2",
"password": "pass2",
"ignore_cert_errors": true,
"headers": [
{"key": "X-Header", "value": "Baz Quux"}
]
}
],
"group": {
"name": "Test Group",
"targets": [
{"email": "target1@example.com", "first_name": "John", "last_name": "Doe"}
]
},
"landing_page": {
"name": "Test Landing Page",
"html": "your_landing_page_content_here",
"is_base64": false,
"capture_credentials": true,
"capture_passwords": true
},
"template": {
"is_base64": false
}
}