| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/security/go-cve-dictionary/files/ |
Upload File : |
--- commands/fetchjvn.go.orig 2017-06-26 10:39:59 UTC
+++ commands/fetchjvn.go
@@ -3,7 +3,6 @@ package commands
import (
"context"
"flag"
- "os"
"strconv"
"time"
@@ -45,7 +44,7 @@ func (*FetchJvnCmd) Usage() string {
[-latest]
[-last2y]
[-years] 1998 1999 ...
- [-dbpath=$PWD/cve.sqlite3 or connection string]
+ [-dbpath=/var/db/vuls/cve.sqlite3 or connection string]
[-dbtype=mysql|postgres|sqlite3|redis]
[-http-proxy=http://192.168.0.1:8080]
[-debug]
@@ -65,8 +64,7 @@ func (p *FetchJvnCmd) SetFlags(f *flag.F
defaultLogDir := util.GetDefaultLogDir()
f.StringVar(&p.logDir, "log-dir", defaultLogDir, "/path/to/log")
- pwd := os.Getenv("PWD")
- f.StringVar(&p.dbpath, "dbpath", pwd+"/cve.sqlite3",
+ f.StringVar(&p.dbpath, "dbpath", "/var/db/vuls/cve.sqlite3",
"/path/to/sqlite3 or SQL connection string")
f.StringVar(&p.dbtype, "dbtype", "sqlite3",