mirror of
https://git.yoctoproject.org/meta-security
synced 2026-07-15 15:37:18 +00:00
7b9206d346
* 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 <akuster808@gmail.com>
20 lines
585 B
BlitzBasic
20 lines
585 B
BlitzBasic
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"
|