Skip to content

Alm4my/CVEDetailsScrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CVEDetailsScrapper

Purpose

The purpose of this script is to retrieve data from https://cvedetails.com. It will retrieve the data according to the year, and pages. It can be then exported to either csv or xlsx (Excel Format).

Usage

To use the script, you need to have golang installed, compile it and then execute it.

Golang Installation

see https://go.dev/doc/install

Windows

# clone the repository
git clone https://github.com/alm4my/CVEDetailsScrapper.git
cd CVEDetailsScrapper

# retrieve the packages
go get

# build the executable
go build -o CVEDetailScrapper.exe .\main.go

# Run the script either by double clicking the executable or running the command below
.\CVEDetailScrapper.exe

Linux

# clone the repository
git clone https://github.com/alm4my/CVEDetailsScrapper.git

# change into the directory
cd CVEDetailsScrapper

# retrieve the packages
go get
# build the executable
go build -o CVEDetailScrapper ./main.go
# Run the script either by double clicking the executable or running the command below
./CVEDetailScrapper

Todo & Possible Improvements

  • Create release versions for different operating systems
  • Add more advanced filtering capabilities
  • Enable arguments to be passed to the script