From 63a0ca910795846844ab26d28c5de795fc7d90ba Mon Sep 17 00:00:00 2001 From: knqyf263 Date: Sun, 18 Aug 2019 22:47:18 -1000 Subject: [PATCH] Transfer repositoriy --- README.md | 16 ++++++++-------- alpine/alpine.go | 4 ++-- debian/debian.go | 2 +- git/git.go | 2 +- main.go | 18 +++++++++--------- nvd/nvd.go | 2 +- oval/debian/debian.go | 2 +- push.sh | 2 +- redhat/redhat.go | 2 +- ubuntu/ubuntu.go | 4 ++-- 10 files changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index cec62e4..24a7cf0 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # vuln-list-update -[![Build Status](https://travis-ci.org/knqyf263/vuln-list-update.svg?branch=master)](https://travis-ci.org/knqyf263/vuln-list-update) -[![Go Report Card](https://goreportcard.com/badge/github.com/knqyf263/vuln-list-update)](https://goreportcard.com/report/github.com/knqyf263/vuln-list-update) -[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/knqyf263/vuln-list-update/blob/master/LICENSE) +[![Build Status](https://travis-ci.org/aquasecurity/vuln-list-update.svg?branch=master)](https://travis-ci.org/aquasecurity/vuln-list-update) +[![Go Report Card](https://goreportcard.com/badge/github.com/aquasecurity/vuln-list-update)](https://goreportcard.com/report/github.com/aquasecurity/vuln-list-update) +[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/aquasecurity/vuln-list-update/blob/master/LICENSE) Collect vulnerability information and save it in parsable format automatically ## Data -https://github.com/knqyf263/vuln-list/ +https://github.com/aquasecurity/vuln-list/ ## Usage @@ -21,12 +21,12 @@ Usage of vuln-list-update: ``` ## Cron status -https://travis-ci.org/knqyf263/vuln-list-update +https://travis-ci.org/aquasecurity/vuln-list-update ## Contribute -1. fork a repository: github.com/knqyf263/vuln-list-update to github.com/you/repo -2. get original code: `go get github.com/knqyf263/vuln-list-update` +1. fork a repository: github.com/aquasecurity/vuln-list-update to github.com/you/repo +2. get original code: `go get github.com/aquasecurity/vuln-list-update` 3. work on original code 4. add remote to your repo: git remote add myfork https://github.com/you/repo.git 5. push your changes: git push myfork @@ -35,4 +35,4 @@ https://travis-ci.org/knqyf263/vuln-list-update - see [GitHub and Go: forking, pull requests, and go-getting](http://blog.campoy.cat/2014/03/github-and-go-forking-pull-requests-and.html) ## Author -Teppei Fukuda (knqyf263) \ No newline at end of file +Teppei Fukuda (knqyf263) diff --git a/alpine/alpine.go b/alpine/alpine.go index ffcbceb..725d11f 100644 --- a/alpine/alpine.go +++ b/alpine/alpine.go @@ -18,8 +18,8 @@ import ( "gopkg.in/yaml.v2" version "github.com/hashicorp/go-version" - "github.com/knqyf263/vuln-list-update/git" - "github.com/knqyf263/vuln-list-update/utils" + "github.com/aquasecurity/vuln-list-update/git" + "github.com/aquasecurity/vuln-list-update/utils" "golang.org/x/xerrors" ) diff --git a/debian/debian.go b/debian/debian.go index 4ad1563..d4569a2 100644 --- a/debian/debian.go +++ b/debian/debian.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - "github.com/knqyf263/vuln-list-update/utils" + "github.com/aquasecurity/vuln-list-update/utils" "golang.org/x/xerrors" pb "gopkg.in/cheggaaa/pb.v1" ) diff --git a/git/git.go b/git/git.go index 1c26c74..1ce4019 100644 --- a/git/git.go +++ b/git/git.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/knqyf263/vuln-list-update/utils" + "github.com/aquasecurity/vuln-list-update/utils" "golang.org/x/xerrors" ) diff --git a/main.go b/main.go index d854455..d9eac4b 100644 --- a/main.go +++ b/main.go @@ -9,21 +9,21 @@ import ( "strings" "time" - "github.com/knqyf263/vuln-list-update/alpine" + "github.com/aquasecurity/vuln-list-update/alpine" - "github.com/knqyf263/vuln-list-update/debian" - "github.com/knqyf263/vuln-list-update/git" - "github.com/knqyf263/vuln-list-update/nvd" - debianoval "github.com/knqyf263/vuln-list-update/oval/debian" - "github.com/knqyf263/vuln-list-update/redhat" - "github.com/knqyf263/vuln-list-update/ubuntu" - "github.com/knqyf263/vuln-list-update/utils" + "github.com/aquasecurity/vuln-list-update/debian" + "github.com/aquasecurity/vuln-list-update/git" + "github.com/aquasecurity/vuln-list-update/nvd" + debianoval "github.com/aquasecurity/vuln-list-update/oval/debian" + "github.com/aquasecurity/vuln-list-update/redhat" + "github.com/aquasecurity/vuln-list-update/ubuntu" + "github.com/aquasecurity/vuln-list-update/utils" "golang.org/x/xerrors" ) const ( - repoURL = "https://%s@github.com/knqyf263/vuln-list.git" + repoURL = "https://%s@github.com/aquasecurity/vuln-list.git" ) var ( diff --git a/nvd/nvd.go b/nvd/nvd.go index e237d2d..f49044c 100644 --- a/nvd/nvd.go +++ b/nvd/nvd.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "github.com/knqyf263/vuln-list-update/utils" + "github.com/aquasecurity/vuln-list-update/utils" jsonpointer "github.com/mattn/go-jsonpointer" "golang.org/x/xerrors" pb "gopkg.in/cheggaaa/pb.v1" diff --git a/oval/debian/debian.go b/oval/debian/debian.go index 3e1f353..1200ea3 100644 --- a/oval/debian/debian.go +++ b/oval/debian/debian.go @@ -6,7 +6,7 @@ import ( "log" "path/filepath" - "github.com/knqyf263/vuln-list-update/utils" + "github.com/aquasecurity/vuln-list-update/utils" "golang.org/x/xerrors" pb "gopkg.in/cheggaaa/pb.v1" ) diff --git a/push.sh b/push.sh index d61f4be..9be3014 100755 --- a/push.sh +++ b/push.sh @@ -10,7 +10,7 @@ git commit -m "$3" ret=$? if [ $ret = 0 ]; then - git push https://${GITHUB_TOKEN}@github.com/knqyf263/vuln-list.git master + git push https://${GITHUB_TOKEN}@github.com/aquasecurity/vuln-list.git master else echo "skip push" fi diff --git a/redhat/redhat.go b/redhat/redhat.go index 71b0d3e..9cad2bf 100644 --- a/redhat/redhat.go +++ b/redhat/redhat.go @@ -8,7 +8,7 @@ import ( "golang.org/x/xerrors" - "github.com/knqyf263/vuln-list-update/utils" + "github.com/aquasecurity/vuln-list-update/utils" ) const ( diff --git a/ubuntu/ubuntu.go b/ubuntu/ubuntu.go index 8d5f307..30e8c94 100644 --- a/ubuntu/ubuntu.go +++ b/ubuntu/ubuntu.go @@ -9,13 +9,13 @@ import ( "strings" "time" - "github.com/knqyf263/vuln-list-update/git" + "github.com/aquasecurity/vuln-list-update/git" "github.com/araddon/dateparse" "golang.org/x/xerrors" - "github.com/knqyf263/vuln-list-update/utils" + "github.com/aquasecurity/vuln-list-update/utils" ) const (