github
Note
This module only works on Windows, Linux and macOS. It is recommended to have it enabled only in one agent to avoid repeated logs.
Configuration options of the GitHub module.
Options
Options |
Allowed values |
---|---|
yes, no |
|
yes, no |
|
A positive number + suffix |
|
A positive number + suffix |
|
A positive number + suffix |
|
N/A |
|
Any string |
|
Any string |
|
N/A |
|
web, git, all |
enabled
Enabled the GitHub wodle.
Default value |
yes |
Allowed values |
yes, no |
only_future_events
Set it to yes to collect events generated since the ThreatLockDown manager was started.
By default, when ThreatLockDown starts it will only read all log content from GitHub since the manager started.
Default value |
yes |
Allowed values |
yes, no |
interval
The interval between ThreatLockDown wodle executions.
Note
When ThreatLockDown starts, it waits for the configured time interval before running the first scan, unless the module has already been running before and the only_future_events
option is set to no.
Default value |
10m |
Allowed values |
A positive number that should contain a suffix character indicating a time unit, such as, s (seconds), m (minutes), h (hours), d (days) |
time_delay
Specifies the delay time of the scan respect to the current time, by default it is 30 seconds.
Note
This parameter represents how close to the current time the module will collect events, the smaller the value, the closer to real time the collection will be. The problem is that sometimes the GitHub delay increases the chance of missing events. It is recommended to use values greater than 30 seconds.
Default value |
30s |
Allowed values |
A positive number that should contain a suffix character indicating a time unit, such as, s (seconds), m (minutes), h (hours), d (days) |
curl_max_size
Specifies the maximum size allowed for the GitHub API response.
Default value |
1M |
Allowed values |
A positive number that should contain a suffix character indicating a size unit, such as b/B (bytes), k/K (kilobytes), m/M (megabytes), and g/G (gigabytes). |
api_auth
This block configures the credential for the authentication with the GitHub REST API.
Warning
In case of invalid configuration, after the third scan attempt, a warning message is generated in the log file and an alert is triggered.
Options |
Allowed values |
---|---|
Any string |
|
Any string |
api_auth\org_name
Name of your organization in GitHub.
Default value |
N/A |
Allowed values |
Any string |
api_auth\api_token
Personal access token to authenticate with the GitHub API.
Default value |
N/A |
Allowed values |
Any string |
Note
This block can be repeated to give the possibility to connect with more than one organization on GitHub.
api_parameters
This block configures the internal options in the GitHub REST API.
Options |
Allowed values |
---|---|
Any string |
api_parameters\event_type
The event types to include:
web: returns web (non-Git) events.
git: returns Git events.
all: returns both web and Git events.
Default value |
all |
Allowed values |
web, git, all |
Example of configuration
<github>
<enabled>yes</enabled>
<interval>1m</interval>
<time_delay>30s</time_delay>
<curl_max_size>1M</curl_max_size>
<only_future_events>yes</only_future_events>
<api_auth>
<org_name>dummy</org_name>
<api_token>ghp_oiasd6efbvptrfdua8fyepnfdc78ewf324jg</api_token>
</api_auth>
<api_parameters>
<event_type>all</event_type>
</api_parameters>
</github>
Example of multiple organizations
<github>
<enabled>yes</enabled>
<interval>1m</interval>
<time_delay>1m</time_delay>
<curl_max_size>1M</curl_max_size>
<only_future_events>no</only_future_events>
<api_auth>
<org_name>dummy1</org_name>
<api_token>ghp_oiasd6efbvptrfdua8fyepnfdc78ewf324jg</api_token>
</api_auth>
<api_auth>
<org_name>dummy2</org_name>
<api_token>ghp_oiasd6efbvptrfdua8fyepnfdc78ewf324jg</api_token>
</api_auth>
<api_parameters>
<event_type>git</event_type>
</api_parameters>
</github>