Tuesday, January 11, 2022

Bash script to automate and detect and scan your local networks

# Bash-Script-to-Automatically-Detect-and-Scan-Your-Local-Network

Using bash script to find the open ports in the local networks


using nmap and shell 

How to run the code


-> sudo apt-get install git

-> git clone https://github.com/krishnansai/Bash-Script-to-Automatically-Detect-and-Scan-Your-Local-Network


-> cd Bash-Script-to-Automatically-Detect-and-Scan-Your-Local-Network

-> chmod +x *


-> sudo ./network_scan.sh




Thursday, January 6, 2022

How To Disable Unwanted ports in linux using Terminal

kill the open ports in the linux First We want to install nmap tool for scaning the open port on the terminal => sudo apt-get install nmap After install the nmap on terminal and scan the open port using this commands => nmap -vvv localhost
After that u can see the all open ports for example i can kill the 9050 port using this commands =>sudo nmap -k 9050/tcp it will kill the port
have a Great Day

Argocd with rollouts examples

examples in My github https://github.com/krishnansai/argocd-rollouts.git ArogoCd with ArgoRollouts Rollouts.yml # This example demonst...