https://github.com/gill-singh-a/exploit-db-scrapper
A Python Program that scraps data of Exploit-DB
https://github.com/gill-singh-a/exploit-db-scrapper
exploit-db json python requests scrapping
Last synced: 11 days ago
JSON representation
A Python Program that scraps data of Exploit-DB
- Host: GitHub
- URL: https://github.com/gill-singh-a/exploit-db-scrapper
- Owner: Gill-Singh-A
- Created: 2024-01-04T12:42:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-16T06:01:25.000Z (almost 2 years ago)
- Last Synced: 2025-02-23T06:45:54.846Z (about 1 year ago)
- Topics: exploit-db, json, python, requests, scrapping
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exploit-DB Scrapper
A Python Program that scraps data of Exploit-DB
## Requirements
Language Used = Python3
Modules/Packages used:
* requests
* json
* pickle
* pathlib
* datetime
* optparse
* colorama
* time
Install the dependencies:
```bash
pip install -r requirements.txt
```
## Input
The Program takes command line arguments:
* '-w', "--write" : Name of the Folder for the Data to be dumped
* '-a', "--application" : Download Applications if available (True/False, Default=False)
* '-e', "--exploit" : Download Exploits (True/False, Default=True)
* '-s', "--screenshot" : Download Screenshots (True/False, Default=True)
## Output
The Program makes 1 Parent Director and 3 Child Directories in the Directory where the program is run.
The Parent Directory is the value provided in **--write** Argument, if current Date and Time is used.
Then *raw_data* and *data* will be dumped in this directory.
The Child Directories are:
* applications: Download Application (if available)
* screenshots: Download Screenshot (if available)
* exploits: Download Exploits (if available)