-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.ps1.template
32 lines (26 loc) · 1.01 KB
/
config.ps1.template
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
# This file contains usernames and keys to download tools that should not be
# available in the sandbox or VM when doing analysis.
# You can use the `op` command to read the values from 1Password or similar tools
# for your password manager of choice.
# MaxMind GeoIP2 API key
$MAXMIND_LICENSE_KEY = "YOUR KEY"
# $MAXMIND_LICENSE_KEY = op read op://Private/MaxMind/api
# IPinfo.io API key
$IPINFO_API_KEY = "YOUR KEY"
# $IPINFO_API_KEY = op read op://Private/IPinfo/api
# GitHub API username and token
$GITHUB_USERNAME = "YOUR GITHUB USERNAME"
# $GITHUB_USERNAME = op read op://Private/github.com/username
$GITHUB_TOKEN = "YOUR GITHUB TOKEN"
# $GITHUB_TOKEN = op read op://Private/github.com/API-password
# Burp Suite edition
$BURP_SUITE_EDITION = "Community"
# $BURP_SUITE_EDITION = "Professional"
# Path to file.exe from Git
$GIT_FILE = "C:\Program Files\Git\usr\bin\file.exe"
$null = $IPINFO_API_KEY
$null = $BURP_SUITE_EDITION
$null = $GIT_FILE
$null = $GITHUB_USERNAME
$null = $GITHUB_TOKEN
$null = $MAXMIND_LICENSE_KEY