-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.5.0 (no backwards compatibility) #478
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
391c86a
to
a235c4f
Compare
Detect processes affected by update using yum-ps
097f5be
to
2bda3a7
Compare
* master: Fix OVAL detection on Debian and Ubuntu (#509) Add filter options to tui subcommand (#508) Add filter options to tui subcommand (#508) Add -ignore-unfixed option to report subcommand #485 (#507) Add goreleaser to distribute binaries (#460) Add goreportcard to README Support SUSE Enterprise Linux (#487) Debian: Use --showformat flag to get status of packages and ignore n(not-inst… (#484) fix vulsrepo dockerfile (#496) Update README.ja.md (#498) Fix typos (#499) Check repoquery with sudo nopasswd in deep scan mode on RedHat (#492)
* master: Fix yum changelog option (#543) Update README.md (#542) Fix false positive: ignore oval info when kernel major version is different. (#541) Fix: Misdetection of OvalMatch for CentOS and Scientific in oval/util.go (#536) Fix: "Reboot Required" detection process in scan/redhat.go (#534) Remove README.fr.md because unable to maintenance.. README Typo Update (#538) Insert `sudo` only at the beginning of command in deep scan #495 (#539) Fix config.toml validation (#537) Add pseudo server type for non-ssh scanning (only cpe scan) #512 (#531) README Update (#530) Update README send slack msg by api (#525) fix typo Privious -> Previous (#523) Fix package query fails on debian based container (#519) (#522) fix typo from "enviroment" to "environment" (#518) Fix typo in config/jsonloader.go (#517) Modified Spell Miss of "README.md". (#516) Fix .goreleaser.yml Fix a bug of making channels when fill oval information via HTTP (#514)
* master: Remove empty CveContent output to JSON with Alpine Linux scan (#550)
* master: Fixed panic occurred when blank line continued in changelog (#569) Fixed Typo (#574) fix typo(BackSpace) in README.ja.md (#576) Fix a bug of sending to closed socket while oval access via HTTP #578 (#579) fix typo in reports/s3.go (#573) LXC container support without LXD (#552) Support Amazon Linux2 (#562) Fix #548 and #557 - RHEL's Fast Scan no longer required internet connection and root privilege (#559) Change error handling of "Reboot Required" detection (#556) Fix some RPM related commands failed in the container (#554) travis: update go version (#555) Add more kernel related packages (Fix #541) (#551)
Merged
…md opt (#690) * feat(config): enable to set options in config.toml instead of cmd opt * fix(config): change Conf.Report.Slack to Conf.Slack * fix(discover): change tempalte * fix(report): fix config.toml auto-generate with -uuid
* add(report) add -to-saas option * ignore other writer if -to-saas * fix(saas) fix bug
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Clever vulnerability detection of non-OS-packages
https://vuls.io/docs/en/usage-scan-non-os-packages.html
Before v0.5.0, Vuls can detect only by exact match of CPE.
After v0.5.0, Vuls supports NVD JSON Feed
NVD JSON Feed has detailed affected version information.
Using this information, Vuls can detect vulnerabilities of non-OS-packages more cleverly than before, because vuls compares versions of specified CPEs in config.toml and the version in the feed.
related ( #599 )
Significant improvement in scanning
Support knqyf263/gost (go-security-tracker)
New version Vuls 0.5.0 now possible to detect vulnerabilities that patches have not been published from distributors using new datasource named gost.
RedHat API
before
after (with gost)
Debian Security Tracker
before
after (with gost)
HTTP
Enable to define scan mode for each servers in config.tom
#510 #669
fast scan with internet access
fast scan without internet access
fast-root scan
fast-root scan with internet access
fast-root scan without internet access
deep scan
deep scan with internet access
Reports
The following items were added
TUI
report -format-full-text
report -format-list
Slack Notification
Stride Notification
https://vuls.io/docs/en/usage-report.html#example-send-scan-results-to-stride

#624
Charwork Notification
#634
https://vuls.io/docs/en/usage-report.html#example-send-scan-results-to-chatwork
go-cve-dictionary list subcommand
vulsio/go-cve-dictionary#80
Change the format of ScanResult
Model has changed.
https://github.com/future-architect/vuls/tree/master/models
Change the format of config.toml
Enable to define CpeNames for each container.
#668
To detect the vulnerability of Ruby on Rails v4.2.1 on specific container, cpeNames needs to be set in the servers>containers section.
The following is an example of running Ruby on Rails v4.2.1 on dockerA.
Enable to define a path of OWASP Dependency Check XML for each container.
#667
The following is an example of how to specify a XML of OWASP DC to the specific container.
Enable to define ignoreCVEs for each container.
#666
Add ignorePkgsRegexp for each host, container in config.toml
#665
Format
optional field
before
after
(fast-root and deep) Detect processes affected by next update using yum-ps #482
Issues
yum ps
to detect processed affected by next software update on RedHat, CentOS, Amazon , Oracle.AffectedProcs key under Packages will be added by this P/R.
(fast-root and deep) Detect need-restarting-processes for Redhat, CentOS, Ubuntu and Debian
Add -uuid option to report subcommand
When Servername was changed, Vulsrepo etc could not look back in the past. So, I added a unique UUID that will not be changed. If you report with this flag on, Vuls generates UUIDs automatically.
This Auto-generated UUID will be added to the config.toml automatically and result JSON.
The previous config.toml will be renamed to config.toml.bak.
Add memo field to Server section
When reporting with the -uuid flag on, config.toml is automatically recreated as described above. So I added the memo field because the TOML comment disappears. For memo about the server, please use this field, not TOML comment.
How to install
How to upgrade