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
| 1. A project manager needs to verify users and authorize access to systems and applications. Which security control should the project manager implement? | |
| correct Answer: Multi-factor authentication | |
| 2. Which of the following show how system and network architecture concepts are related to security operations? (Select the three best options.) | |
| correct Answer: Zero trust, Cloud access security broker (CASB) and Secure access secure edge (SASE) | |
| 3. Which of the following is a significant difference between containerization and virtualization in the context of security operations? | |
| correct Answer: Virtualization enables multiple operating systems to run on a single physical machine, while containerization does not. | |
| 4. Which of the following is a potential security risk associated with implementing a single sign-on (SSO) solution in a security operations environment? |
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
| enable | |
| configure terminal | |
| hostname R1 | |
| no ip domain-lookup | |
| ip cef | |
| ! | |
| interface ethernet0/0 | |
| description LINK-DEBIAN | |
| ip address 191.168.0.2 255.255.255.252 | |
| ip nat outside |
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 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
| import { NextApiRequest, NextApiResponse } from 'next'; | |
| import ical, { ICalEventStatus } from 'ical-generator'; | |
| const iCal = async (req: NextApiRequest, res: NextApiResponse) => { | |
| const calendar = ical({ | |
| name: 'my first iCal', | |
| prodId: '//cia//inc//EN', | |
| url: 'site.com' | |
| }); |
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
| from sklearn.model_selection import train_test_split | |
| from sklearn.metrics import roc_curve, roc_auc_score | |
| import matplotlib.pyplot as plt | |
| from sklearn.preprocessing import StandardScaler | |
| from sklearn.tree import DecisionTreeClassifier | |
| from sklearn.linear_model import LogisticRegression | |
| from sklearn.ensemble import (RandomForestClassifier) | |
| training = [ | |
| [10, 10, 21, 3, 4, 1, 1, 0, 1, 0, 1], |
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
| from sklearn.tree import DecisionTreeClassifier | |
| from sklearn.linear_model import LogisticRegression | |
| from sklearn.ensemble import ( | |
| RandomForestClassifier, | |
| AdaBoostClassifier, | |
| GradientBoostingClassifier, | |
| ) | |
| from sklearn.preprocessing import StandardScaler | |
| from sklearn.naive_bayes import GaussianNB | |
| from sklearn.neighbors import KNeighborsClassifier |
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
| FROM debian:latest | |
| RUN apt update -y | |
| RUN apt install net-tools curl -y |
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
| //pegar apenas o id do caparelho | |
| this.oneSignal.startInit('one signal id', 'google id').endInit(); | |
| const { userId } = await this.oneSignal.getIds() | |
| //fazer algo quando o push é recebido e quando é aberto | |
| this.oneSignal.startInit('', '') | |
| .handleNotificationReceived(() => {}) | |
| .handleNotificationOpened(() => {}) | |
| .endInit(); |
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
| diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null | |
| to | |
| diff "${SRCROOT}/Podfile.lock" "${SRCROOT}/Pods/Manifest.lock" > /dev/null |
NewerOlder