Categories
Archives
June 2023 M T W T F S S « Jul 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Tag Archives: ssh
Solving round robin DNS name with SSH Server hosts
Howdy, Recently I had a little issue with DNS round robin pointing to different SSH Servers ( different fingerprints ) conflicting with known_hosts file. Follow a little script I wrote to test expect. Follow the example (; ———————cut———————- #!/usr/bin/expect — puts “Which server do you want connect?” … Continue reading
Remote Packet sniff using SSH and Wireshark to analysis
Hello there ! In this brief tutorial, I will show how capture remote traffic through ssh and analysis with wireshark. the basic to do this is: $ mkfifo /tmp/remoteif $ ssh root@yourserver “tcpdump -ni pflog0 -w – host 10.20.30.40” > … Continue reading
Things to do with SSH
From Wikipedia: Secure Shell (SSH) is a network protocol for secure data communication, remote shell services or command execution and other secure network services between two networked computers that it connects via a secure channel over an insecure network: a … Continue reading
Pass Phrase Cracking tool
Overview: phrasen|drescher is a modular and multi processing pass phrase cracking tool. In this tutorial, I will show how crack MSSQL passwords. You can download file here: https://labs.portcullis.co.uk/application/phrasen-drescher/ or here: http://stuffresearch.tor.hu/tools/phrasendrescher-1.1.1.tar.gz Instalation Instructions: First, install libssh2. Gentoo: # emerge libssh2 … Continue reading
SSH HONEYPOT
Kippo is a medium interaction SSH honeypot designed to log brute force attacks and, most importantly, the entire shell interaction performed by the attacker. This video tutorial, will show how configure a Honeypot for SSH Server well as use this … Continue reading
Reusing SSH Connections
Reusing SSH Conections ControlMaster is a new feature in OpenSSH v 4.x, that allows it to reuse an existing connection to a remote host when opening new connections to that host Using this feature you can increase performance as it … Continue reading