diff --git a/README.md b/README.md index 26007fcb4..3a508f89b 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ # The Exploit Database Git Repository -This is an official repository of [The Exploit Database](http://www.exploit-db.com/), a [project](https://www.offensive-security.com/community-projects/) sponsored by [Offensive Security](https://www.offensive-security.com/). +This is an official repository of [The Exploit Database](https://www.exploit-db.com/), a [project](https://www.offensive-security.com/community-projects/) sponsored by [Offensive Security](https://www.offensive-security.com/). Our repositories are: - - Exploits & Shellcodes: [https://github.com/offensive-security/exploit-database](https://github.com/offensive-security/exploit-database) - - Binary Exploits: [https://github.com/offensive-security/exploit-database-bin-sploits](https://github.com/offensive-security/exploit-database-bin-sploits) - - Papers: [https://github.com/offensive-security/exploit-database-papers](https://github.com/offensive-security/exploit-database-papers) + - Exploits & Shellcodes: [https://github.com/offensive-security/exploitdb](https://github.com/offensive-security/exploitdb) + - Binary Exploits: [https://github.com/offensive-security/exploitdb-bin-sploits](https://github.com/offensive-security/exploitdb-bin-sploits) + - Papers: [https://github.com/offensive-security/exploitdb-papers](https://github.com/offensive-security/exploitdb-papers) The Exploit Database is an archive of public exploits and corresponding vulnerable software, developed for use by penetration testers and vulnerability researchers. Its aim is to serve as the most comprehensive collection of [exploits](https://www.exploit-db.com/browse/), [shellcode](https://www.exploit-db.com/shellcode/) and [papers](https://www.exploit-db.com/papers/) gathered through direct submissions, mailing lists, and other public sources, and present them in a freely-available and easy-to-navigate database. The Exploit Database is a repository for exploits and Proof-of-Concepts rather than advisories, making it a valuable resource for those who need actionable data right away. You can learn more about the project [here (about)](https://www.exploit-db.com/about-exploit-db/) and [here (history)](https://www.exploit-db.com/history/). -This repository is updated daily with the most recently added submissions. Any additional resources can be found in our [binary exploits repository](https://github.com/offensive-security/exploit-database-bin-sploits). +This repository is updated daily with the most recently added submissions. Any additional resources can be found in our [binary exploits repository](https://github.com/offensive-security/exploitdb-bin-sploits). Exploits are located in the `/exploit/` directory, shellcodes can be found in the `/shellcode/` directory. @@ -18,7 +18,7 @@ Exploits are located in the `/exploit/` directory, shellcodes can be found in th ## License -This project (and SearchSploit) is released under "[GNU General Public License v2.0](https://github.com/offensive-security/exploit-database/blob/master/LICENSE.md)". +This project (and SearchSploit) is released under "[GNU General Public License v2.0](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". - - - @@ -130,9 +130,9 @@ root@kali:~# apt -y install exploitdb-bin-sploits exploitdb-papers In short: clone the repository, add the binary into $PATH, and edit the config file to reflect the git path: ``` -$ sudo git clone https://github.com/offensive-security/exploit-database.git /opt/exploit-database -$ sudo ln -sf /opt/exploit-database/searchsploit /usr/local/bin/searchsploit -$ sed 's|path_array+=(.*)|path_array+=("/opt/exploit-database")|g' /opt/exploit-database/.searchsploit_rc > ~/.searchsploit_rc +$ sudo git clone https://github.com/offensive-security/exploitdb.git /opt/exploitdb +$ sudo ln -sf /opt/exploitdb/searchsploit /usr/local/bin/searchsploit +$ sed 's|path_array+=(.*)|path_array+=("/opt/exploitdb")|g' /opt/exploitdb/.searchsploit_rc > ~/.searchsploit_rc ``` - - -