Skip to content

Instantly share code, notes, and snippets.

@mgreen27
Last active May 31, 2021 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgreen27/1a8551187f8dd68cd00aa74d16581e90 to your computer and use it in GitHub Desktop.
Save mgreen27/1a8551187f8dd68cd00aa74d16581e90 to your computer and use it in GitHub Desktop.
Velociraptor server config
{
"Frontend": {
"hostname": "",
"bind_address": "0.0.0.0",
"bind_port": 443,
"public_path": "/opt/velociraptor/PUBLICTEMPLATE",
"default_client_monitoring_artifacts": [
"Generic.Client.Stats"
],
"dyn_dns": {
"ddns_username": "DDNSUSERTEMPLATE",
"ddns_password": "DDNSPWTEMPLATE"
}
},
"API": {
"bind_address": "0.0.0.0",
"bind_port": 8001,
"bind_scheme": "tcp",
"pinned_gw_name": "GRPC_GW"
},
"GUI": {
"public_url": "",
"bind_address": "0.0.0.0",
"bind_port": 443,
"authenticator": {
"type": "OAUTHTYPE",
"oauth_client_id": "OAUTHIDTEMPLATE",
"oauth_client_secret": "OAUTHSECRETTEMPLATE"
},
"initial_users": [
{
"name": "user1.domain.com",
"name": "user2.domain.com"
}
]
},
"autocert_cert_cache": "/opt/velociraptor",
"Datastore": {
"implementation": "FileBaseDataStore",
"location": "/opt/velociraptor",
"filestore_directory": "/opt/velociraptor"
},
"Logging": {
"output_directory": "/opt/velociraptor/logs",
"separate_logs_per_component": true
},
"Client": {
"server_urls": [],
"writeback_darwin": "/etc/BINARYNAMETEMPLATE.writeback.yaml",
"writeback_linux": "/etc/BINARYNAMETEMPLATE.writeback.yaml",
"writeback_windows": "$ProgramFiles\\BINARYNAMETEMPLATE\\BINARYNAMETEMPLATE.writeback.yaml",
"tempdir_windows": "$ProgramFiles\\BINARYNAMETEMPLATE\\Tools",
"windows_installer": {
"service_name": "BINARYNAMETEMPLATE",
"service_description": "MYCOMPANMY DFIR service",
"install_path": "$ProgramFiles\\BINARYNAMETEMPLATE\\BINARYNAMETEMPLATE.exe"
},
"darwin_installer": {
"service_name": "com.MYCOMPANY.BINARYNAMETEMPLATE",
"install_path": "/usr/local/sbin/BINARYNAMETEMPLATE"
},
"local_buffer": {
"filename_linux": "/var/tmp/BINARYNAMETEMPLATE_buffer.bin",
"filename_windows": "$ProgramFiles\\BINARYNAMETEMPLATE\\BINARYNAMETEMPLATE_buffer.bin",
"filename_darwin": "/var/tmp/BINARYNAMETEMPLATE_buffer.bin"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment