-
Notifications
You must be signed in to change notification settings - Fork 532
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12195 from Security-Onion-Solutions/2.4/dev
2.4.40
- Loading branch information
Showing
247 changed files
with
523,252 additions
and
370,811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
20231204 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.4.30 | ||
2.4.40 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Copyright Security Onion Solutions LLC and/or licensed to Security Onion Solutions LLC under one | ||
# or more contributor license agreements. Licensed under the Elastic License 2.0 as shown at | ||
# https://securityonion.net/license; you may not use this file except in compliance with the | ||
# Elastic License 2.0. | ||
|
||
import sys | ||
import subprocess | ||
import os | ||
|
||
sys.path.append('/opt/saltstack/salt/lib/python3.10/site-packages/') | ||
import salt.config | ||
import salt.loader | ||
|
||
__opts__ = salt.config.minion_config('/etc/salt/minion') | ||
__grains__ = salt.loader.grains(__opts__) | ||
|
||
def check_needs_restarted(): | ||
osfam = __grains__['os_family'] | ||
val = '0' | ||
outfile = "/opt/so/log/sostatus/needs_restarted" | ||
|
||
if osfam == 'Debian': | ||
if os.path.exists('/var/run/reboot-required'): | ||
val = '1' | ||
elif osfam == 'RedHat': | ||
cmd = 'needs-restarting -r > /dev/null 2>&1' | ||
try: | ||
needs_restarting = subprocess.check_call(cmd, shell=True) | ||
except subprocess.CalledProcessError: | ||
val = '1' | ||
else: | ||
fail("Unsupported OS") | ||
|
||
with open(outfile, 'w') as f: | ||
f.write(val) | ||
|
||
def fail(msg): | ||
print(msg, file=sys.stderr) | ||
sys.exit(1) | ||
|
||
|
||
def main(): | ||
proc = subprocess.run(['id', '-u'], stdout=subprocess.PIPE, encoding="utf-8") | ||
if proc.stdout.strip() != "0": | ||
fail("This program must be run as root") | ||
|
||
check_needs_restarted() | ||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.