Monday, August 24, 2020

AWS - How to Setup VPC (Public & Private Subnet)


#aws #ec2 #publicsubnet #privatesubnet #securecloud #cloud

This video will help you to understand. How to setup VPC with Public and Private Subnet.

You can create a public-facing subnet for your web servers that have access to the internet. You can also place your backend systems, such as databases or application servers, in a private-facing subnet with no internet access. You can use multiple layers of security, including security groups and network access control lists, to help control access to Amazon EC2 instances in each subnet.

More Videos
Wazuh - https://www.youtube.com/watch?v=WqQUIz5XRpQ&list=PLissCAcRHDmKLFYXQQxuOOFow1wypOdlP

Digital Ocean - https://www.youtube.com/watch?v=dAbHVXVql8s&list=PLissCAcRHDmKcrj6qQrks_YZFYf8bHjCN

English Tutorial - https://www.youtube.com/watch?v=7eq7rO5l4Mw&list=PLQoMV4t_lqOuaEQAxVPmWh5qDkiJFebV8

UpBrightSkills Blogs - https://www.upbrightskills.com/ GoLanguagePrograms - http://www.golangprograms.com/


Sunday, May 31, 2020

Wazuh - How to Setup File Integrity Monitoring (FIM)



#fileintegrity #integrity #wazuh How to Setup File Integrity Monitoring (FIM) - Configure and and monitor your critical nodes / servers. Don't miss out any critical alerts / events. Wazuh is a free, open source and enterprise-ready security monitoring solution for threat detection, integrity monitoring, incident response and compliance. Feature Like 1. Security Analytics 2. Intrusion Detection 3. Log Data Analysis 4. File Integrity Monitoring 5. Vulnerability Detection 6. Configuration Assessment 7. Incident Response 8. Regulatory Compliance 9. Cloud Security 10. Containers Security Wazuh - https://wazuh.com/ Wazuh Ova Download (Version 3.12) - https://documentation.wazuh.com/3.12/... Wazuh Agent Download - https://documentation.wazuh.com/3.12/installation-guide/packages-list/index.html#packages Configure Email Alerts - https://documentation.wazuh.com/3.12/user-manual/manager/manual-email-report/index.html Wazuh Setup Video - https://youtu.be/WqQUIz5XRpQ UpBrightSkills Blogs - https://www.upbrightskills.com/ GoLanguagePrograms - http://www.golangprograms.com/

Tuesday, May 26, 2020

Wazuh - How to Setup Email Notification



#emailnotification #emailalert #wazuh How to Setup Email Notification - Configure and stay notified always. Don't miss out any critical alerts / events. Wazuh is a free, open source and enterprise-ready security monitoring solution for threat detection, integrity monitoring, incident response and compliance. Feature Like 1. Security Analytics 2. Intrusion Detection 3. Log Data Analysis 4. File Integrity Monitoring 5. Vulnerability Detection 6. Configuration Assessment 7. Incident Response 8. Regulatory Compliance 9. Cloud Security 10. Containers Security Wazuh - https://wazuh.com/ Wazuh Ova Download (Version 3.12) - https://documentation.wazuh.com/3.12/... Wazuh Agent Download - https://documentation.wazuh.com/3.12/installation-guide/packages-list/index.html#packages Configure Email Alerts - https://documentation.wazuh.com/3.12/user-manual/manager/manual-email-report/index.html Wazuh Setup Video - https://youtu.be/WqQUIz5XRpQ UpBrightSkills Blogs - https://www.upbrightskills.com/ GoLanguagePrograms - http://www.golangprograms.com/

Tuesday, May 19, 2020

Wazuh - Vulnerability Scanning for Windows & Linux



#vulnerability #wazuh #vulnerabilityscanning How to Setup Vulnerability Scanning - Windows & Linux. Scan for Vulnerabilities and discover the weaknesses of a given system with open source tool Wazuh. Wazuh is a free, open source and enterprise-ready security monitoring solution for threat detection, integrity monitoring, incident response and compliance. Feature Like 1. Security Analytics 2. Intrusion Detection 3. Log Data Analysis 4. File Integrity Monitoring 5. Vulnerability Detection 6. Configuration Assessment 7. Incident Response 8. Regulatory Compliance 9. Cloud Security 10. Containers Security Wazuh - https://wazuh.com/ Wazuh Ova Download (Version 3.12) - https://documentation.wazuh.com/3.12/... Wazuh Agent Download - https://documentation.wazuh.com/3.12/... Wazuh Setup Video - https://youtu.be/WqQUIz5XRpQ UpBrightSkills Blogs - https://www.upbrightskills.com/

Thursday, May 14, 2020

Setup Guide for Wazuh - How to get Started with Wazuh.



Setup Guide for Wazuh - How to get Started with Wazuh. Wazuh is a free, open source and enterprise-ready security monitoring solution for threat detection, integrity monitoring, incident response and compliance. Feature Like 1. Security Analytics 2. Intrusion Detection 3. Log Data Analysis 4. File Integrity Monitoring 5. Vulnerability Detection 6. Configuration Assessment 7. Incident Response 8. Regulatory Compliance 9. Cloud Security 10. Containers Security Wazuh - https://wazuh.com/ Wazuh Ova Download (Version 3.12) - https://documentation.wazuh.com/3.12/installation-guide/virtual-machine.html Wazuh Agent Download - https://documentation.wazuh.com/3.12/installation-guide/packages-list/index.html#packages

Monday, May 11, 2020

Automated Script - Docker Installation

Create a bash script and provide executable premission to the file and then execute. Docker installation will be done.


#!/bin/bash

# Note : For Docker Setup

#OS Update:	
sudo apt-get update -y;
sudo apt-get install gdebi -y;
sudo apt-get install vim -y;
sudo apt-get install nano -y;
sudo apt-get install htop -y;

#Install SSH:
sudo apt-get install openssh-server -y;

#Remove Libre Office:
sudo apt-get remove --purge libreoffice* -y;
sudo apt-get clean;
sudo apt-get autoremove;

#Git
sudo add-apt-repository ppa:git-core/ppa;
sudo apt-get update -y;
sudo apt-get install git -y; 

#sudo add-apt-repository ppa:n-muench/programs-ppa2;
sudo add-apt-repository ppa:n-muench/programs-ppa;
sudo apt-get update -y;
sudo apt-get install -y filezilla;	
sudo apt-get install -y sublime-text;
sudo apt-get install -y chromium-browser;

#Essential Pack	
sudo apt-get install -y synaptic vlc gimp gimp-data gimp-plugin-registry gimp-data-extras bleachbit unrar zip unzip;	

#Samba
sudo apt-get install -y samba system-config-samba cifs-utils;

#Docker Installation
sudo curl -fsSL get.docker.com -o get-docker.sh >/tmp/docker
chmod +x /tmp/docker/get-docker.sh
sudo /tmp/docker/get-docker.sh

#Install Docker Machine
sudo curl -L https://github.com/docker/machine/releases/download/v0.14.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine && \
sudo install /tmp/docker-machine /usr/local/bin/docker-machine

#Install Docker Compose
sudo curl -L https://github.com/docker/compose/releases/download/1.20.1/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
For More videos go to - https://www.youtube.com/channel/UCIUmpO3KBHPMtgzMA6p0IhA

CentOS with Lamp Stack (Scripted Installation)

One Click Installation

This will configure WebServer with up httpd, mysql, ftp, php, samba.


#!/bin/bash

#IPTables
service iptables stop
chkconfig iptables off

#SELinux Disable - Completely
setenforce 0
SELINUX=disabled
sed -i 's/SELINUX= .*/SELINUX= '${SELINUX}'/' /etc/selinux/config

#Update
yum insall -y update
yum install -y upgrade

#Install httpd
yum install -y httpd
service httpd start
chkconfig httpd on

#Install MySQL Server 5.7
wget https://dev.mysql.com/get/mysql57-community-release-el6-11.noarch.rpm
rpm -ivh mysql57-community-release-el6-11.noarch.rpm
yum clean all
yum install -y mysql mysql-server php-mysql
service mysqld start
chkconfig mysqld on

#Add EPEL Repository
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -ivh epel-release-6-8.noarch.rpm

#Install PHP
yum install -y php php-gd php-mysql php-mcrypt

#Create info.php
cat << EOF > /var/www/html/info.php;

EOF

#HTTPD php.ini - /etc/php.ini
max_execution_time=18000
memory_limit=2048M
upload_max_filesize=32M
sed -i.orignal 's/memory_limit = .*/memory_limit = '${memory_limit}'/' /etc/php.ini
sed -i 's/max_execution_time = .*/max_execution_time = '${max_execution_time}'/' /etc/php.ini
sed -i 's/upload_max_filesize = .*/upload_max_filesize = '${upload_max_filesize}'/' /etc/php.ini

#Install and Configure FTP
yum install -y vsftpd
service	vsftpd start
chkconfig vsftpd on

#Change Owner of HTML Folder (This is for the permission to FTP and Samba)
chown -R ftp_user:ftp_users /var/www/html

#FTP Config vsftpd.conf - /etc/vsftpd/vsftpd.conf (Change configuration file directly with SED Command)
sed -i.orignal 's/anonymous_enable=YES/anonymous_enable=NO /etc/vsftpd/vsftpd.conf
sed -i 's/local_enable=YES/local_enable=NO/' /etc/vsftpd/vsftpd.conf

#FTP User
useradd -s /sbin/nologin -d /var/www/html ftp_user
groupadd ftp_users
usermod -aG ftp_users ftp_user
chown -R root:ftp_users /var/www/html
passwd ftp_user

#Samba configuration (Optional - If required can be installed)
yum install -y samba samba-client samba-common
service smb start
mv /etc/samba/smb.cnf /etc/samba/smb.cnf.bak
chkconfig smb on
echo -e "path= /var/www/html/ \npublic=no \nbrowsable = no \nwritable = yes \nprintable = no \write list = @ftp_users" >> /etc/samba/smb.conf
service smb restart
smbpasswd -a ftp_user
For More videos go to - https://www.youtube.com/channel/UCIUmpO3KBHPMtgzMA6p0IhA