Releases: logpresso/CVE-2021-44228-Scanner
Releases · logpresso/CVE-2021-44228-Scanner
3.0.1 Release
3.0.0 Release
- Support centralized reporting and visualization with Logpresso Watch
- Join Logpresso Watch service and use
--api-key
option for integration
- Join Logpresso Watch service and use
2.9.2 Release
2.9.1 Release
2.9.0 Release
- Reduced memory footprint significantly. See #253
- For 5 million files in the single directory, previous version used 1.7GB.
- v2.9.0 uses only 0.3GB for same number of files.
- You can further reduce memory footprint using
-Xmx
switch.- For example,
-Xmx100M
will limit max memory usage to 100 megabytes - Consider max JAR or ZIP file size for tuning.
- For example,
- Report directory traversal error. See #249
- For example,
Error: Access denied. Skipping c:\ProgramData\Microsoft\Windows Defender Advanced Threat Protection\Cache
with administrator privileges.
- For example,
2.8.1 Release
- Added
--throttle
option to limit CPU usage. See #137--throttle 1000
means that scanner is allowed to scan 1000 files per second.
- Improved scan performance (x2.7)
2.8.0 Release
- Support CVE-2022-23302, CVE-2022-23305 and CVE-2022-23307, See #259
- --fix option will remove following classes:
- For CVE-2022-23302: JMSSink.class
- For CVE-2022-23305: JDBCAppender.class
- For CVE-2022-23307: All classes in org.apache.log4j.chainsaw package
- --fix option will remove following classes:
2.7.2 Release
Added scanner_args to summary of JSON report file. See #241
{
"summary": {
"scanner_banner": "Logpresso CVE-2021-44228 Vulnerability Scanner 2.7.2 (2022-01-11)",
"scanner_version": "2.7.2",
"scanner_release_date": "2022-01-11",
"scanner_args": [
"--report-json",
"d:\\tmp\\verify"
],
"hostname": "RAPH",
..snip..
}
2.7.1 Release
2.7.0 Release
- Support CSV and JSON log file output. See #178 , #229
- Use
--csv-log-path
or--json-log-path
option.
- Use
- Added
--syslog-facility
option. See #227 - Added
--rfc5424
option. See #230- Follow RFC5424 message format strictly with UTF8 BOM.
- Added
--exclude-file-config
option to exclude file paths using exact matching. See #223