Simple test for vuln with Bruteforce Exploit Detector - photo
by - Thursday, January 1, 1970 at 12:00 AM
Hello! Today I will show u one tool [u]"Bruteforce Exploit Detector" [/u]/BED/.[u][b]Introduction[/b][/u][b]BED[/b] is a plain-text protocol fuzzer which stands for [b]B[/b]ruteforce [b]E[/b]xploit [b]D[/b]etector. Bed checks software for common vulnerabilities like buffer overflows, format string bugs, integer overflows, etc. It automatically tests the implementation of a chosen protocol by sending different combinations of commands with problematic strings to confuse the target. The protocols supported by this tool are: [i]finger, ftp, http, imap, irc, lpd, pjl, pop, smtp, socks4[/i] and [i]socks5[/i].BED comes pre-installed with our [b]Kali Linux[/b] system. It is too easy to use so our article will be brief. Let's start![hide][1] BED it's not installed in Kali, so write this command in terminal:[i][b]sudo apt install bed [/b][/i][2] After installation we can use "help" to see the help-menu of BED tool[img]https://external-content.duckduckgo.com/iu/?u=https://i.postimg.cc/HxKHWJJK/Screenshot-from-2022-10-27-11-09-45.png[/img][3] In the help section (above screenshot) we clearly can see the basic use example of BED. We need to use[b] -s f[/b]lag to scan, then we need to choose , then we need to specify our target (IP address) by using -t flag, then we need to specify our port using -p flag, at last we need to set our timeout by using [b]-o[/b] flag.Let's see an example of this, we have an host http server on port 80 we try to find vulnerabilities on it by using BED. So we need to write this command:[code]bed -s HTTP -t HOST(or IP) -p 80 -o 10[/code]ExampleThe above command will start testing for vulnerabilities on our target (offroadportal.org) as we can see in the following screenshot[img]https://external-content.duckduckgo.com/iu/?u=https://i.postimg.cc/RhHmWMK0/Screenshot-from-2022-10-27-11-09-01.png[/img][/hide]If it got any vulnerability then it will show us by showing errors.
Reply
Great post bro
Reply


 Users viewing this thread: Simple test for vuln with Bruteforce Exploit Detector - photo: No users currently viewing.