Skip to main content

Posts

Showing posts from April, 2022

Day :- 2 || Become a Good SOC Analyst

Day-2 of  #100daysofCyberSec Today, I learned about: * Introduction to SOC * SOC Types and Roles * SOC Analysts and Their Responsibilities * SIEM and Analyst Relationship Free Resources/Certifications for Cyber Security Analyst 1. Simplilearn SkillUp – Introduction to Cybersecurity https://lnkd.in/dwC_4JJj 2. Fortinet NSE1 and NSE2 – Network Security https://lnkd.in/dJrv6BsC 3. Picus Purple Academy – For Purple Teaming Skills and MITRE ATT&CK https://lnkd.in/dYX7Jej6 4. IT Masters CSU Short Free Courses – Phishing Countermeasure and other Related Cybersecurity Certifications https://lnkd.in/dr34iek7 5. Splunk Free Certifications – SIEM Tool https://lnkd.in/dN2yv8Sw 6. Palo Alto Beacon – for Cortex XSOAR Certification – SOAR Tool https://lnkd.in/dzMCrMHy #100daysofcybersecurity #100daysoflearning #100daysofcode #100daysofcodechallenge #cybersecurity #ethicalhacking #ethicalhackingtraining #productivity #productivityhacksm is", sum) Day:- 1 Introduction SIEM and SO C

Install Java 8 on CentOS 7

  Reading Time: 2 minutes In this tutorial, we’ll be showing you how to install Oracle’s Java 8 programming language specifically onto a CentOS 7 server. This simple object-oriented language is used for many of the applications and websites you come across today.  Let’s jump right in! Pre-flight Open the terminal and login as root.  If you are logged in as another user, you will need to add  sudo  before each command. Working on a  Linux CentOS 7 VPS server No installations of previous Java versions Installing Java 8 on CentOS 7 Step 1: Update As a matter of best practice we’ll update before installing any new programs: yum -y update Step 2: Install Java 8 yum install java-1.8.0-openjdk Step 3:  Verify Java is Installed java -version Example Output: java -version openjdk version "1.8.0_191" OpenJDK Runtime Environment (build 1.8.0_191-b12) OpenJDK 64-Bit Server VM (build 25.191-b12, mixed mode) Set Java’s Home Environment Step 1: Find Java’s ...