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

Fixes splunk client authentication issue #83

Merged
merged 1 commit into from
Feb 10, 2025
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions packages/flare/bin/cron_job_ingest_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,14 @@ def fetch_feed(
logger.error(f"Exception={e}")


def get_splunk_service(logger: Logger) -> Service:
def get_splunk_service(logger: Logger, token: str) -> Service:
try:
splunk_service = client.connect(
host=HOST,
port=SPLUNK_PORT,
app=APP_NAME,
token=sys.stdin.readline().strip(),
token=token,
autologin=True,
)
except Exception as e:
logger.error(str(e))
Expand All @@ -360,7 +361,13 @@ def get_splunk_service(logger: Logger) -> Service:

if __name__ == "__main__":
logger = Logger(class_name=__file__)
splunk_service: Service = get_splunk_service(logger=logger)
token = sys.stdin.readline().strip() # SEE: passAuth in https://docs.splunk.com/Documentation/Splunk/9.4.0/Admin/Inputsconf
if not token:
raise Exception(
"Token not found - Go through the complete app configuration to update the user token."
)

splunk_service: Service = get_splunk_service(logger=logger, token=token)
app: Application = splunk_service.apps[APP_NAME]

main(
Expand Down
1 change: 1 addition & 0 deletions packages/react-components/src/models/splunk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export interface Service {
indexes: () => Indexes;
savedSearches: () => Collection<Entity>;
serverInfo: () => any;
currentUser: () => any;
get: (splunkUrlPath: string, data: any) => HTTPResponse;
post: (splunkUrlPath: string, data: any) => HTTPResponse;
}
20 changes: 20 additions & 0 deletions packages/react-components/src/utils/setupConfiguration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ async function saveConfiguration(
SEVERITY_SAVED_SEARCH_NAME,
`source=${APP_NAME} index=${indexName} earliest=-24h latest=now | spath path=header.risk.score output=risk_score_str | eval risk_score = coalesce(tonumber(risk_score_str), 0) | eval risk_label = case(risk_score == 1, "Info", risk_score == 2, "Low", risk_score == 3, "Medium", risk_score == 4, "High", risk_score == 5, "Critical") | stats count by risk_label, risk_score | sort risk_score | fields - risk_score`
);
await updatePassAuthUsername(service);
await completeSetup(service);
await reloadApp(service);
if (isFirstConfiguration) {
Expand All @@ -174,6 +175,18 @@ async function updateEventIngestionCronJobInterval(
);
}

async function updatePassAuthUsername(service: Service): Promise<void> {
const username = await fetchCurrentUsername();
await updateConfigurationFile(
service,
'inputs',
'script://$SPLUNK_HOME/etc/apps/flare/bin/cron_job_ingest_events.py',
{
passAuth: username,
}
);
}

async function updateSavedSearchQuery(
service: Service,
savedSearchName: string,
Expand Down Expand Up @@ -422,6 +435,13 @@ function getSourceTypesFilterValue(
return sourceTypesFilter;
}

function fetchCurrentUsername(): Promise<string> {
const service = createService();
return promisify(service.currentUser)().then((user) => {
return user.name;
});
}

export {
createFlareIndex,
fetchApiKey,
Expand Down