appsecben
  • AppSecBen
  • Awesome Links
  • tools
    • grep
    • netstat
    • nmap
    • h8mail
    • sherlock
    • BeEF
    • Wireshark
    • Scapy
    • ffuf
    • wafw00f
    • hCaptcha
    • sn1per
    • WPScan
    • searchsploit
    • Metasploit
    • wget
    • Bash Scripting
    • git
    • Docker
    • VSCode
    • Local web server
    • S3 Bucket
    • JWT
  • Links Úteis
    • Cursos
    • Ferramentas Online
    • Repositórios
    • Articles, Docs, Sites, etc
  • Infra
    • Email
    • DNS
    • Subdomain
    • Ferramentas
    • SSH
  • Tor
    • Links
    • Tor + ProxyChains Config
  • GoLang
    • Cheat Sheet
    • Install
    • Useful Links
    • Packages
    • VSCode
  • Vulns
    • Log4j
Powered by GitBook
On this page
  • Usage
  • Install in Ubuntu Server 18.04

Was this helpful?

  1. tools

searchsploit

A command line search tool for Exploit-DB that also allows you to take a copy of Exploit Database with you, everywhere you go.

https://www.exploit-db.com/searchsploit

Usage

searchsploit WordPress 5.6.1 -w

# -w: show exploit-db url

# OUTPUT SAMPLE
-------------------------------------------------------------------- --------------------------------------------
 Exploit Title                                                      |  URL
-------------------------------------------------------------------- --------------------------------------------
WordPress Plugin DZS Videogallery < 8.60 - Multiple Vulnerabilities | https://www.exploit-db.com/exploits/39553
WordPress Plugin iThemes Security < 7.0.3 - SQL Injection           | https://www.exploit-db.com/exploits/44943
WordPress Plugin Rest Google Maps < 7.11.18 - SQL Injection         | https://www.exploit-db.com/exploits/48918
-------------------------------------------------------------------- --------------------------------------------
Shellcodes: No Results

Install in Ubuntu Server 18.04

Source

echo '=== INSTALLING SEARCHSPLOIT ==='
echo '>>> clonning repo'
git clone https://github.com/offensive-security/exploitdb.git /opt/exploit-database

echo '>>> linking to bin'
ln -sf /opt/exploit-database/searchsploit /usr/local/bin/searchsploit

echo '>>> copying rc'
cp -n /opt/exploit-database/.searchsploit_rc ~/

PreviousWPScanNextMetasploit

Last updated 4 years ago

Was this helpful?