]> git.pld-linux.org Git - packages/checksec.git/commitdiff
new, version 1.5 auto/th/checksec-1.5-1
authorElan Ruusamäe <glen@delfi.ee>
Sat, 19 Mar 2016 11:12:43 +0000 (13:12 +0200)
committerElan Ruusamäe <glen@delfi.ee>
Sat, 19 Mar 2016 11:12:43 +0000 (13:12 +0200)
based on fedora package, 9b39f44
https://fedoraproject.org/wiki/Changes/Harden_All_Packages

checksec.spec [new file with mode: 0644]

diff --git a/checksec.spec b/checksec.spec
new file mode 100644 (file)
index 0000000..db19b19
--- /dev/null
@@ -0,0 +1,47 @@
+Summary:       Tool to check system for binary-hardening
+Name:          checksec
+Version:       1.5
+Release:       1
+License:       BSD
+Group:         Development/Tools
+Source0:       http://www.trapkit.de/tools/%{name}.sh
+# Source0-md5: 075996be339ab16ad7b94d6de3ee07bd
+Source1:       http://www.trapkit.de/tools/%{name}_changes.txt
+# Source1-md5: 03a45df6ac588603c6191dc0a4883531
+URL:           http://www.trapkit.de/tools/checksec.html
+Requires:      binutils
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Modern Linux distributions offer some mitigation techniques to make it
+harder to exploit software vulnerabilities reliably. Mitigations such
+as RELRO, NoExecute (NX), Stack Canaries, Address Space Layout
+Randomization (ASLR) and Position Independent Executables (PIE) have
+made reliably exploiting any vulnerabilities that do exist far more
+challenging.
+
+The checksec script is designed to test what *standard* Linux OS and
+PaX <http://pax.grsecurity.net/> security features are being used.
+
+As of version 1.3 the script also lists the status of various Linux
+kernel protection mechanisms.
+
+checksec can check binary-files and running processes for hardening
+features.
+
+%prep
+cp -p %{SOURCE1} ChangeLog
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_bindir}
+install -p %{SOURCE0} $RPM_BUILD_ROOT%{_bindir}/%{name}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc ChangeLog
+%attr(755,root,root) %{_bindir}/%{name}
This page took 0.119242 seconds and 4 git commands to generate.