Skip to content

Latest commit

 

History

History

SearchSploit

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

SearchSploit on Raspberry PI

After the analysis of your network, stations, services, etc. you can go online to Exploit Database and search there for common exploits. But you can do same offline via command line! That's good if you like to save some time or simply don't have an online connection.

Objective

The aim of this tutorial is to install and use SearchSploit.

Install needed and/or optional packages

Install (or ensure they are installed) following packages.

# update system (optional)
$ sudo apt update -y && sudo apt upgrade -y

# install needed packages
$ sudo apt install -y git

SearchSploit

Install SearchSploit

# clone repository
$ sudo git clone https://github.com/offensive-security/exploitdb.git /opt/exploit-database

# create symbolic link
$ sudo ln -sf /opt/exploit-database/searchsploit /usr/local/bin/searchsploit

# copy rc file into home directory
$ cp -n /opt/exploit-database/.searchsploit_rc ~/

# show rc file (optional)
$ cat ~/.searchsploit_rc

# execute bash rc file
$ source ~/.bashrc

Update SearchSploit

After the installation as well as regularly, you should carry out updates.

# searchsploit update
$ searchsploit -u

Note: Be patient, this step may take a little longer.

Using SearchSploit

# show help (optional)
$ searchsploit -h

# basic search example
$ searchsploit wordpress core 1.2

# basic search example
$ searchsploit smb windows 10

# title search example
$ searchsploit -t android

Go Back