Your information deserves the same protection as your money. TestInsides runs a strict data safety system for every 1z0-1104-23 buyer in 2026, so preparing for the Oracle Cloud Infrastructure 2023 Security Professional never means trading away your privacy.
Oracle 1z0-1104-23 Exam Overview:
| Certification Vendor: | Oracle |
|---|---|
| Exam Name: | Oracle Cloud Infrastructure 2023 Security Professional |
| Exam Number: | 1Z0-1104-23 |
| Related Certifications: | Oracle Cloud Infrastructure Architect Associate Oracle Cloud Infrastructure Foundations Associate Oracle Cloud Infrastructure Security Associate |
| Exam Duration: | 90 minutes |
| Exam Format: | Multiple Choice, Scenario-based Questions, Multiple Response |
| Available Languages: | English |
| Certificate Validity Period: | 2 years |
| Real Exam Qty: | 50-60 |
| Passing Score: | 68% |
| Exam Price: | USD 245 |
| Recommended Training: | Oracle University OCI Security Training |
| Exam Registration: | Oracle Certification Registration |
| Sample Questions: | ![]() |
| Exam Way: | Online proctored or onsite test center exam |
| Pre Condition: | Recommended: Oracle Cloud Infrastructure Security Associate level knowledge or equivalent cloud security experience. |
| Official Syllabus URL: | https://education.oracle.com |
Oracle 1z0-1104-23 Exam Syllabus Topics:
| Section | Objectives |
|---|---|
| Security Services in Oracle Cloud Infrastructure | - Vulnerability Scanning Service - Security Zones - Oracle Cloud Guard |
| Identity and Access Management (IAM) | - Users, Groups, and Compartments - Federation and Identity Providers - Policies and Dynamic Groups |
| Data Protection and Encryption | - Oracle Vault and Key Management - Encryption at Rest and in Transit - Secrets Management |
| Monitoring, Logging, and Security Operations | - Logging and Monitoring - SIEM Integration - Audit Service |
| Network Security | - VCN Security Architecture - Web Application Firewall (WAF) - Security Lists and Network Security Groups |
Key Facts About the 1z0-1104-23 Exam and TestInsides's Service
The current exam information lists 50-60 questions for the 1z0-1104-23 exam, with 90 minutes minutes allowed. Practicing against the clock at home builds the pacing habits that exam day rewards.
The Oracle Cloud Infrastructure 2023 Security Professional blueprint covers these main domains:
- Identity and Access Management (IAM)
- Data Protection and Encryption
- Security Services in Oracle Cloud Infrastructure
Additional domains complete the official outline, and our bank covers the full range.
You can register through these official channels:
Book early for the best choice of dates and locations — and double-check your spam folder for the confirmation email.
Your money is protected by clear conditions. If you fail the corresponding exam within 60 days of purchase, send us a scanned copy of your enrollment slip and your official Score Report PDF within two days of the exam date; verified claims receive a full refund within seven days. The exclusions: exams taken within three days of purchase, a candidate name that does not match the payer, and free or expired products. If you prefer, we can exchange your product for two others of equal value instead.
Oracle lists the following prerequisites for the Oracle Cloud Infrastructure 2023 Security Professional: Recommended: Oracle Cloud Infrastructure Security Associate level knowledge or equivalent cloud security experience..
Check the official certification page for the latest requirements before booking.
Because we remove the guesswork at every step. The 1z0-1104-23 bank consolidates the Oracle Cloud Infrastructure 2023 Security Professional knowledge points into expert-verified Q&As instead of leaving you to sift through the internet alone. A free demo shows the quality before you buy; instant delivery starts you the minute you do; 365 days of free updates — with a notification each time a new version releases — keep you current; and a strict information safety system plus a 7/24 golden-standard support team protect you throughout.
Oracle recommends the following official training options:
Structured coursework plus regular question practice is the combination most candidates find effective.
As of the latest information, the 1z0-1104-23 exam requires a score of 68% to pass, and registration costs USD 245. Oracle sets both figures, so verify them on the official site when you book.
Upon successful payment, our system automatically emails the product to your mailbox and shows an instant download link — delivery typically takes about a minute. If nothing arrives within two hours, check your spam folder first, then contact our 7/24 support team. Installations are unlimited. Your purchase also includes 365 days of free updates: whenever we release a new version, we notify you to download it — no need to wait or worry about validity — and a 50% renewal discount applies when the period ends.
Oracle Cloud Infrastructure 2023 Security Professional Sample Questions:
Which OCI service canindex, enrich, aggregate, explore, search, analyze, correlate, visualize and monitor data?
- A. Data Guard
- B. Logging Analytics
- C. WAF
- D. Data Safe
Correct Answer: B 🗳️
Explanation: Only visible for TestInsides members. You can sign-up / login (it's free).
which two responsibilities will be oracle when you move your it infrastructure to oracle cloud infrastructure?
- A. Strong Isolation
- B. PROVIDING STRONG SECURITY LIST
- C. MAINTAINING CUSTOMER DATA
- D. Strong IAM Framework
- E. ACCOUNT ACCESS MANAGEMENT
Correct Answer: A,D 🗳️
Explanation: Only visible for TestInsides members. You can sign-up / login (it's free).
Challenge 1 - Task 5 of 5
Authorize OCI Resources to Retrieve the Secret from the Vault
Scenario
You are working on a Python program running on a compute instance that needs to access an external service. To access the external service, the program needs credentials (password). Given that it is not a best security practice, you decide not to hard code the credential in the program. Instead, you store the password (secret) in a vault using the OCI Vault service. The requirement now is to authorize the compute instance so that the Python program can retrieve the password (secret) by making an API call to the OCI Vault.
Preconfigured
To complete this requirement, you are provided with:
An OCI Vault to store the secret required by the program, which is created in the root compartment as PBT_Vault_SP.
An instance principal IAM service, which enables instances to be authorized actors (principals) that can retrieve the secret from the OCI Vault.
A dynamic group named PBT_Dynamic_Group_SP with permissions to access the OCI Vault. This dynamic group includes all of the instances in your compartment.
Access to Cloud Shell.
Permissions to perform only the tasks within the challenge.
Note: You are provided with access to an OCI Tenancy, an assigned compartment, and OCI credentials. Throughout your exam, ensure to use the assigned Compartment 99234021-C01 and Region us-ashburn-1.
Correct Answer:
See the solution below in Explanation
Explanation:
SOLUTION:
Select the Developer Tools icon at the right of the OCI console header and click Cloud Shell to launch your Cloud Shell.
While Cloud Shell is launching, take a moment to locate the public and private keys that you downloaded to your workstation in the previous section.
Example Public Key name: ssh-key-<date>.key.pub
Example Private Key name: ssh-key-<date>.key
Once the Cloud Shell window is open, upload the private key to the Cloud Shell:
Click the Settings icon in the top-right corner of the Cloud Shell window and click Upload.
Navigate to and select the private key. Either drag the private key to the Drop a file window or click Select from your computer, select the private key, and click Upload.
Change the private key permissions by issuing the following command:
chmod 400 <private key name>.key
Retrieve the Public IP address of the instance that you created in the previous section and paste it to connect to the instance using the opc user in the Cloud Shell.
ssh -i <private key name> opc<public IP address of instance>
After connecting to the compute instance, run the following commands to install/verify Python and OCI CLI packages on the Linux Instance.
sudo dnf -y install oraclelinux-developer-release-el8
sudo dnf install python36-oci-cli
After installing Python and the required dependencies, download the Python script to retrieve the secret.
wget https://objectstorage.us-ashburn-1.oraclecloud.com/n/ocuocictrng5/b/PBT_Storage/o/getsecret.py Open a Python file with a nano editor.
nano getsecret.py
In the Python script, replace the secret ID ocid with your secret ID.
Replace secret id value below with the ocid of your secret secret id = <secret id> For example: Secret id = "ocid1.vaultsecret.oci.iad.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Note: if you have not already copied the secret ID, go to Vault and select the Secret link from the resources. Then, in List Scope, choose <your working compartment>, click your secret key, and copy the OCID.
To save the script hit:
Ctrl+o > Enter [To write/save]
Ctrl+x > Yes > Enter [To exit]
Make the getsecret .py script executable.
chmod +x getsecret.py
Run the following command to retrieve the secret:
python getsecret.py
The secret content created in the vault has been retrieved by the application running on the instance. Instance Principal and the Vault enable you to abstract the difficulty of developing your own security strategy for storing and encrypting passwords and other sensitive information.
Which is NOT a compliance document?
- A. Bridge letter
- B. Certificate
- C. Attestation
- D. Penetration test report
Correct Answer: D 🗳️
Explanation: Only visible for TestInsides members. You can sign-up / login (it's free).
Your web application is protected by the Web Application Firewall (WAF) service in Oracle Cloud Infrastructure (OCT). You want to block traffic originating from a country where your company is not allowed to do business. Where would you create a WAF rule to block traffic from a specific country? (Choose the best Answer.)
- A. Origin Management
- B. Cache Rules
- C. Access Control Rules
- D. Protection Rules
- E. Bet Management
Correct Answer: C 🗳️




