Why Telnet traffic isn't secure (Capturing local Telnet traffic using Wireshark)

Subscribers:
613
Published on ● Video Link: https://www.youtube.com/watch?v=wVxtPAD88sY



Duration: 8:21
19 views
0


Hello, this is just an experiment of why Telnet isn't secure to use anymore. Telnet is transmitting all the data without encryption or in a plain text. We capture telnet traffic using Wireshark in this video to show you that your username, password and other data can be captured when you use Telnet to connect to your server.

In this video, in the telnet client we install Wireshark and Putty and put wireshark filter: tcp.dstport == 23 and ip.src_host == 192.168.43.157, basically this filter tells Wireshark to capture paket with tcp destination port of 23 and ip address source 192.168.43.157, i.e. capture telnet (port 23) traffic sent from Windows 8 to any computer.

As MITM person you can use the same Wireshark filter or use: tcp.dstport == 23 or tcp.srcport == 23
filter.

So the solution is you need not to use Telnet anymore or use it if you know the network is clean from hacker and block port 23 using firewall because hacker can connect and bruteforce you. You can also instal Faill2ban software on your Unix Machine.

As you can see, we need not to know the ip address of the client and the server in order to capture the data.


FTP data is also can be stolen.




Other Videos By Computertechlighthouse


2021-11-13SMALL Basic: Printing Binary Mountain pattern
2021-11-06How to derives sequence formula: 1,1,0,0,1,1,0,0,1,1.. and 1,1,1,0,0,0,1,1,1,...,...
2021-10-30How to referencing cell in OpenOffice Calc
2021-10-29How to generate arithmatic, geometric, and exponential sequences using Openoffice calc
2021-10-29SMALL BASIC: How to create simple encryption and decryption program
2021-10-29How to use conditional formatting on OpenOffice: Change cell's background color, etc.
2021-10-27How to make AND and OR function using IF function on OpenOffice Calc
2021-10-26SMALL BASIC: AND operation calculator
2021-10-03How to solve linear equation (3 equations with 3 variables) with OpenOffice Calc
2021-10-02How to generate 3 linear equations with 3 variables using OpenOffice Calc
2021-09-13Why Telnet traffic isn't secure (Capturing local Telnet traffic using Wireshark)
2021-09-12How to solve EOL Ubuntu's unable to install or update packages: error 404
2021-09-11How to play flash file in 2021
2021-09-09How to pause and unpause OBS recording and set their shortcuts
2021-09-09Installing Windows XP SP 3 in 2021 using VMware player 12
2021-09-08How to fix ADB interface driver error on your computer manually
2021-09-07How to remote controlling android phone from PC using scrcpy
2021-09-07How to change network category from public to private on Windows 8.1
2021-09-04How to transfer file from your laptop to your Android phone using Wifi connection
2021-09-04How to use Android phone as MIDI controller
2021-09-04How to connect usb-to-midi cable to Yamaha PSR 520 keyboard



Tags:
telnet
wireshark
packet capture
demo
TCP/IP
putty
telnetd