96063873e2
readelf which makes most of checks should come from binutils package instead of elfutils E.g. the PIE check from checksec, different readelf gives different result: (elfutils) $ /nix/store/rgrji20513g19ci0sa6jydm86gpf4j42-elfutils-0.158/bin/readelf -d /nix/store/q1sbn93v4k3166s091s9biygv9srv8qa-nginx-1.6.2/bin/nginx 2>/dev/null |grep -q '(DEBUG)' ; echo $? 1 (binutils) $ /nix/store/b8qhjrwf8sf9ggkjxqqav7f1m6w83bh0-binutils-2.23.1/bin/readelf -d /nix/store/q1sbn93v4k3166s091s9biygv9srv8qa-nginx-1.6.2/bin/nginx 2>/dev/null | grep -q '(DEBUG)' ; echo $? 0
45 lines
1.8 KiB
Nix
45 lines
1.8 KiB
Nix
{ stdenv, fetchurl, file, findutils, binutils, glibc, procps, coreutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "checksec-${version}";
|
|
version = "1.5";
|
|
src = fetchurl {
|
|
url = "http://www.trapkit.de/tools/checksec.sh";
|
|
sha256 = "0iq9v568mk7g7ksa1939g5f5sx7ffq8s8n2ncvphvlckjgysgf3p";
|
|
};
|
|
|
|
patches = [ ./0001-attempt-to-modprobe-config-before-checking-kernel.patch ];
|
|
|
|
unpackPhase = ''
|
|
mkdir ${name}-${version}
|
|
cp $src ${name}-${version}/checksec.sh
|
|
cd ${name}-${version}
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp checksec.sh $out/bin/checksec
|
|
chmod +x $out/bin/checksec
|
|
substituteInPlace $out/bin/checksec --replace /bin/bash ${stdenv.shell}
|
|
substituteInPlace $out/bin/checksec --replace /lib/libc.so.6 ${glibc}/lib/libc.so.6
|
|
substituteInPlace $out/bin/checksec --replace find ${findutils}/bin/find
|
|
substituteInPlace $out/bin/checksec --replace "file $" "${file}/bin/file $"
|
|
substituteInPlace $out/bin/checksec --replace "xargs file" "xargs ${file}/bin/file"
|
|
substituteInPlace $out/bin/checksec --replace " readelf -" " ${binutils}/bin/readelf -"
|
|
substituteInPlace $out/bin/checksec --replace "(readelf -" "(${binutils}/bin/readelf -"
|
|
substituteInPlace $out/bin/checksec --replace "command_exists readelf" "command_exists ${binutils}/bin/readelf"
|
|
substituteInPlace $out/bin/checksec --replace "/sbin/sysctl -" "${procps}/sbin/sysctl -"
|
|
substituteInPlace $out/bin/checksec --replace "/usr/bin/id -" "${coreutils}/bin/id -"
|
|
'';
|
|
|
|
phases = "unpackPhase patchPhase installPhase";
|
|
|
|
meta = {
|
|
description = "A tool for checking security bits on executables";
|
|
homepage = "http://www.trapkit.de/tools/checksec.html";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|