rkhunter-vl.spec 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. Name: rkhunter
  2. Version: 1.4.0
  3. Release: 1%{?_dist_release}
  4. Summary: A host-based tool to scan for rootkits, backdoors and local exploits
  5. Group: Applications/System
  6. License: GPLv2+
  7. URL: http://rkhunter.sourceforge.net/
  8. Source0: http://downloads.sourceforge.net/rkhunter/rkhunter-%{version}.tar.gz
  9. Source2: 01-rkhunter
  10. Source3: rkhunter.sysconfig
  11. Patch0: rkhunter-1.4.0-fedoraconfig.patch
  12. BuildArch: noarch
  13. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  14. Requires: coreutils, binutils, findutils, grep
  15. Requires: e2fsprogs, procps, lsof, iproute, wget
  16. Requires: perl, perl(strict), perl(IO::Socket), mailx, logrotate
  17. %if "%{_dist_release}" >= "vl7"
  18. Requires: kmod
  19. %else
  20. Requires: module-init-tools
  21. %endif
  22. %description
  23. Rootkit Hunter (RKH) is an easy-to-use tool which checks
  24. computers running UNIX (clones) for the presence of rootkits
  25. and other unwanted tools.
  26. %prep
  27. %setup -q
  28. %patch0 -p1
  29. %{__cat} <<'EOF' >%{name}.logrotate
  30. %{_localstatedir}/log/%{name}/%{name}.log {
  31. weekly
  32. notifempty
  33. create 640 root root
  34. }
  35. EOF
  36. %build
  37. # Nothing to be built
  38. %install
  39. %{__rm} -rf $RPM_BUILD_ROOT
  40. %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_bindir}
  41. %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_sysconfdir}/{cron.daily,sysconfig,logrotate.d}
  42. %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts
  43. %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}
  44. %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_mandir}/man8
  45. %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db
  46. %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/log/%{name}
  47. %{__mkdir} -m755 -p ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/i18n
  48. %{__install} -m755 -p files/%{name} ${RPM_BUILD_ROOT}%{_bindir}/
  49. %{__install} -m644 -p files/backdoorports.dat ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
  50. %{__install} -m644 -p files/mirrors.dat ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
  51. %{__install} -m644 -p files/programs_bad.dat ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/
  52. %{__install} -m644 -p files/i18n/cn ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/i18n/
  53. %{__install} -m644 -p files/i18n/en ${RPM_BUILD_ROOT}%{_var}/lib/%{name}/db/i18n/
  54. %{__install} -m644 -p files/CHANGELOG ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
  55. %{__install} -m644 -p files/LICENSE ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
  56. %{__install} -m644 -p files/README ${RPM_BUILD_ROOT}%{_docdir}/%{name}-%{version}/
  57. %{__install} -m755 -p files/check_modules.pl ${RPM_BUILD_ROOT}%{_datadir}/%{name}/scripts/
  58. %{__install} -m644 -p files/*.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
  59. # Don't ship these unless we want to Require the perl modules
  60. #%{__install} -m750 -p files/filehashmd5.pl ${RPM_BUILD_ROOT}%{_prefix}/lib/%{name}/scripts/
  61. #%{__install} -m750 -p files/filehashsha1.pl ${RPM_BUILD_ROOT}%{_prefix}/lib/%{name}/scripts/
  62. %{__install} -m755 -p %{SOURCE2} ${RPM_BUILD_ROOT}%{_sysconfdir}/cron.daily/%{name}
  63. %{__install} -m644 -p %{name}.logrotate ${RPM_BUILD_ROOT}%{_sysconfdir}/logrotate.d/%{name}
  64. %{__install} -m640 -p files/%{name}.conf ${RPM_BUILD_ROOT}%{_sysconfdir}/
  65. %{__install} -m640 -p %{SOURCE3} ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/%{name}
  66. %clean
  67. %{__rm} -rf $RPM_BUILD_ROOT
  68. %files
  69. %defattr(-,root,root,-)
  70. %doc %{_docdir}/%{name}-%{version}/*
  71. %{_bindir}/%{name}
  72. %dir %{_datadir}/%{name}
  73. %{_datadir}/%{name}/scripts
  74. %{_sysconfdir}/cron.daily/%{name}
  75. %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
  76. %dir %{_var}/lib/%{name}
  77. %{_var}/lib/%{name}/db
  78. %ghost %{_var}/lib/%{name}/db/mirrors.dat
  79. %ghost %{_var}/lib/%{name}/db/programs_bad.dat
  80. %{_var}/lib/%{name}/db/i18n
  81. %dir %{_var}/log/%{name}
  82. %config(noreplace) %{_sysconfdir}/%{name}.conf
  83. %config(noreplace) %{_sysconfdir}/sysconfig/%{name}
  84. %dir %{_docdir}/%{name}-%{version}
  85. %{_mandir}/man8/*
  86. %changelog
  87. * Thu Feb 28 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.0-1
  88. - initial build for Vine Linux
  89. * Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-6
  90. - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
  91. * Sat Oct 06 2012 Kevin Fenzi <kevin@scrye.com> 1.4.0-5
  92. - Add /dev/md/autorebuild.pid to whitelist. Fixes bug #857315
  93. * Sat Aug 18 2012 Kevin Fenzi <kevin@scrye.com> 1.4.0-4
  94. - Add /var/log/pki-ca/system to whitelist for FreeIPA. Fixes bug #849251
  95. * Wed Aug 15 2012 Kevin Fenzi <kevin@scrye.com> 1.4.0-3
  96. - Fix /bin/ad false positive. Fixes bug #831989
  97. * Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.0-2
  98. - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
  99. * Tue May 08 2012 Kevin Fenzi <kevin@scrye.com> - 1.4.0-1
  100. - Update to 1.4.0
  101. * Sun Apr 15 2012 Kevin Fenzi <kevin@scrye.com> - 1.3.8-15
  102. - Add workaround for /lib/java false positive. Fixes bug #806972
  103. * Wed Feb 8 2012 Kay Sievers <kay@redhat.com> - 1.3.8-14
  104. - modutils are for Linux 2.4 and no longer provided; depend on kmod
  105. * Fri Jan 27 2012 Kevin Fenzi <kevin@scrye.com> 1.3.8-13
  106. - Drop net-tools, no longer needed. Fixes bug #784803
  107. - Add /dev/shm/spice.* to whitelist. Fixes bug #784882
  108. * Fri Jan 06 2012 Kevin Fenzi <kevin@scrye.com> 1.3.8-12
  109. - Add /etc/.java to whitelist. Fixes bug #770972
  110. * Fri Nov 25 2011 Kevin Fenzi <kevin@scrye.com> - 1.3.8-11
  111. - Add /usr/share/man/man5/.k5identity.5.gz to whitelisted hidden files.
  112. * Wed Oct 12 2011 Jim Pirzyk <jim+rpm@pirzyk.org> - 1.3.8-10
  113. - Update %files section so that some .dat files are marked %ghost
  114. * Fri Aug 05 2011 Kevin Fenzi <kevin@scrye.com> - 1.3.8-9
  115. - Add patch to fix ALLOWPROCDELFILE config option. fixes bug #727524
  116. * Fri Jul 08 2011 Kevin Fenzi <kevin@scrye.com> - 1.3.8-8
  117. - Fix typo
  118. * Fri Jul 08 2011 Kevin Fenzi <kevin@scrye.com> - 1.3.8-7
  119. - Add patch to fix out of the box warning on rkhunter script.
  120. - Fixes bug #719270
  121. - Add etckeeper and tomboy files. Fixes bug #719265 and #719259
  122. * Tue Jun 21 2011 Kevin Fenzi <kevin@scrye.com> - 1.3.8-6
  123. - Change ssh check back to 2 - bug #596775
  124. - Drop hard Requires on prelink. It will be used if present - bug #714067
  125. * Thu Apr 21 2011 Kevin Fenzi <kevin@scrye.com> - 1.3.8-5
  126. - Add /dev/.mount to ALLOW_HIDDENDIR - bug #697599
  127. * Wed Apr 13 2011 Kevin Fenzi <kevin@scrye.com> - 1.3.8-4
  128. - Don't send warning emails anymore. They cause selinux issues and are not very helpful.
  129. - Fixes bug #660544
  130. * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.8-3
  131. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  132. * Tue Dec 07 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.8-2
  133. - Adjust config some - bug #596775
  134. * Fri Nov 26 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.8-1
  135. - Update to 1.3.8
  136. * Wed Nov 24 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.6-9
  137. - Drop /var/run as it's not used anymore - bug #656684
  138. * Wed Oct 06 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.6-8
  139. - Add patch to make rkhunter use unhide if installed - bug #636396
  140. * Sat Jun 05 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.6-7
  141. - Add ipsec.hmac exclude - bug #560594
  142. * Fri May 28 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.6-6
  143. - Add exclude for md-device-map - bug #596731
  144. - Supress ssh version check - bug #596775
  145. * Sat Mar 06 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.6-5
  146. - Change config to not specify XINETD_PATH - bug #560562
  147. * Sat Jan 23 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.6-4
  148. - Change email to just root instead of root@localhost - bug #553179
  149. - Add .k5login.5.gz to files whitelist - bug #553134
  150. * Tue Jan 05 2010 Kevin Fenzi <kevin@tummy.com> - 1.3.6-3
  151. - Add some more ssh hmac files to whitelist - bug #552621
  152. - Re-add /dev/.mdadm.map to whitelisted files - bug #539405
  153. * Tue Dec 01 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.6-2
  154. - Disable apps check by default - bug #543065
  155. * Sun Nov 29 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.6-1
  156. - Update to 1.3.6
  157. * Thu Nov 26 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-9
  158. - Add exception for /dev/.mdadm file - bug #539405
  159. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.4-8
  160. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  161. * Fri Jul 03 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-7
  162. - Add exception for software raid udev file - bug #509253
  163. * Sat Jun 06 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-6
  164. - Add /usr/bin/.fipscheck.hmac to ok files - bug #494096
  165. * Sun Mar 08 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-5
  166. - Fix typo in patch file
  167. * Wed Mar 04 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-4
  168. - Rework spec file
  169. - Add check for the new hmac ssh files
  170. * Thu Feb 26 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-3
  171. - Update cron job to include hostname (thanks Manuel Wolfshant)
  172. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.4-2
  173. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  174. * Fri Jan 02 2009 Kevin Fenzi <kevin@tummy.com> - 1.3.4-1
  175. - Update to 1.3.4
  176. - Use libdir as tmp dir - bug #456340
  177. * Sat Dec 13 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-6
  178. - Fix cron job sending as attachment - bug #472679
  179. - Fix cron job trying to send with colors - bug #475916
  180. * Wed Sep 03 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-5
  181. - Patch debug tmp file issue - bug #460628
  182. * Mon Jun 16 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-4
  183. - Fix cron script to only mail on warn/error - bug #450703
  184. - Fix conditional to account for fc10 rsyslog
  185. * Mon Apr 28 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-3
  186. - Change cron to run after prelink - bug #438622
  187. * Wed Mar 26 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-2
  188. - Move things to more standard locations for selinux - bug #438184
  189. - Add exception for pulseaudio file - bug #438622
  190. * Thu Feb 28 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.2-1
  191. - Update to 1.3.2
  192. - Fix cron script
  193. * Thu Feb 28 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.0-2
  194. - Use /etc/redhat-release for EPEL and /etc/fedora release for Fedora.
  195. - Add conditionals to support EPEL
  196. - Fix man page warning.
  197. * Sun Feb 03 2008 Kevin Fenzi <kevin@tummy.com> - 1.3.0-1
  198. - Revive package, clean up spec
  199. - Update to 1.3.0
  200. * Sat Mar 18 2006 Greg Houlette <tamaster@pobox.com> - 1.2.8-3
  201. - Made an RPM transparent change to move the sha1 canary check
  202. file out of CVS and into the external lookaside cache (whose
  203. filename changes with every new package release anyway...)
  204. * Fri Mar 17 2006 Greg Houlette <tamaster@pobox.com> - 1.2.8-2
  205. - Fixed architectural dependency during package creation eliminating
  206. use of _libdir configure macro (x86_64 /usr/lib64 mis-targeting)
  207. * Tue Mar 7 2006 Greg Houlette <tamaster@pobox.com> - 1.2.8-1
  208. - New package version release
  209. - reworked the .spec file to support optional dist tag
  210. - Updated the application check default patchfile (chunk failure)
  211. - Changed to SHA1 for optional message digest (canary check)
  212. - Added a couple of suggested skip entries to rkhunter.conf
  213. * Sat Jun 11 2005 Greg Houlette <tamaster@pobox.com> - 1.2.7-1
  214. - Added signature auto-updating to CRON scan (new script)
  215. - Removed BOOTSCAN pending rewrite to full SysV Init scan in background
  216. - Added the --append-log command line option
  217. - Added Date Stamping to output
  218. - Fixed bug in /etc/group missing report
  219. - New package version release
  220. * Sun Jan 2 2005 Greg Houlette <tamaster@tekarmory.com> - 0:1.1.9-1
  221. - New package version release
  222. - Added the --run-application-check command line option
  223. to listing in command help
  224. - Replaced 'Here' Doc editing of rkhunter.conf file
  225. with in-place Perl edit
  226. - tweaked rpmbuild -bb Autoclean
  227. * Fri Oct 15 2004 Greg Houlette - 0:1.1.8-0.fdr.1 (revisited)
  228. - Removed redundant buildrequires /bin/sh, coreutils and perl
  229. - Revise postun scriptlet
  230. - Added /usr/share/doc/rkhunter-1.1.8/ to files list
  231. * Mon Oct 11 2004 Greg Houlette - 0:1.1.8-0.fdr.1
  232. - Changed Release Tag to 0.fdr.1 (testing) for QA
  233. - Removed wget from dependencies
  234. - Hid (temporarily) the --skip-application-check command
  235. line option from being listed in help
  236. - Fixed the spec files list, again!
  237. * Fri Oct 8 2004 Greg Houlette - 0:1.1.8-0.fdr.0.2.beta2
  238. - Unified and disabled the md5 canary check in prep
  239. (check is now optional) removing the sha1 cross-check
  240. - Fixed the spec files list, adding the /var/rkhunter
  241. directory and the /usr/bin/rkhunter executable
  242. - Fixed missing dependencies (rkh uses runtime checks)
  243. - Disabled "auto-clean" for rpmbuild -bb
  244. - Changed Application version scan default to
  245. disabled awaiting backport fix in upstream sources
  246. - Fixed shared_man_search.patch, configuration files
  247. verify and added postun(install) cleanup
  248. * Fri Oct 1 2004 Greg Houlette - 0:1.1.8-0.fdr.0.1.beta1
  249. - More cosmetic patchwork
  250. - Changed Release Tag to beta1 (pre-release) for QA submit
  251. * Tue Sep 28 2004 Greg Houlette - 0:1.1.8-0.fdr.1
  252. - Removed hidden_search.patch (1.1.7) after it was
  253. merged into upstream source by Michael Boelen
  254. - Removed .spec file from md5 and sha1 file checks
  255. (it must be modifiable by Fedora QA release build)
  256. - Added BOOTSCAN description file to documentation
  257. - Restructured dynamic file creation ('Here' Docs)
  258. moving them to the "prep" stage so that *_ALL_*
  259. files are available prior to the "build" stage
  260. (for inspection purposes)
  261. - Added a /etc/sysconfig/rkhunter parameters file
  262. * Sun Aug 29 2004 Greg Houlette - 0:1.1.7-0.fdr.1
  263. - Cosmetic patchwork
  264. * Sat Aug 21 2004 Greg Houlette - 0:1.1.6-0.fdr.1
  265. - Moderate reworking of .spec file for packaging standards
  266. - Added md5 and sha1 file checks to prep procedure for source .rpm
  267. - Included an optional rc.local replacement for scan on boot (with full logging)
  268. * Tue Aug 10 2004 Michael Boelen - 1.1.5
  269. - Added update script
  270. - Extended description
  271. * Sun Aug 08 2004 Greg Houlette - 1.1.5
  272. - Changed the install procedure eliminating the specification of
  273. destination filenames (only needed if you are renaming during install)
  274. - Changed the permissions for documentation files (root only overkill)
  275. - Added the installation of the rkhunter Man Page
  276. - Added the installation of the programs_{bad, good}.dat database files
  277. - Added the installation of the LICENSE documentation file
  278. - Added the chmod for root only to the /var/rkhunter/db directory
  279. * Sun May 23 2004 Craig Orsinger (cjo) <cjorsinger@earthlink.net>
  280. - version 1.1.0-1.cjo
  281. - changed installation in accordance with new rootkit installation
  282. procedure
  283. - changed installation root to conform to LSB. Use standard macros.
  284. - added recursive remove of old build root as prep for install phase
  285. * Wed Apr 28 2004 Doncho N. Gunchev - 1.0.9-0.mr700
  286. - dropped Requires: perl - rkhunter works without it
  287. - dropped the bash alignpatch (check the source or contact me)
  288. - various file mode fixes (.../tmp/, *.db)
  289. - optimized the %%files section - any new files in the
  290. current dirs will be fine - just %%{__install} them.
  291. * Mon Apr 26 2004 Michael Boelen - 1.0.8-0
  292. - Fixed missing md5blacklist.dat
  293. * Mon Apr 19 2004 Doncho N. Gunchev - 1.0.6-1.mr700
  294. - added missing /usr/local/rkhunter/db/md5blacklist.dat
  295. - patched to align results in --cronjob, I think rpm based
  296. distros have symlink /bin/sh -> /bin/bash
  297. - added --with/--without alignpatch for conditional builds
  298. (in case previous patch breaks something)
  299. * Sat Apr 03 2004 Michael Boelen / Joe Klemmer - 1.0.6-0
  300. - Update to 1.0.6
  301. * Mon Mar 29 2004 Doncho N. Gunchev - 1.0.0-0
  302. - initial .spec file