-->

What is SSH

SSH




SSH - SECURE SHELL


SSH is a take remote access on the command prompt


SSH applications are based on a client–server architecture, connecting an SSH client instance with an SSH server


SSH port number :- 22

Wiindows default install ssh  prorocol on your system


Open command prompt type :- ssh






Windows :-

hostname - to view computer name
system info 

ssh-status :- 

get-service sshd

netstat -na


start/stop SSHD:-
in powershell  start the service:- "start-service sshd"
                        stop the service:- "stop-service sshd"

get-windowscapability -online | ? Name -like *openSSH*


****************************

linux :-

sudo nmap -sS 192.168.1.100

-sS still scan

sudo nmap -sS -sV 192.168.1.100



firwall status:- 

sudo ufw status



SSH Keygen can create

RSA Keys,
DSA Keys,
ECDSA Keys,
ED25519 Keys.

















Batch shell Scripting:-


open google chrome automatically run this website (facebook.com, yahoo.com, google.com, mail.google.com)


echo off
start chrome "facebook.com" "yahoo.com" "google.com" "mail.google.com"
exit