offensive-security / exploitdb

The legacy Exploit Database repository - New repo located at https://gitlab.com/exploit-database/exploitdb
https://gitlab.com/exploit-database/exploitdb
GNU General Public License v2.0
7.74k stars 1.88k forks source link

Install exploit-database on Mac os x #39

Closed Mac85 closed 8 years ago

Mac85 commented 8 years ago

Hello how to install the repository on mac os x?

hideout commented 8 years ago

you need the command git

BurakDev commented 8 years ago

You can clone the repository using git or just download the repository.

I recommand using of git, since when database is updated you just need pull new commits.

And for usage you can read the README.

hideout commented 8 years ago

indeed git is better then just download

nixawk commented 8 years ago

Install git

Mac OSX : $ brew install git Debian/Ubuntu : $ sudo apt-get install git Centos/Fedora : $ sudo yum install git

Download exploit-database

If you want to keep exploit-database update , git is a good choice. Otherwise, download a zip copy here.

$ git clone https://github.com/offensive-security/exploit-database/ /Users/Someone/
$ cd /Users/Someone/exploit-database

Enter into exploit-database directory, and run searchsploit -h.

$ exploit-database [master] ./searchsploit -h
  Usage: searchsploit [options] term1 [term2] ... [termN]
Example:
  searchsploit afd windows local
  searchsploit -t oracle windows

=========
 Options
=========
   -c, --case      Perform a case-sensitive search (Default is inSEnsITiVe).
   -e, --exact     Perform an EXACT match on exploit title (Default is AND) [Implies "-t"].
   -h, --help      Show this help screen.
   -o, --overflow  Exploit title's are allowed to overflow their columns.
   -p, --path      Show the full path to an exploit (Copies path to clipboard if possible).
   -t, --title     Search just the exploit title (Default is title AND the file's path).
   -u, --update    Update exploit database from git.
   -w, --www       Show URLs to Exploit-DB.com rather than local path.
       --colour    Disable colour highlighting.
       --id        Display EDB-ID value rather than local path.

=======
 Notes
=======
 * Use any number of search terms.
 * Search terms are not case sensitive, and order is irrelevant.
   * Use '-c' if you wish to reduce results by case-sensitive searching.
   * And/Or '-e' if you wish to filter results by using an exact match.
 * Use '-t' to exclude the file's path to filter the search results.
   * Remove false positives (especially when searching numbers/major versions).
 * When updating from git or displaying help, search terms will be ignored.
Mac85 commented 8 years ago

Now it works, thank you !!!

Mac85 commented 8 years ago

πŸ‘πŸ»πŸ˜„

Inviato da iPhone

Il giorno 14 giu 2016, alle ore 12:52, Ferdinand notifications@github.com ha scritto:

hurra @Mac85 next time RTFM

β€” You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

hideout commented 8 years ago

iphone? ;D

Mac85 commented 8 years ago

Yes ☺️

Inviato da iPhone

Il giorno 14 giu 2016, alle ore 13:46, Ferdinand notifications@github.com ha scritto:

iphone? ;D

β€” You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

leonjza commented 8 years ago

If you are using the Homebrew package manager, I got the exploitdb formula added a while ago. So, you can just do brew install exploitdb.

g0tmi1k commented 8 years ago

Closing the issue as its going a little off topic and the original question has been answered.