Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proxy support #14

Merged
merged 7 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.DS_Store
.DS_Store
__pycache__/
*.pyc
output/
4 changes: 4 additions & 0 deletions TA-microsoft-graph-security-score/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ UNINSTALL ADD-ON

RELEASE NOTES
-------------
Version 1.2.0 (Aug 2024)
* Added proxy support
* Upgraded addon to use latest UCC v5.48.2

Version 1.1.1 (Jul 2023)
* Changed checkpoint file location to make addon cloud compatible.

Expand Down
2 changes: 2 additions & 0 deletions TA-microsoft-graph-security-score/README/inputs.conf.spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[graph_security_score_input://<name>]
interval =
index =
azure_ad_tenant_id = <string> Azure Tenant ID
application_id = <string> Application ID
client_secret = <string> Client Secret
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
[proxy]
proxy_enabled =
proxy_type =
proxy_url =
proxy_port =
proxy_username =
proxy_password =
proxy_rdns =

[logging]
loglevel = <string> DEBUG|INFO|WARNING|ERROR|CRITICAL
loglevel =
2 changes: 2 additions & 0 deletions TA-microsoft-graph-security-score/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1.2.0
1.2.0
113 changes: 55 additions & 58 deletions TA-microsoft-graph-security-score/app.manifest
Original file line number Diff line number Diff line change
@@ -1,62 +1,59 @@
{
"schemaVersion": "2.0.0",
"info": {
"title": "Microsoft Graph Security Score Add-on",
"id": {
"group": null,
"name": "TA-microsoft-graph-security-score",
"version": "1.1.1"
"dependencies": {},
"incompatibleApps": {},
"info": {
"author": [
{
"company": null,
"email": null,
"name": "CrossRealms International"
}
],
"classification": {
"categories": [],
"developmentStatus": null,
"intendedAudience": null
},
"commonInformationModels": null,
"description": "This Add-on pulls secure score from Microsoft Graph Security API.",
"id": {
"group": null,
"name": "TA-microsoft-graph-security-score",
"version": "1.2.0"
},
"license": {
"name": null,
"text": null,
"uri": null
},
"privacyPolicy": {
"name": null,
"text": null,
"uri": null
},
"releaseDate": null,
"releaseNotes": {
"name": null,
"text": null,
"uri": null
},
"title": "Microsoft Graph Security Score Add-on"
},
"author": [
{
"name": "CrossRealms International",
"email": null,
"company": null
}
],
"releaseDate": null,
"description": "This Add-on pulls secure score from Microsoft Graph Security API.",
"classification": {
"intendedAudience": null,
"categories": [],
"developmentStatus": null
},
"commonInformationModels": null,
"license": {
"name": null,
"text": null,
"uri": null
},
"privacyPolicy": {
"name": null,
"text": null,
"uri": null
"inputGroups": {},
"platformRequirements": {
"splunk": {
"Enterprise": "*"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shall we include Cloud here as well?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is fine. Maxmind app has same config.

}
},
"releaseNotes": {
"name": null,
"text": null,
"uri": null
}
},
"dependencies": {
},
"tasks": [],
"inputGroups": {
},
"incompatibleApps": {
},
"supportedDeployments": [
"_standalone",
"_distributed",
"_search_head_clustering"
],
"platformRequirements": {
"splunk": {
"Enterprise": "*"
}
},
"targetWorkloads": [
"_search_heads",
"_forwarders"
]
"schemaVersion": "2.0.0",
"supportedDeployments": [
"_standalone",
"_distributed",
"_search_head_clustering"
],
"targetWorkloads": [
"_search_heads",
"_forwarders"
],
"tasks": []
}

Large diffs are not rendered by default.

Loading