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

Posted in Network, Tools | Tagged , , , | Comments Off on Solving round robin DNS name with SSH Server hosts

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

Posted in Network | Tagged , , , | Leave a comment

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

Posted in Information, Network | Tagged , , , | Leave a comment

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

Posted in Tools | Tagged , , , | Leave a comment

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

Posted in Videos | Tagged , , | Leave a comment

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

Posted in Videos | Tagged , | Leave a comment