Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CISOfy/lynis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-10-17Fix spaceHansHoogerwerf
2022-10-17Fix simple mistakeHansHoogerwerf
2022-10-17Verify the linux OS supports nanosecondsHansHoogerwerf
Add extra check to verify the linux OS supports nanoseconds. This might not be the case with certain busybox implementations.
2022-02-10Merge pull request #1205 from kolenichsj/alpine_apkMichael Boelen
Adding support for Alpine Package Keeper
2022-02-10Merge pull request #1226 from konstruktoid/1220Michael Boelen
Extend HasCorrectCheckPermissions logging
2021-11-08present expected permission value in octalThomas Sjögren
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
2021-11-08add symlink support to HasCorrectFilePermissions and IsWorldWritableThomas Sjögren
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
2021-09-01Added two tests using apk (Alpine Package Keeper) to check forSteve Kolenich
installed packages and packages that can be upgraded
2021-07-12Corrected syntaxMichael Boelen
2021-07-08Dropping option to filter by label as newer versions of 'ip' give another ↵Michael Boelen
result (no output)
2021-07-08Switched order for interface detection on LinuxMichael Boelen
2021-07-08Add fallbacks for hostid generation and improve loggingMichael Boelen
2021-07-02Improve HostID generation and loggingMichael Boelen
2021-01-07Preparation for release 3.0.3Michael Boelen
2021-01-01Multiple platform support in RegisterBrian Ginsbach
Support specifying multiple platforms with `--platform`. Useful as not all operating systems identify identical hardware (platforms) with the same name (example x86_64 and amd64).
2020-11-15Use first e1000 interface and break after matchSimon Biewald
Fixes CISOfy/lynis#1075. Before this commit, the interfaces "e1000g1" and "net0" were allowed. The name "e1000g0" is appended to the list. After finding an interface, the loop is interrupted now. As previously "net0" was always used, even if another interface was available, the list is reordered to "net0 e1000g1 e1000g0" to not break previous generations. A typo is also fixed ("No interface found op Solaris ..." -> "No interface found on"). Signed-off-by: Simon Biewald <simon@fam-biewald.de>
2020-11-09spelling: indentationJosh Soref
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
2020-10-22Merge branch 'master' into fix_nginx_parserMichael Boelen
2020-10-21require pgrep before usageThomas Sjögren
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
2020-10-20Merge pull request #973 from igloonet/fix/functions-parse-nginx-abs-pathMichael Boelen
Support absolute paths in nginx includes and fix ls warning on empty directories
2020-08-27Better log messageJimver
2020-08-27Remove newlineJimver
2020-08-27Use shell wildcard expansion nowJimver
2020-08-26Fix wildcard expansion, absolute path handling and output to stderrJimver
2020-07-07[functions] ParseNginx: Ignore empty included wildcardsKepi
Its ok to have empty directories included. We should not output errors with lsbinary unable to find anything there.
2020-07-07[functions] ParseNginx: Support include on absolute pathsKepi
Includes can be absolute paths too. This is quick fix counting on fact that absolute paths have slash at start.
2020-07-03Command line option for slow test thresholdKepi
IMHO it should be OK to run long tests if we count with it. Example: lynis audit system --slow-warning 300 Will warn when test takes longer than 300 seconds, instead of default 10.
2020-06-26Use BSD style format when calling statMichael Boelen
2020-04-22accept more restrictive file permissionsThomas Sjögren
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
2020-04-06Added support to require a detected and known package managerMichael Boelen
2020-04-02Added fallback for awk/tr, small code enhancement, added noteMichael Boelen
2020-04-01The IsRunning function may have not everything defined early on, so added a ↵Michael Boelen
fallback
2020-03-31Corrected case where binaries were not checked while we do want to use ↵Michael Boelen
dmidecode if it available
2020-03-31Removed unneeded complexity regarding dmidecode, as binary checks are ↵Michael Boelen
already done at this point
2020-03-30Add pkg_info to PackageIsInstalledBrian Ginsbach
The `pkg_info` command is used on a system using NetBSD pkgsrc to determine which packages are installed.
2020-03-20Updated date/yearMichael Boelen
2020-02-21add basic xbps/void supportKevin
2019-12-13Quoting should not be used when globbingMichael Boelen
2019-12-13Decrease length of line breaks between testsMichael Boelen
2019-12-13Improved permission check for BSD systemsMichael Boelen
2019-11-25Merge pull request #802 from dvehrs/HCFPMichael Boelen
Updated permissions checks
2019-11-18Add USR1 trap to show status such as active testMichael Boelen
2019-10-23Updated permissions checksDave Vehrs
2019-09-26nginx-test: add log file detection for relative pathsKristian Schuster
2019-09-22Merge pull request #763 from Marzal/Marzal-F_isRunningMichael Boelen
Second version of #740 without shellcheck directives
2019-09-21Fixed a typoMichael Boelen
2019-09-19Double quote to prevent globbing and word splitting.SC2086 InfoMarzal
2019-09-19Prefer [ p ] && [ q ] as [ p -a q ] is not well defined.SC2166Marzal
2019-09-19Merge pull request #761 from Schmuuu/masterMichael Boelen
enhance nginx include config detection …
2019-09-19Style improvementsMichael Boelen