Secure Shell
Secure Shell
Secure Shell
Secure-Shell
Prepared By :
Mohammed_Nazm
Nawshad_Nawshirwan
Sarmad_Sabah
Supervised By:
Kamaran_Manguri
CONTENTS
summary..................................................................1
Secure Shell..............................................................2
Definition ....................................................................3
Authentication: OpenSSH key management.........................4
Use............………………………………….……...5
Historical development…………………………….…….…6
OpenSSH and OSSH...................................................7
Uses…………………………………………………….8
Architecture………………………………..9
Algorithms………………………………….10
Vulnerabilities………………………………………..11
See also………………………………………………12
2
REPORT TITLE
summary
3
REPORT TITLE
4
REPORT TITLE
Secure Shell
5
REPORT TITLE
Definition
6
REPORT TITLE
Authentication: OpenSSH key management
7
REPORT TITLE
Use
SSH is typically used to log into a remote machine and execute commands,
but it also supports tunneling, forwarding TCP ports and X11 connections; it
can transfer files using the associated SSH file transfer (SFTP) or secure
copy (SCP) protocols.[2] SSH uses the client–server model.
An SSH client program is typically used for establishing connections to an
SSH daemon, such as sshd, accepting remote connections. Both are
commonly present on most modern operating systems, including macOS,
most distributions
of Linux, OpenBSD, FreeBSD, NetBSD, Solaris and OpenVMS. Notably,
versions of Windows prior to Windows 10 version 1709 do not include SSH
by default. Proprietary, freeware and open source (e.g. PuTTY,[4] and the
version of OpenSSH which is part of Cygwin[5]) versions of various levels of
complexity and completeness exist. File managers for UNIX-like systems
(e.g. Konqueror) can use the FISH protocol to provide a split-pane GUI with
drag-and-drop. The open source Windows program WinSCP[6] provides
similar file management (synchronization, copy, remote delete) capability
using PuTTY as a back-end. Both WinSCP[7] and PuTTY[8] are available
packaged to run directly off a USB drive, without requiring installation on the
client machine. The secure shell extension to the Chrome browser also
allows SSH connections without any software installation and even allows
SSH from a Chromebook computer. Setting up an SSH server in Windows
typically involves enabling a feature in Settings app. In Windows 10 version
1709, an official Win32 port of OpenSSH is available.
SSH is important in cloud computing to solve connectivity problems, avoiding
the security issues of exposing a cloud-based virtual machine directly on the
Internet. An SSH tunnel can provide a secure path over the Internet, through
a firewall to a virtual machine.[9]
The IANA has assigned TCP port 22, UDP port 22 and SCTP port 22 for this
protocol.[10] IANA had listed the standard TCP port 22 for SSH servers as one
of the well-known ports as early as 2001.[11] SSH can also be run
using SCTP rather than TCP as the connection oriented transport layer
protocol.[12]
8
REPORT TITLE
Historical development
Version 1[edit]
In 1995, Tatu Ylönen, a researcher at Helsinki University of Technology,
Finland, designed the first version of the protocol (now called SSH-1)
prompted by a password-sniffing attack at his university network.[13] The
goal of SSH was to replace the
earlier rlogin, TELNET, FTP[14] and rsh protocols, which did not provide
strong authentication nor guarantee confidentiality. He chose the port
number 22 because it is between telnet (port 23) and ftp (port 21).[15]
Ylönen released his implementation as freeware in July 1995, and the tool
quickly gained in popularity. Towards the end of 1995, the SSH user base
had grown to 20000 users in fifty countries.[citation needed]
In December 1995, Ylönen founded SSH Communications Security to
market and develop SSH. The original version of the SSH software used
various pieces of free software, such as GNU libgmp, but later versions
released by SSH Communications Security evolved into
increasingly proprietary software.
It was estimated that by 2000 the number of users had grown to 2 million.
[16]
9
REPORT TITLE
Version 2[edit]
"Secsh" was the official Internet Engineering Task Force's (IETF) name
for the IETF working group responsible for version 2 of the SSH protocol.
[17]
In 2006, a revised version of the protocol, SSH-2, was adopted as a
standard. This version is incompatible with SSH-1. SSH-2 features both
security and feature improvements over SSH-1. Better security, for
example, comes through Diffie–Hellman key exchange and
strong integrity checking via message authentication codes. New features
of SSH-2 include the ability to run any number of shell sessions over a
single SSH connection.[18] Due to SSH-2's superiority and popularity over
SSH-1, some implementations such as libssh (v0.8.0+),
[19]
Lsh[20] and Dropbear[21] support only the SSH-2 protocol.
Version 1.99[edit]
In January 2006, well after version 2.1 was
established, RFC 4253 specified that an SSH server supporting 2.0 as
well as prior versions should identify its protocol version as 1.99.[22] This
version number does not reflect a historical software revision, but a
method to identify backward compatibility.
10
REPORT TITLE
OpenSSH and OSSH
11
REPORT TITLE
Uses
SSH is a protocol that can be used for many applications across many
platforms including most Unix variants (Linux,
the BSDs including Apple's macOS, and Solaris), as well as Microsoft
Windows. Some of the applications below may require features that are
only available or compatible with specific SSH clients or servers. For
example, using the SSH protocol to implement a VPN is possible, but
presently only with the OpenSSH server and client implementation.
12
REPORT TITLE
File transfer protocols[edit]
The Secure Shell protocols are used in several file transfer mechanisms.
Secure copy (SCP), which evolved from RCP protocol over SSH
rsync, intended to be more efficient than SCP. Generally runs
over an SSH connection.
SSH File Transfer Protocol (SFTP), a secure alternative
to FTP (not to be confused with FTP over SSH or FTPS)
Files transferred over shell protocol (FISH), released in 1998,
which evolved from Unix shell commands over SSH
Fast and Secure Protocol (FASP), aka Aspera, uses SSH for
control and UDP ports for data transfer.
13
REPORT TITLE
Architecture
14
REPORT TITLE
inability to log in with a client that supports just the
plain password authentication method.
o GSSAPI authentication methods which provide an
extensible scheme to perform SSH authentication using
external mechanisms such as Kerberos 5 or NTLM,
providing single sign-on capability to SSH sessions.
These methods are usually implemented by commercial
SSH implementations for use in organizations, though
OpenSSH does have a working GSSAPI implementation.
The connection layer (RFC 4254) defines the concept of
channels, channel requests, and global requests, which define the
SSH services provided. A single SSH connection can be
multiplexed into multiple logical channels simultaneously, each
transferring data bidirectionally. Channel requests are used to
relay out-of-band channel-specific data, such as the changed size
of a terminal window, or the exit code of a server-side process.
Additionally, each channel performs its own flow control using the
receive window size. The SSH client requests a server-side port
to be forwarded using a global request. Standard channel types
include:
o shell for terminal shells, SFTP and exec requests
(including SCP transfers)
o direct-tcpip for client-to-server forwarded connections
o forwarded-tcpip for server-to-client forwarded connections
The SSHFP DNS record (RFC 4255) provides the public host key
fingerprints in order to aid in verifying the authenticity of the host.
This open architecture provides considerable flexibility, allowing the use
of SSH for a variety of purposes beyond a secure shell. The functionality
of the transport layer alone is comparable to Transport Layer
Security (TLS); the user-authentication layer is highly extensible with
custom authentication methods; and the connection layer provides the
ability to multiplex many secondary sessions into a single SSH
connection, a feature comparable to BEEP and not available in TLS.
15
REPORT TITLE
Algorithms
16
REPORT TITLE
Vulnerabilities
SSH-1[edit]
In 1998, a vulnerability was described in SSH 1.5 which allowed the
unauthorized insertion of content into an encrypted SSH stream due to
insufficient data integrity protection from CRC-32 used in this version of
the protocol.[33][34] A fix known as SSH Compensation Attack
Detector[35] was introduced into most implementations. Many of these
updated implementations contained a new integer
overflow vulnerability[36] that allowed attackers to execute arbitrary code
with the privileges of the SSH daemon, typically root.
In January 2001 a vulnerability was discovered that allows attackers to
modify the last block of an IDEA-encrypted session.[37] The same month,
another vulnerability was discovered that allowed a malicious server to
forward a client authentication to another server.[38]
Since SSH-1 has inherent design flaws which make it vulnerable, it is now
generally considered obsolete and should be avoided by explicitly
disabling fallback to SSH-1.[38] Most modern servers and clients support
SSH-2.[39]
CBC plaintext recovery[edit]
In November 2008, a theoretical vulnerability was discovered for all
versions of SSH which allowed recovery of up to 32 bits of plaintext from
a block of ciphertext that was encrypted using what was then the
standard default encryption mode, CBC.[40] The most straightforward
solution is to use CTR, counter mode, instead of CBC mode, since this
renders SSH resistant to the attack.[40]
Suspected decryption by NSA[edit]
On December 28, 2014 Der Spiegel published classified
information[41] leaked by whistleblower Edward Snowden which suggests
that the National Security Agency may be able to decrypt some SSH
traffic. The technical details associated with such a process were not
disclosed. A 2017 analysis of the CIA hacking
tools BothanSpy and Gyrfalcon suggested that the SSH protocol was not
compromised.[4
17
REPORT TITLE
See also
Brute-force attack
Comparison of SSH clients
Comparison of SSH servers
Corkscrew
Ident
OpenSSH
Secure Shell tunneling
Web-based SSH
18
REPORT TITLE
Benefits and Limitations of SSH
SSH replaced the conventional remote shell protocols like Telnet, FTP, rsh
(remote shell), rlogin (remote login), and rexec (remote execution) that
exchanged information, including passwords in plain text. These older protocols
were insecure and prone to security breaches. It led to the adoption of more
secure SSH protocols.
19
REPORT TITLE
References
https://www.minitool.com/lib/what-is-
ssh.html
https://en.wikipedia.org/wiki/Secure_Shell
https://www.ssh.com/academy/ssh
https://www.ucl.ac.uk/isd/what-ssh-and-how-
do-i-use-it
https://www.ssh.com/academy/ssh
https://techtarget.com/searchsecurity/
definition/Secure-Shell
20
REPORT TITLE