How To Install preeny on CentOS 7

In this tutorial we learn how to install preeny on CentOS 7. preeny is Some helpful preload libraries for pwning stuff

Introduction

In this tutorial we learn how to install preeny on CentOS 7.

What is preeny

Preeny helps you pwn noobs by making it easier to interact with services locally. It disables fork(), rand(), and alarm() and, if you want, can convert a server application to a console one using clever/hackish tricks, and can even patch binaries.

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

Install preeny on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install preeny

Install preeny on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install preeny

How To Uninstall preeny on CentOS 7

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

sudo dnf remove preeny

References

Summary

In this tutorial we learn how to install preeny on CentOS 7 using yum and dnf.