From 7b9206d346a9aa9a424e4e13060c154e9aba1ace Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Wed, 15 May 2019 22:07:50 -0700 Subject: checksec: update to 1.11.1 * checksec.sh: Updated to 1.11.1 * checksec.sh: resolved issues with readelf * checksec.sh: Added docker images for testing * checksec.sh: Added armhf and aarch64 libc locations * checksec.sh: Replace FS_COUNT with fgrep * checksec.sh: Fixed symbols count in csv * checksec.sh: Fixed RW-RPATH and RW-RUNPATH * checksec.sh: Added stack canaries generated by intel compiler * checksec.sh: Mute stat errors for non-existent directories * checksec.sh: Removed invalid json structures and duplicate kernel checks * checksec.sh: fixed spaces in -d option * checksec.sh: Added stack-protector-string check * checksec.sh: Add arm64 specific kernel checks * checksec.sh: Add REFCOUNT_FULL to kernel tests * checksec.sh: Remove OSX support Signed-off-by: Armin Kuster --- recipes-security/checksec/checksec_1.11.1.bb | 19 +++++++++++++++++++ recipes-security/checksec/checksec_1.11.bb | 19 ------------------- 2 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 recipes-security/checksec/checksec_1.11.1.bb delete mode 100644 recipes-security/checksec/checksec_1.11.bb diff --git a/recipes-security/checksec/checksec_1.11.1.bb b/recipes-security/checksec/checksec_1.11.1.bb new file mode 100644 index 0000000..835dffc --- /dev/null +++ b/recipes-security/checksec/checksec_1.11.1.bb @@ -0,0 +1,19 @@ +SUMMARY = "Linux system security checks" +DESCRIPTION = "The checksec script is designed to test what standard Linux OS and PaX security features are being used." +SECTION = "security" +LICENSE = "BSD" +HOMEPAGE="https://github.com/slimm609/checksec.sh" + +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=93fddcca19f6c897871f9b5f9a035f4a" + +SRCREV = "3c15cb89641c700096fdec0c1904a0cf9b83c5e2" +SRC_URI = "git://github.com/slimm609/checksec.sh" + +S = "${WORKDIR}/git" + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${S}/checksec ${D}${bindir} +} + +RDEPENDS_${PN} = "bash openssl-bin" diff --git a/recipes-security/checksec/checksec_1.11.bb b/recipes-security/checksec/checksec_1.11.bb deleted file mode 100644 index 59a67bd..0000000 --- a/recipes-security/checksec/checksec_1.11.bb +++ /dev/null @@ -1,19 +0,0 @@ -SUMMARY = "Linux system security checks" -DESCRIPTION = "The checksec script is designed to test what standard Linux OS and PaX security features are being used." -SECTION = "security" -LICENSE = "BSD" -HOMEPAGE="https://github.com/slimm609/checksec.sh" - -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=93fddcca19f6c897871f9b5f9a035f4a" - -SRCREV = "a57e03c4f62dbaca0ec949bbc58491fb0c461447" -SRC_URI = "git://github.com/slimm609/checksec.sh" - -S = "${WORKDIR}/git" - -do_install() { - install -d ${D}${bindir} - install -m 0755 ${S}/checksec ${D}${bindir} -} - -RDEPENDS_${PN} = "bash openssl-bin" -- cgit v1.2.3-54-g00ecf