How To Install unhide on Fedora 34

unhide is Tool to find hidden processes and TCP/UDP ports from rootkits

Introduction

In this tutorial we learn how to install unhide on Fedora 34.

What is unhide

Unhide is a forensic tool to find hidden processes and TCP/UDP ports by rootkits/LKMs or by another hiding technique.

We can use yum or dnf to install unhide on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install unhide.

Install unhide on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install unhide using dnf by running the following command:

sudo dnf -y install unhide

Install unhide on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install unhide using yum by running the following command:

sudo yum -y install unhide

How To Uninstall unhide on Fedora 34

To uninstall only the unhide package we can use the following command:

sudo dnf remove unhide

unhide Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/38
/usr/lib/.build-id/38/d49fc187692bf556fc3a6e3324135cf0d5bf73
/usr/lib/.build-id/bf
/usr/lib/.build-id/bf/b148009f6a8fc13ef54d28aba15579f0eb0cf5
/usr/lib/.build-id/e4
/usr/lib/.build-id/e4/c3da9bf5b14ee42da392cb7cb42bf9a9376fc2
/usr/sbin/unhide
/usr/sbin/unhide-tcp
/usr/sbin/unhide_rb
/usr/share/doc/unhide
/usr/share/doc/unhide/NEWS
/usr/share/doc/unhide/README.txt
/usr/share/doc/unhide/changelog
/usr/share/doc/unhide/sanity-tcp.sh
/usr/share/doc/unhide/sanity.sh
/usr/share/licenses/unhide
/usr/share/licenses/unhide/COPYING
/usr/share/man/es/man8/unhide-tcp.8.gz
/usr/share/man/es/man8/unhide.8.gz
/usr/share/man/fr/man8/unhide-tcp.8.gz
/usr/share/man/fr/man8/unhide.8.gz
/usr/share/man/man8/unhide-tcp.8.gz
/usr/share/man/man8/unhide.8.gz

References

Summary

In this tutorial we learn how to install unhide on Fedora 34 using yum and dnf.