From bab68d50cfec0ab4c867db358746d26dce91af37 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 14 Dec 2008 05:25:05 +0000 Subject: [PATCH 01/46] Initialize branch F-9 for unhide --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..1c26f78 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-9 From fc1b3167983845ab199e1600a6a85c872ef3567f Mon Sep 17 00:00:00 2001 From: Rakesh Pandit Date: Thu, 8 Jan 2009 05:39:35 +0000 Subject: [PATCH 02/46] initial import --- .cvsignore | 1 + import.log | 1 + sources | 1 + unhide.spec | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 68 insertions(+) create mode 100644 import.log create mode 100644 unhide.spec diff --git a/.cvsignore b/.cvsignore index e69de29..c3d993d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +unhide20080519.tgz diff --git a/import.log b/import.log new file mode 100644 index 0000000..4e35b27 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +unhide-1_0-2_fc10_20080519:HEAD:unhide-1.0-2.fc10.20080519.src.rpm:1231349998 diff --git a/sources b/sources index e69de29..f081042 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +1194ec0f89c6f28e8eb64fb66836f70f unhide20080519.tgz diff --git a/unhide.spec b/unhide.spec new file mode 100644 index 0000000..c760a46 --- /dev/null +++ b/unhide.spec @@ -0,0 +1,65 @@ +Name: unhide +Version: 1.0 +Release: 2%{?dist}.20080519 +Summary: Tool to find hidden processes and TCP/UDP ports from rootkits + +Group: Applications/System +License: GPLv3 +URL: http://www.security-projects.com/?Unhide +Source0: http://www.security-projects.com/unhide20080519.tgz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +Unhide is a forensic tool to find processes and TCP/UDP ports hidden by +rootkits, Linux kernel modules or by other techniques. It includes two +utilities: unhide and unhide-tcp. + +Unhide detects hidden processes using three techniques: + + - comparing the output of /proc and /bin/ps + - comparing the information gathered from /bin/ps with the one gathered + from system calls (syscall scanning) + - full scan of the process ID space (PIDs bruteforcing) + +unhide-tcp identifies TCP/UDP ports that are listening but are not listed +in /bin/netstat through brute forcing of all TCP/UDP ports available. + + +%prep +%setup -q -n %{name}-20080519 + +%build +%{__cc} %{optflags} unhide-linux26.c -o unhide +%{__cc} %{optflags} unhide-tcp.c -o unhide-tcp + + +%install +rm -rf %{buildroot} +%{__install} -Dp -m0755 unhide %{buildroot}%{_sbindir}/unhide +%{__install} -Dp -m0755 unhide-tcp %{buildroot}%{_sbindir}/unhide-tcp +%{__install} -Dp -m0644 man/unhide.8 %{buildroot}%{_mandir}/man8/unhide.8 +%{__install} -Dp -m0644 man/unhide-tcp.8 %{buildroot}%{_mandir}/man8/unhide-tcp.8 + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc COPYING LEEME.txt README.txt +%doc %{_mandir}/man8/unhide.8* +%doc %{_mandir}/man8/unhide-tcp.8* +%{_sbindir}/unhide +%{_sbindir}/unhide-tcp + +%changelog +* Thu Jan 08 2009 Rakesh Pandit 1.0-2 +- clarified from upstream about license - fixed. + +* Sat Dec 06 2008 Rakesh Pandit 1.0-1 +- Fixed %%Version and %%Release fields. + +* Fri Nov 07 2008 Rakesh Pandit 20080519-2 +- Clear %%install, consistency of macro use + +* Tue Nov 04 2008 Rakesh Pandit 20080519-1 +- Initial package From 92e1864a9456444e7f6cb53dd533cf8cbdb41a7e Mon Sep 17 00:00:00 2001 From: Rakesh Pandit Date: Thu, 8 Jan 2009 05:39:53 +0000 Subject: [PATCH 03/46] initial import --- .cvsignore | 1 + import.log | 1 + sources | 1 + unhide.spec | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 68 insertions(+) create mode 100644 import.log create mode 100644 unhide.spec diff --git a/.cvsignore b/.cvsignore index e69de29..c3d993d 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +unhide20080519.tgz diff --git a/import.log b/import.log new file mode 100644 index 0000000..736c658 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +unhide-1_0-2_fc10_20080519:F-9:unhide-1.0-2.fc10.20080519.src.rpm:1231349979 diff --git a/sources b/sources index e69de29..f081042 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +1194ec0f89c6f28e8eb64fb66836f70f unhide20080519.tgz diff --git a/unhide.spec b/unhide.spec new file mode 100644 index 0000000..c760a46 --- /dev/null +++ b/unhide.spec @@ -0,0 +1,65 @@ +Name: unhide +Version: 1.0 +Release: 2%{?dist}.20080519 +Summary: Tool to find hidden processes and TCP/UDP ports from rootkits + +Group: Applications/System +License: GPLv3 +URL: http://www.security-projects.com/?Unhide +Source0: http://www.security-projects.com/unhide20080519.tgz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +Unhide is a forensic tool to find processes and TCP/UDP ports hidden by +rootkits, Linux kernel modules or by other techniques. It includes two +utilities: unhide and unhide-tcp. + +Unhide detects hidden processes using three techniques: + + - comparing the output of /proc and /bin/ps + - comparing the information gathered from /bin/ps with the one gathered + from system calls (syscall scanning) + - full scan of the process ID space (PIDs bruteforcing) + +unhide-tcp identifies TCP/UDP ports that are listening but are not listed +in /bin/netstat through brute forcing of all TCP/UDP ports available. + + +%prep +%setup -q -n %{name}-20080519 + +%build +%{__cc} %{optflags} unhide-linux26.c -o unhide +%{__cc} %{optflags} unhide-tcp.c -o unhide-tcp + + +%install +rm -rf %{buildroot} +%{__install} -Dp -m0755 unhide %{buildroot}%{_sbindir}/unhide +%{__install} -Dp -m0755 unhide-tcp %{buildroot}%{_sbindir}/unhide-tcp +%{__install} -Dp -m0644 man/unhide.8 %{buildroot}%{_mandir}/man8/unhide.8 +%{__install} -Dp -m0644 man/unhide-tcp.8 %{buildroot}%{_mandir}/man8/unhide-tcp.8 + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc COPYING LEEME.txt README.txt +%doc %{_mandir}/man8/unhide.8* +%doc %{_mandir}/man8/unhide-tcp.8* +%{_sbindir}/unhide +%{_sbindir}/unhide-tcp + +%changelog +* Thu Jan 08 2009 Rakesh Pandit 1.0-2 +- clarified from upstream about license - fixed. + +* Sat Dec 06 2008 Rakesh Pandit 1.0-1 +- Fixed %%Version and %%Release fields. + +* Fri Nov 07 2008 Rakesh Pandit 20080519-2 +- Clear %%install, consistency of macro use + +* Tue Nov 04 2008 Rakesh Pandit 20080519-1 +- Initial package From 0a83bc926f1ca88fd5790495bcca8286a502f1af Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 25 Feb 2009 22:59:26 +0000 Subject: [PATCH 04/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index c760a46..015ca29 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 1.0 -Release: 2%{?dist}.20080519 +Release: 3%{?dist}.20080519 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 1.0-3.20080519 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Thu Jan 08 2009 Rakesh Pandit 1.0-2 - clarified from upstream about license - fixed. From 9752bdc3a6c394d12b7159d03eb52b8f2b087701 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 06:32:02 +0000 Subject: [PATCH 05/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 015ca29..5ed68db 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 1.0 -Release: 3%{?dist}.20080519 +Release: 4%{?dist}.20080519 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 1.0-4.20080519 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.0-3.20080519 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 04238e94d94a2e9c2da71079e7bd93dfb3ecc6fb Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:52:46 +0000 Subject: [PATCH 06/46] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 234f4f1..5b5e636 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := unhide SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 88feb5bce2635b1159505daae2c9fa250c45cb57 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:14:30 +0000 Subject: [PATCH 07/46] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 234f4f1..5b5e636 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := unhide SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 10bd6a9ce85b552d31663099d6841e65d4fa9445 Mon Sep 17 00:00:00 2001 From: Rakesh Pandit Date: Fri, 4 Dec 2009 08:23:14 +0000 Subject: [PATCH 08/46] Updated to 20090810 --- .cvsignore | 2 +- import.log | 1 + sources | 2 +- unhide.spec | 9 ++++++--- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.cvsignore b/.cvsignore index c3d993d..426f692 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -unhide20080519.tgz +unhide20090810.tgz diff --git a/import.log b/import.log index 4e35b27..f86569f 100644 --- a/import.log +++ b/import.log @@ -1 +1,2 @@ unhide-1_0-2_fc10_20080519:HEAD:unhide-1.0-2.fc10.20080519.src.rpm:1231349998 +unhide-1_0-5_fc12_20090810:HEAD:unhide-1.0-5.fc12.20090810.src.rpm:1259914250 diff --git a/sources b/sources index f081042..bc5d854 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1194ec0f89c6f28e8eb64fb66836f70f unhide20080519.tgz +f9842175046e6eb10d22f5a988293171 unhide20090810.tgz diff --git a/unhide.spec b/unhide.spec index 5ed68db..71011c6 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,12 +1,12 @@ Name: unhide Version: 1.0 -Release: 4%{?dist}.20080519 +Release: 5%{?dist}.20090810 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System License: GPLv3 URL: http://www.security-projects.com/?Unhide -Source0: http://www.security-projects.com/unhide20080519.tgz +Source0: http://www.security-projects.com/unhide20090810.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -26,7 +26,7 @@ in /bin/netstat through brute forcing of all TCP/UDP ports available. %prep -%setup -q -n %{name}-20080519 +%setup -q -n %{name}-20090810 %build %{__cc} %{optflags} unhide-linux26.c -o unhide @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Fri Dec 04 2009 Rakesh Pandit 1.0-5.20090810 +- Updated to 20090810 + * Sun Jul 26 2009 Fedora Release Engineering - 1.0-4.20080519 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 32d20f1b724d288ff38287f4e39dd5bf28b9a3a4 Mon Sep 17 00:00:00 2001 From: Rakesh Pandit Date: Mon, 3 May 2010 11:04:47 +0000 Subject: [PATCH 09/46] Updated to latest release in 2010 --- .cvsignore | 2 +- import.log | 1 + sources | 2 +- unhide.spec | 11 +++++++---- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.cvsignore b/.cvsignore index 426f692..7662ae3 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -unhide20090810.tgz +unhide-20100201.tgz diff --git a/import.log b/import.log index f86569f..35cd42e 100644 --- a/import.log +++ b/import.log @@ -1,2 +1,3 @@ unhide-1_0-2_fc10_20080519:HEAD:unhide-1.0-2.fc10.20080519.src.rpm:1231349998 unhide-1_0-5_fc12_20090810:HEAD:unhide-1.0-5.fc12.20090810.src.rpm:1259914250 +unhide-1_0-5_fc12_20100201:HEAD:unhide-1.0-5.fc12.20100201.src.rpm:1272883551 diff --git a/sources b/sources index bc5d854..4c0d500 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f9842175046e6eb10d22f5a988293171 unhide20090810.tgz +43cb2af4b0a03e0d1b253058626c1358 unhide-20100201.tgz diff --git a/unhide.spec b/unhide.spec index 71011c6..555ad22 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,12 +1,12 @@ Name: unhide Version: 1.0 -Release: 5%{?dist}.20090810 +Release: 5%{?dist}.20100201 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System License: GPLv3 URL: http://www.security-projects.com/?Unhide -Source0: http://www.security-projects.com/unhide20090810.tgz +Source0: http://www.security-projects.com/unhide-20100201.tgz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -26,10 +26,10 @@ in /bin/netstat through brute forcing of all TCP/UDP ports available. %prep -%setup -q -n %{name}-20090810 +%setup -q -n %{name}-20100201 %build -%{__cc} %{optflags} unhide-linux26.c -o unhide +%{__cc} %{optflags} -lpthread unhide-linux26.c -o unhide %{__cc} %{optflags} unhide-tcp.c -o unhide-tcp @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Mon May 03 2010 Rakesh Pandit 1.0-5.20100201 +- Updated to 20100201 + * Fri Dec 04 2009 Rakesh Pandit 1.0-5.20090810 - Updated to 20090810 From 48e1d5500fdaddd9e304098e37b0d992c1448b71 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:42:26 +0000 Subject: [PATCH 10/46] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 3 --- 3 files changed, 24 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 5b5e636..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: unhide -# $Id$ -NAME := unhide -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index 35cd42e..0000000 --- a/import.log +++ /dev/null @@ -1,3 +0,0 @@ -unhide-1_0-2_fc10_20080519:HEAD:unhide-1.0-2.fc10.20080519.src.rpm:1231349998 -unhide-1_0-5_fc12_20090810:HEAD:unhide-1.0-5.fc12.20090810.src.rpm:1259914250 -unhide-1_0-5_fc12_20100201:HEAD:unhide-1.0-5.fc12.20100201.src.rpm:1272883551 From 80d19ab0d0b4b4ce1f7b9bbadd5225fd54fa6905 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:42:27 +0000 Subject: [PATCH 11/46] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 5b5e636..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: unhide -# $Id$ -NAME := unhide -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 1c26f78..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-9 diff --git a/import.log b/import.log deleted file mode 100644 index 736c658..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -unhide-1_0-2_fc10_20080519:F-9:unhide-1.0-2.fc10.20080519.src.rpm:1231349979 From 5fbf1ff4d2911f14332e1c85a5adb91f49161acf Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 18:19:19 -0600 Subject: [PATCH 12/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 555ad22..e278b13 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 1.0 -Release: 5%{?dist}.20100201 +Release: 6%{?dist}.20100201 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 1.0-6.20100201 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Mon May 03 2010 Rakesh Pandit 1.0-5.20100201 - Updated to 20100201 From 3867908ef92fb80e6766dac7f62b9a1005f46147 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 01:31:36 -0600 Subject: [PATCH 13/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index e278b13..e4683ef 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 1.0 -Release: 6%{?dist}.20100201 +Release: 7%{?dist}.20100201 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 1.0-7.20100201 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 1.0-6.20100201 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 0962eb514f864e98a9c5d15473ce78e4d3c2c7ff Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 20:43:43 -0500 Subject: [PATCH 14/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index e4683ef..fd19e68 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 1.0 -Release: 7%{?dist}.20100201 +Release: 8%{?dist}.20100201 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 1.0-8.20100201 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jan 14 2012 Fedora Release Engineering - 1.0-7.20100201 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 9464e0ec7f74473d571b6bc74744ac83f41b91c3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 20:26:47 -0600 Subject: [PATCH 15/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index fd19e68..356b988 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 1.0 -Release: 8%{?dist}.20100201 +Release: 9%{?dist}.20100201 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System @@ -52,6 +52,9 @@ rm -rf %{buildroot} %{_sbindir}/unhide-tcp %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 1.0-9.20100201 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jul 22 2012 Fedora Release Engineering - 1.0-8.20100201 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From ab0c9633337d3c2a109450021144cfcd78dcfe9f Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Fri, 26 Jul 2013 14:54:38 +0530 Subject: [PATCH 16/46] Update to new version --- .gitignore | 1 + sources | 2 +- unhide.spec | 34 ++++++++++++++++++---------------- 3 files changed, 20 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 7662ae3..aa0648a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ unhide-20100201.tgz +/unhide-20121229.tgz diff --git a/sources b/sources index 4c0d500..b93ed1d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -43cb2af4b0a03e0d1b253058626c1358 unhide-20100201.tgz +1ad76312ed0ff7a26b8c501af9bffc67 unhide-20121229.tgz diff --git a/unhide.spec b/unhide.spec index 356b988..ebf1e7e 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,13 +1,12 @@ Name: unhide Version: 1.0 -Release: 9%{?dist}.20100201 +Release: 10%{?dist}.20121229 Summary: Tool to find hidden processes and TCP/UDP ports from rootkits Group: Applications/System License: GPLv3 -URL: http://www.security-projects.com/?Unhide -Source0: http://www.security-projects.com/unhide-20100201.tgz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +URL: http://www.unhide-forensics.info/ +Source0: http://downloads.sourceforge.net/project/unhide/unhide/unhide-20121229.tgz %description Unhide is a forensic tool to find processes and TCP/UDP ports hidden by @@ -26,32 +25,35 @@ in /bin/netstat through brute forcing of all TCP/UDP ports available. %prep -%setup -q -n %{name}-20100201 +%setup -q -n %{name}-20121229 +chmod -x sanity*.sh %build -%{__cc} %{optflags} -lpthread unhide-linux26.c -o unhide -%{__cc} %{optflags} unhide-tcp.c -o unhide-tcp +%{__cc} %{optflags} -lpthread unhide-linux*.c unhide-output.c -o unhide +%{__cc} %{optflags} unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp +%{__cc} %{optflags} unhide_rb.c -o unhide_rb %install -rm -rf %{buildroot} -%{__install} -Dp -m0755 unhide %{buildroot}%{_sbindir}/unhide -%{__install} -Dp -m0755 unhide-tcp %{buildroot}%{_sbindir}/unhide-tcp -%{__install} -Dp -m0644 man/unhide.8 %{buildroot}%{_mandir}/man8/unhide.8 -%{__install} -Dp -m0644 man/unhide-tcp.8 %{buildroot}%{_mandir}/man8/unhide-tcp.8 +install -Dp -m0755 unhide %{buildroot}%{_sbindir}/unhide +install -Dp -m0755 unhide-tcp %{buildroot}%{_sbindir}/unhide-tcp +install -Dp -m0755 unhide_rb %{buildroot}%{_sbindir}/unhide_rb -%clean -rm -rf %{buildroot} +install -Dp -m0644 man/unhide.8 %{buildroot}%{_mandir}/man8/unhide.8 +install -Dp -m0644 man/unhide-tcp.8 %{buildroot}%{_mandir}/man8/unhide-tcp.8 %files -%defattr(-,root,root,-) -%doc COPYING LEEME.txt README.txt +%doc COPYING changelog README.txt NEWS sanity.sh sanity-tcp.sh %doc %{_mandir}/man8/unhide.8* %doc %{_mandir}/man8/unhide-tcp.8* %{_sbindir}/unhide %{_sbindir}/unhide-tcp +%{_sbindir}/unhide_rb %changelog +* Fri Jul 26 2013 Parag - 1.0-10.20121229 +- Update to new version + * Fri Feb 15 2013 Fedora Release Engineering - 1.0-9.20100201 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 0e4a567c8b3b2f887c39c3876862639bd232cbb4 Mon Sep 17 00:00:00 2001 From: Christopher Meng Date: Thu, 9 Jan 2014 16:31:29 +0800 Subject: [PATCH 17/46] Update to 20130526. SPEC cleanup. Build with RELRO reflected in %{?__global_ldflags}. Bump version to the current one used in upstream. --- .gitignore | 1 + sources | 2 +- unhide.spec | 47 ++++++++++++++++++++++++++++------------------- 3 files changed, 30 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index aa0648a..8e44f08 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ unhide-20100201.tgz /unhide-20121229.tgz +/unhide-20130526.tgz diff --git a/sources b/sources index b93ed1d..615ad39 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1ad76312ed0ff7a26b8c501af9bffc67 unhide-20121229.tgz +f3d68ed8eb239614abb0ff5ace22cf85 unhide-20130526.tgz diff --git a/unhide.spec b/unhide.spec index ebf1e7e..03222e2 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,12 +1,10 @@ Name: unhide -Version: 1.0 -Release: 10%{?dist}.20121229 +Version: 20130526 +Release: 1%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits - -Group: Applications/System License: GPLv3 URL: http://www.unhide-forensics.info/ -Source0: http://downloads.sourceforge.net/project/unhide/unhide/unhide-20121229.tgz +Source0: http://downloads.sourceforge.net/project/unhide/unhide/unhide-%{version}.tgz %description Unhide is a forensic tool to find processes and TCP/UDP ports hidden by @@ -23,34 +21,45 @@ Unhide detects hidden processes using three techniques: unhide-tcp identifies TCP/UDP ports that are listening but are not listed in /bin/netstat through brute forcing of all TCP/UDP ports available. - %prep -%setup -q -n %{name}-20121229 +%setup -q chmod -x sanity*.sh %build -%{__cc} %{optflags} -lpthread unhide-linux*.c unhide-output.c -o unhide -%{__cc} %{optflags} unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp -%{__cc} %{optflags} unhide_rb.c -o unhide_rb - +%{__cc} %{optflags} -lpthread unhide-linux*.c unhide-output.c -o unhide %{?__global_ldflags} +%{__cc} %{optflags} unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp %{?__global_ldflags} +%{__cc} %{optflags} unhide_rb.c -o unhide_rb %{?__global_ldflags} %install -install -Dp -m0755 unhide %{buildroot}%{_sbindir}/unhide -install -Dp -m0755 unhide-tcp %{buildroot}%{_sbindir}/unhide-tcp -install -Dp -m0755 unhide_rb %{buildroot}%{_sbindir}/unhide_rb - -install -Dp -m0644 man/unhide.8 %{buildroot}%{_mandir}/man8/unhide.8 -install -Dp -m0644 man/unhide-tcp.8 %{buildroot}%{_mandir}/man8/unhide-tcp.8 +mkdir -p %{buildroot}%{_sbindir}/ +mkdir -p %{buildroot}%{_mandir}/man8/ +mkdir -p %{buildroot}%{_mandir}/es/man8/ +mkdir -p %{buildroot}%{_mandir}/fr/man8/ +install -pm0755 unhide %{buildroot}%{_sbindir}/ +install -pm0755 unhide-tcp %{buildroot}%{_sbindir}/ +install -pm0755 unhide_rb %{buildroot}%{_sbindir}/ +install -pm0644 man/unhide.8 %{buildroot}%{_mandir}/man8/ +install -pm0644 man/unhide-tcp.8 %{buildroot}%{_mandir}/man8/ +install -pm0644 man/es/unhide.8 %{buildroot}%{_mandir}/es/man8 +install -pm0644 man/es/unhide-tcp.8 %{buildroot}%{_mandir}/es/man8/ +install -pm0644 man/fr/unhide.8 %{buildroot}%{_mandir}/fr/man8/ +install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %files %doc COPYING changelog README.txt NEWS sanity.sh sanity-tcp.sh -%doc %{_mandir}/man8/unhide.8* -%doc %{_mandir}/man8/unhide-tcp.8* +%{_mandir}/man8/unhide*.8* +%{_mandir}/es/man8/unhide*.8* +%{_mandir}/fr/man8/unhide*.8* %{_sbindir}/unhide %{_sbindir}/unhide-tcp %{_sbindir}/unhide_rb %changelog +* Thu Jan 09 2014 Christopher Meng - 20130526-1 +- Update to 20130526 +- Add multilingual manpages. +- SPEC cleanup, build with RELRO. + * Fri Jul 26 2013 Parag - 1.0-10.20121229 - Update to new version From 87dbe9ec2e37a32a1a4718d1386652d0b2863505 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 21:47:31 -0500 Subject: [PATCH 18/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 03222e2..c58040f 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -55,6 +55,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 20130526-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Thu Jan 09 2014 Christopher Meng - 20130526-1 - Update to 20130526 - Add multilingual manpages. From 0ab632cdb3f7223adb00fcb1b51b821960f1a0dd Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 06:56:32 +0000 Subject: [PATCH 19/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index c58040f..6a19214 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -55,6 +55,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 20130526-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 20130526-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 770188de3f52e2eaeae72e8878c18c79879501e8 Mon Sep 17 00:00:00 2001 From: Christopher Meng Date: Tue, 17 Feb 2015 13:21:04 +0800 Subject: [PATCH 20/46] Use %license macro --- unhide.spec | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/unhide.spec b/unhide.spec index 6a19214..6522498 100644 --- a/unhide.spec +++ b/unhide.spec @@ -7,19 +7,8 @@ URL: http://www.unhide-forensics.info/ Source0: http://downloads.sourceforge.net/project/unhide/unhide/unhide-%{version}.tgz %description -Unhide is a forensic tool to find processes and TCP/UDP ports hidden by -rootkits, Linux kernel modules or by other techniques. It includes two -utilities: unhide and unhide-tcp. - -Unhide detects hidden processes using three techniques: - - - comparing the output of /proc and /bin/ps - - comparing the information gathered from /bin/ps with the one gathered - from system calls (syscall scanning) - - full scan of the process ID space (PIDs bruteforcing) - -unhide-tcp identifies TCP/UDP ports that are listening but are not listed -in /bin/netstat through brute forcing of all TCP/UDP ports available. +Unhide is a forensic tool to find hidden processes and TCP/UDP ports by +rootkits/LKMs or by another hiding technique. %prep %setup -q @@ -46,7 +35,8 @@ install -pm0644 man/fr/unhide.8 %{buildroot}%{_mandir}/fr/man8/ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %files -%doc COPYING changelog README.txt NEWS sanity.sh sanity-tcp.sh +%doc changelog README.txt NEWS sanity.sh sanity-tcp.sh +%license COPYING %{_mandir}/man8/unhide*.8* %{_mandir}/es/man8/unhide*.8* %{_mandir}/fr/man8/unhide*.8* From 35cd8a4b5b58581bbdede2563507ab67ab5decb3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 01:33:10 +0000 Subject: [PATCH 21/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 6522498..568777e 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -45,6 +45,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 20130526-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Aug 18 2014 Fedora Release Engineering - 20130526-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From ce9bc5acd363b2c80542b750ee2000f319e13a51 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:21:01 +0000 Subject: [PATCH 22/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 568777e..f8703b2 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -45,6 +45,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 20130526-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 20130526-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From df91c52c247ddbe8ccef314c6bd7f929b2a1329c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 16:43:25 +0000 Subject: [PATCH 23/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index f8703b2..8e70550 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -45,6 +45,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 20130526-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 20130526-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 7cb1e9218ca0753bfca28d476101b63e11cfb0eb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 20:59:00 +0000 Subject: [PATCH 24/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 8e70550..68f7fa9 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -45,6 +45,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 20130526-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 20130526-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From ef0946bfe46885a8cca2cda48b8eeb8f0ba3edd4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 09:47:15 +0000 Subject: [PATCH 25/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 68f7fa9..ee1c73b 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -45,6 +45,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 20130526-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 20130526-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 61abd98c38251b970e9cf363ea1c2cbbf6adc580 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 20:00:31 +0000 Subject: [PATCH 26/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index ee1c73b..23706b6 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -45,6 +45,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 20130526-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 20130526-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 2799e7f6d567d078ac48a8e928b955bc9f417cf8 Mon Sep 17 00:00:00 2001 From: Athmane Madjoudj Date: Mon, 19 Feb 2018 00:39:02 +0100 Subject: [PATCH 27/46] Add gcc as BR (minimal buildroot change) --- unhide.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 23706b6..83231f3 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,11 +1,13 @@ Name: unhide Version: 20130526 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ Source0: http://downloads.sourceforge.net/project/unhide/unhide/unhide-%{version}.tgz +BuildRequires: gcc + %description Unhide is a forensic tool to find hidden processes and TCP/UDP ports by rootkits/LKMs or by another hiding technique. @@ -45,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Mon Feb 19 2018 Athmane Madjoudj - 20130526-10 +- Add gcc as BR (minimal buildroot change) + * Fri Feb 09 2018 Fedora Release Engineering - 20130526-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 4e59fc2f3c1172383ba076fab8df0849dd3678bb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:13:39 +0000 Subject: [PATCH 28/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 83231f3..b6131da 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 20130526-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Mon Feb 19 2018 Athmane Madjoudj - 20130526-10 - Add gcc as BR (minimal buildroot change) From dc69e75c7e2a47c820347a7c6419de5f5a5085da Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 10:47:47 +0000 Subject: [PATCH 29/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index b6131da..eea22ab 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 20130526-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 20130526-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 074badf05fc153979440623f2ab4939852d452a7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 02:28:39 +0000 Subject: [PATCH 30/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index eea22ab..d922904 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 20130526-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 20130526-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From c3c4f5e87a5421a078399706df41ae8c9cb17093 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 02:34:39 +0000 Subject: [PATCH 31/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index d922904..c681b26 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 20130526-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 20130526-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From c26af611afe4183931cf5410311374e267621a57 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:16:40 +0000 Subject: [PATCH 32/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index c681b26..f7621cd 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 20130526-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 20130526-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 5bc59f1683f7202671dbb0bc9a30a33d99965671 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 22:39:30 +0000 Subject: [PATCH 33/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index f7621cd..579894a 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 20130526-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 20130526-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 331da6b315a7cddc5fb731599048e9fcf0c55688 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:01:37 +0000 Subject: [PATCH 34/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 579894a..65c9b05 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 20130526-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 20130526-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 573c499efb5823e98b7a57808c56ef73019ad15d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 03:30:35 +0000 Subject: [PATCH 35/46] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 65c9b05..3ab0bfe 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 20130526-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 20130526-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 4294f21170c333ee709406190283ed3837f64508 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 11:22:44 +0000 Subject: [PATCH 36/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 3ab0bfe..07aee91 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 20130526-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 20130526-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 374d4a51a66be5d4c3b531b2d0b99d5ce9ecae22 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 05:48:10 +0000 Subject: [PATCH 37/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 07aee91..704dcdc 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,6 +1,6 @@ Name: unhide Version: 20130526 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPLv3 URL: http://www.unhide-forensics.info/ @@ -47,6 +47,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 20130526-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 20130526-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 7343e9c52d213df98c0326b2b0e4ebc53c88bf5d Mon Sep 17 00:00:00 2001 From: Robby Callicotte Date: Thu, 20 Jul 2023 15:14:48 -0500 Subject: [PATCH 38/46] Rebased to new version --- .gitignore | 1 + sources | 2 +- unhide.spec | 16 ++++++++++------ 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 8e44f08..b908968 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ unhide-20100201.tgz /unhide-20121229.tgz /unhide-20130526.tgz +/Unhide-v20220611.tar.gz diff --git a/sources b/sources index 615ad39..13e72fe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f3d68ed8eb239614abb0ff5ace22cf85 unhide-20130526.tgz +SHA512 (Unhide-v20220611.tar.gz) = 0b2bb7d1a536fe572cce94b438cae0495a969e40014e95b2d19406c3108ce05ec8d722d77b76d4095a1dc5cf8fb6613f3e5df295ce10a08648d7c7390aa4500e diff --git a/unhide.spec b/unhide.spec index 704dcdc..48e7b3b 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,10 +1,11 @@ +%global srcname Unhide Name: unhide -Version: 20130526 -Release: 20%{?dist} +Version: 20220611 +Release: 1%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits -License: GPLv3 +License: GPL-3.0-only URL: http://www.unhide-forensics.info/ -Source0: http://downloads.sourceforge.net/project/unhide/unhide/unhide-%{version}.tgz +Source0: http://github.com/YJesus/%{srcname}/archive/v%{version}/%{srcname}-v%{version}.tar.gz BuildRequires: gcc @@ -13,7 +14,7 @@ Unhide is a forensic tool to find hidden processes and TCP/UDP ports by rootkits/LKMs or by another hiding technique. %prep -%setup -q +%autosetup -n %{srcname}-%{version} chmod -x sanity*.sh %build @@ -38,7 +39,7 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %files %doc changelog README.txt NEWS sanity.sh sanity-tcp.sh -%license COPYING +%license COPYING LICENSE %{_mandir}/man8/unhide*.8* %{_mandir}/es/man8/unhide*.8* %{_mandir}/fr/man8/unhide*.8* @@ -47,6 +48,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Thu Jul 20 2023 Robby Callicotte - 20220611-1 +- Rebased to new version + * Sat Jan 21 2023 Fedora Release Engineering - 20130526-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 92ed03ac153d181a2584cdfac43d1b34621c9207 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 07:06:06 +0000 Subject: [PATCH 39/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 48e7b3b..aee509c 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,7 +1,7 @@ %global srcname Unhide Name: unhide Version: 20220611 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPL-3.0-only URL: http://www.unhide-forensics.info/ @@ -48,6 +48,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 20220611-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Thu Jul 20 2023 Robby Callicotte - 20220611-1 - Rebased to new version From 6d5243b708d1b428fad12f84bf33077f3334a382 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 08:14:56 +0000 Subject: [PATCH 40/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index aee509c..1794fa7 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,7 +1,7 @@ %global srcname Unhide Name: unhide Version: 20220611 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPL-3.0-only URL: http://www.unhide-forensics.info/ @@ -48,6 +48,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 20220611-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 20220611-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From c1952b2484675730e75ebe948ec1dc7529175a7e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 13:44:35 +0000 Subject: [PATCH 41/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 1794fa7..5354645 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,7 +1,7 @@ %global srcname Unhide Name: unhide Version: 20220611 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits License: GPL-3.0-only URL: http://www.unhide-forensics.info/ @@ -48,6 +48,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 20220611-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 20220611-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From f5a11b9c759cd40c13522158cac0dbe6cfcce463 Mon Sep 17 00:00:00 2001 From: Robby Callicotte Date: Mon, 12 May 2025 16:10:48 -0500 Subject: [PATCH 42/46] Updated version, updated licenses --- unhide.spec | 50 +++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 47 insertions(+), 3 deletions(-) diff --git a/unhide.spec b/unhide.spec index 5354645..877c19c 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,9 +1,49 @@ %global srcname Unhide Name: unhide -Version: 20220611 -Release: 4%{?dist} +Version: 20240510 +Release: 1%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits -License: GPL-3.0-only + +# GPL-3.0-or-later +# unhide-20240510-build/Unhide-20240510/COPYING +# unhide-20240510-build/Unhide-20240510/LEEME.txt +# unhide-20240510-build/Unhide-20240510/LICENSE +# unhide-20240510-build/Unhide-20240510/LISEZ-MOI.TXT +# unhide-20240510-build/Unhide-20240510/NEWS +# unhide-20240510-build/Unhide-20240510/README.txt +# unhide-20240510-build/Unhide-20240510/TODO +# unhide-20240510-build/Unhide-20240510/build_all.sh +# unhide-20240510-build/Unhide-20240510/changelog +# unhide-20240510-build/Unhide-20240510/make_tarball.sh +# unhide-20240510-build/Unhide-20240510/man/es/unhide-tcp.8 +# unhide-20240510-build/Unhide-20240510/man/es/unhide.8 +# unhide-20240510-build/Unhide-20240510/man/fr/unhide-tcp.8 +# unhide-20240510-build/Unhide-20240510/man/fr/unhide.8 +# unhide-20240510-build/Unhide-20240510/man/unhide-tcp.8 +# unhide-20240510-build/Unhide-20240510/man/unhide.8 +# unhide-20240510-build/Unhide-20240510/ps +# unhide-20240510-build/Unhide-20240510/sanity-tcp.sh +# unhide-20240510-build/Unhide-20240510/sanity.sh +# unhide-20240510-build/Unhide-20240510/ss +# unhide-20240510-build/Unhide-20240510/ss-ref +# unhide-20240510-build/Unhide-20240510/tar_list.txt +# unhide-20240510-build/Unhide-20240510/unhide-linux-bruteforce.c +# unhide-20240510-build/Unhide-20240510/unhide-linux-compound.c +# unhide-20240510-build/Unhide-20240510/unhide-linux-procfs.c +# unhide-20240510-build/Unhide-20240510/unhide-linux-syscall.c +# unhide-20240510-build/Unhide-20240510/unhide-linux.c +# unhide-20240510-build/Unhide-20240510/unhide-linux.h +# unhide-20240510-build/Unhide-20240510/unhide-output.c +# unhide-20240510-build/Unhide-20240510/unhide-output.h +# unhide-20240510-build/Unhide-20240510/unhide-posix.c +# unhide-20240510-build/Unhide-20240510/unhide-tcp-fast.c +# unhide-20240510-build/Unhide-20240510/unhide-tcp.c +# unhide-20240510-build/Unhide-20240510/unhide-tcp.h +# unhide-20240510-build/Unhide-20240510/unhideGui.py +# unhide-20240510-build/Unhide-20240510/unhide_rb.c +# MIT +# unhide-20240510-build/Unhide-20240510/ToolTip.py +License: GPL-3.0-or-later AND MIT URL: http://www.unhide-forensics.info/ Source0: http://github.com/YJesus/%{srcname}/archive/v%{version}/%{srcname}-v%{version}.tar.gz @@ -48,6 +88,10 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Mon May 12 2025 Robby Callicotte - 20240510-1 +- Updated to 20240510 +- Corrected license + * Sun Jan 19 2025 Fedora Release Engineering - 20220611-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From f94a0d1d24a185e7e770945a5b14811a490e729d Mon Sep 17 00:00:00 2001 From: Robby Callicotte Date: Mon, 12 May 2025 16:18:07 -0500 Subject: [PATCH 43/46] Updated to v20240510 --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b908968..74c47c1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ unhide-20100201.tgz /unhide-20121229.tgz /unhide-20130526.tgz /Unhide-v20220611.tar.gz +/Unhide-v20240510.tar.gz diff --git a/sources b/sources index 13e72fe..8cfe452 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (Unhide-v20220611.tar.gz) = 0b2bb7d1a536fe572cce94b438cae0495a969e40014e95b2d19406c3108ce05ec8d722d77b76d4095a1dc5cf8fb6613f3e5df295ce10a08648d7c7390aa4500e +SHA512 (Unhide-v20240510.tar.gz) = d0dd21ce3ee4e7c36f4e83161776e3a9fcb79b706448e90f4667b9ce114b7a5fb2905a2756f0ff19d31499b416b194fa0891f486d294d0c63316310773b6b211 From 53cd9d748390cd7f760820bcdfc5ba4727afe528 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 19:46:29 +0000 Subject: [PATCH 44/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 877c19c..45bc96f 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,7 +1,7 @@ %global srcname Unhide Name: unhide Version: 20240510 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits # GPL-3.0-or-later @@ -88,6 +88,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 20240510-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Mon May 12 2025 Robby Callicotte - 20240510-1 - Updated to 20240510 - Corrected license From 870fbf60ed4ac9cd55d628a56db09347cc67b4e9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 19:35:55 +0000 Subject: [PATCH 45/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 45bc96f..9200973 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,7 +1,7 @@ %global srcname Unhide Name: unhide Version: 20240510 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits # GPL-3.0-or-later @@ -88,6 +88,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 20240510-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 20240510-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 1b6583a59bc0af33d00a0455599becf6ace5f681 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:10:33 +0000 Subject: [PATCH 46/46] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- unhide.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/unhide.spec b/unhide.spec index 9200973..e143308 100644 --- a/unhide.spec +++ b/unhide.spec @@ -1,7 +1,7 @@ %global srcname Unhide Name: unhide Version: 20240510 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Tool to find hidden processes and TCP/UDP ports from rootkits # GPL-3.0-or-later @@ -88,6 +88,9 @@ install -pm0644 man/fr/unhide-tcp.8 %{buildroot}%{_mandir}/fr/man8/ %{_sbindir}/unhide_rb %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 20240510-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 20240510-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild