Posts

Siem 102: Nessus Vulnerability Scanner

Image
Nessus Vulnerability Scanner Scan Vulnerability on domain  (all windows OS): Create new scan from [ Advanced Scan Template ]: Scan all PCs on Domain: Save & Launch Vulnerability Result: Show vulnerability on  host: Good Luck   https://www.linkedin.com/in/ahmedms/

Siem 101: Nessus Vulnerability Scanner

Image
Nessus Vulnerability Scanner Scan Vulnerability on two machine  (windows OS): Create new scan from [ Basic Network Scan Template ]: Configuration: Create Credential to two machines: launch Scan: Running Vulnerability: Complete Scan  Vulnerability: Vulnerability Hosts: Vulnerability Result: Export Report: can export as [ PDF - HTML - CSV - Nessus ]. Good Luck   https://www.linkedin.com/in/ahmedms/

IBM Cloud Private

Image
Creating a single master cluster with IBM Cloud Private Requirement from IBM: Requirement Number of hosts 1 Cores 8 or more CPU >=2.4 GHz RAM 32 GB or more Free disk space to install >=200 GB OS Ubuntu 16.04 Update System: [ahmed@icp:~]$ sudo apt-get update Install Python: [ahmed@icp:~]$ sudo apt-get install python-minimal -y Python version: [ahmed@icp:~]$ python --version '2.7.12' Modified attributes of the system kernel: [ahmed@icp:~]$ sysctl -w vm.max_map_count=262144 [ahmed@icp:~]$ echo "vm.max_map_count=262144" | sudo tee -a /etc/sysctl.conf [ahmed@icp:~]$ sudo sysctl net.ipv4.ip_local_port_range ' net.ipv4.ip_local_port_range = 32768 65535 ' [ahmed@icp:~]$ sysctl -w net.ipv4.ip_local_port_range="10240 60999" [ahmed@icp:~]$ echo 'net.ipv4.ip_local_port_range="10240 60999"...

Kubernetes 101: Creating a single master cluster with kubeadm

Install Kubernetes on single node using kubeadm Set Host name : [root@crio ~]# cat /etc/hosts 192.168.17.17   crio  crio.cloud.local Disable SELinux: [root@crio ~]# setenforce 0 [root@crio ~]# sed -i --follow-symlinks 's/^SELINUX=enforcing/SELINUX=disabled/' /etc/sysconfig/selinux Disable Firewall: [root@crio ~]# systemctl disable firewalld && systemctl stop firewalld Disable swap: [root@crio ~]# sed -i '/swap/d' /etc/fstab && swapoff -a Update sysctl settings for Kubernetes networking: [root@crio ~]# cat >>/etc/sysctl.d/kubernetes.conf<<EOF net.bridge.bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1 EOF [root@crio ~]# sysctl --system Add yum repository: [root@crio ~]# cat >>/etc/yum.repos.d/kubernetes.repo<<EOF [kubernetes] name=Kubernetes baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64 enabled=1 gpgcheck=1 repo_gpgcheck=1 gpgkey=https://packages....