-
Notifications
You must be signed in to change notification settings - Fork 81
/
config.py
36 lines (32 loc) · 1.2 KB
/
config.py
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
# -*- coding: utf8 -*-
defaultPath = {
'agentRelease': './agent/release',
'incoming': './incoming',
'modules': './modules',
'poshTpl': './templates/posh.tpl',
'onelinerTpl': './templates/oneliner.tpl',
'oneLiner2Tpl': './templates/oneliner2.tpl',
'batchTpl': './templates/batch.tpl',
'msbuildTpl': './templates/msbuild.tpl',
'duckyTpl': './templates/ducky.tpl',
'javascriptTpl': './templates/javascript.tpl',
'javascript2Tpl': './templates/dbc2Loader.tpl',
'sctTpl': './templates/sct.tpl',
'runPSModuleTpl': './templates/runPSModule.tpl',
'persistTpl': './templates/persist.tpl',
'macroStager': '/tmp/stager.vba',
'batchStager': '/tmp/stager.bat',
'msbuildStager': '/tmp/msbuild.xml',
'duckyStager': '/tmp/ducky.txt',
'javascriptStager': '/tmp/stager.js',
'javascriptStager2': '/tmp/stager2.js',
'sctStager': '/tmp/stager.sct'
}
# Dropbox API access token
# If this entry is empty or missing, user will be prompted to enter it manually at startup
defaultAccessToken = ""
# Base64 encoded 128 bits key used for AES encryption
# If this entry is empty or missing, user will be prompted to enter it manually at startup
defaultMasterKey = ""
# Background polling period in seconds
defaultPollingPeriod = 8