1.0 The Cyber Landscape, Frameworks, and Standards (*10%*)
1.1 Summarize the organization of a typical SOC and the tasks belonging to Analyst, Engineer and Architect roles.
1.2 Recognize common cyber industry controls, standards and frameworks and how Splunk incorporates those frameworks.
1.3 Describe key security concepts surrounding information assurance including confidentiality, integrity and availability and basic risk management.
2.0 Threat and Attack Types, Motivations, and Tactics (*20%*)
2.1 Recognize common types of attacks and attack vectors.
This file contains hidden or 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
#!/bin/bash | |
podman run -d \ | |
--conmon-pidfile=/home/lmaly/radarr.pid \ | |
--name=radarr \ | |
-e PUID=1000 \ | |
-e PGID=1000 \ | |
-e TZ=Australia/Sydney \ | |
-p 7878:7878 \ | |
-v /home/lmaly/radarr:/config \ | |
--restart unless-stopped \ |
This file contains hidden or 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
#!/bin/zsh | |
HOME=$HOME/.dropbox_lucky; ~/.dropbox-dist/dropboxd |
This file contains hidden or 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
# Version 9.1.0.2 | |
# | |
# This is an example alert_actions.conf. Use this file to configure alert | |
# actions for saved searches. | |
# | |
# To use one or more of these configurations, copy the configuration block into | |
# alert_actions.conf in $SPLUNK_HOME/etc/system/local/. You must restart | |
# Splunk to enable configurations. | |
# | |
# To learn more about configuration files (including precedence) please see the |
This file contains hidden or 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
#!/bin/zsh | |
source venv/bin/activate | |
python -c 'import keyring;keyring.set_password("system","username","");' | |
python -c 'import keyring;keyring.get_password("system","username");' | |
deactivate |
This file contains hidden or 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
#!/bin/bash | |
echo "----------------------------" | |
echo "Local Time" | |
date | |
echo "----------------------------" | |
echo "" | |
echo "Time in Los Angeles, CA" | |
export TZ=America/Los_Angeles | |
date | |
echo "" |
Example of the ImageContentSourcePolicy
:
spec:
repositoryDigestMirrors:
- mirrors: artifactory-proxy.domain.com.au/redhat-registry-openshift-remote/redhat-openshift-logging-kibana6-rhel8
source: registry.redhat.io/openshift-logging/kibana6-rhel8
- mirrors: artifactory-proxy.domain.com.au/redhat-registry-openshift-remote/redhat-openshift-gitops-1-gitops-operator-bundle
source: registry.connect.redhat.io/openshift-gitops-1/gitops-operator-bundle
We can make this file beautiful and searchable if this error is corrected: It looks like row 4 should actually have 2 columns, instead of 1 in line 3.
This file contains hidden or 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
Amazon Web Services in Action, Third Edition;https://www.manning.com/dashboard/download?productId=2440&downloadFormat=PDF;pdf | |
Amazon Web Services in Action, Third Edition;https://www.manning.com/dashboard/download?productId=2440&downloadFormat=EPUB;epub | |
Amazon Web Services in Action, Third Edition;https://www.manning.com/dashboard/download?productId=2440&downloadFormat=KINDLE;mobi | |
Regular Expression Puzzles and AI Coding Assistants;https://www.manning.com/dashboard/download?productId=3063&downloadFormat=PDF;pdf | |
Regular Expression Puzzles and AI Coding Assistants;https://www.manning.com/dashboard/download?productId=3063&downloadFormat=EPUB;epub | |
Regular Expression Puzzles and AI Coding Assistants;https://www.manning.com/dashboard/download?productId=3063&downloadFormat=KINDLE;mobi | |
Azure Security;https://www.manning.com/dashboard/download?productId=2733&downloadFormat=PDF;pdf | |
Azure Security;https://www.manning.com/dashboard/download?productId=2733&downloadFormat=EPUB;epub | |
Azure Security;https://www.manning.com/da |
This file contains hidden or 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
#!/bin/zsh | |
# Turn the monitor brightness down to almost zero | |
dconf write /org/gnome/shell/extensions/soft-brightness/current-brightness 0.01 | |
# Turn the monitor brightness up to usable value | |
dconf write /org/gnome/shell/extensions/soft-brightness/current-brightness 0.8 |