Skip to main content

Hacking Root Password In Linux





Hi friends! Time to come back for another blog post regarding Linux and this time we’ll mess with the root account password. My friends who  know Linux at their fingertips would find it easy but nevertheless it’s really interesting. This is the first task one need to do during the RHCE exam. So let’s break the root password from the GRUB.
BREAKING LINUX PASSWORD At the time of booting process starts press ESC key to enter OS selection menu.
Here highlight the OS using arrow keys and then press E to edit it. Now you will see a screen like this.
Select the second line containing information regarding kernel parameters.
Now again press E to edit these kernel parameters. We can edit various kernel parameters from here but what we’ll do is to change the runlevel of  System.
Once we have entered into parameter editing mode type 1 or s or single after a space and then press ENTER key. Now press B to boot the system in the single user mode. This is the troubleshooting mode for Linux and we use this for repairing and maintenance.
BREAKING LINUX PASSWORDNow let the system take its time to boot and once you get the prompt all you need is to issue just 2 simple commands.
setenforce 0
Here zero indicates to set SELinux permission to permissive mode. You may not need to do this in your home environment. After this issue passwd command and change the password for root account.

Once you have successfully changed the password issue init 5 to switch to graphical mode and enjoy -You have successfully changed the password for root account. So guys here we played with the GRUB and in my next  post I’ll tell you how to password protect your GRUB menu so that no mischief can be done through this trick .So till then wait and watch and have fun.

Comments

Popular posts from this blog

Setup a Multi-Protocol VPN Server Using SoftEther on Centos7

  Introduction This article explains how to install and configure a multi-protocol VPN server using the SoftEther package. We enable and configure OpenVPN and L2TP over IPSec and SSTP VPN Servers on Linux. What is SoftEther SoftEther VPN is one of the world’s most powerful and easy-to-use multi-protocol VPN software, made by the good folks at the University of Tsukuba, Japan. It runs on Windows, Linux, Mac, FreeBSD and Solaris and is freeware and open-source. You can use SoftEther for any personal or commercial use free of charge. Step 1: Create a Virtual Server First, you need to create a DigitalOcean Droplet. As mentioned in SoftEther’s website, SoftEther will work on almost every Linux distro with kernel v2.4 or above,; however it’s recommended to choose one of these distributions: CentOS, Fedora, or Red Hat Enterprise Linux. Personally I have tried it on Ubuntu, CentOS and Fedora, both 32 and 64 bit editions, and it has worked perfectly. Step 2: Update your Server Software Usin...

Setting Up MariaDB MaxScale Binlog Proxy for backup/failover

  Setting Up MariaDB MaxScale Binlog Proxy MariaDB MaxScale Binlog Server acts as an intermediate master replication proxy. By storing binary logs and serving them to replicas, it enables scalable replication architectures, reduces primary database load, and accelerates disaster recovery. Step 1: Install MariaDB MaxScale Install MaxScale using the package manager appropriate for your Linux distribution, then verify the installation. On Ubuntu/Debian: sudo apt-get update sudo apt-get install maxscale On RHEL/CentOS: sudo yum install maxscale Verify the installation: maxscale --version Step 2: Configure MaxScale as a Binlog Proxy Open MaxScale's core configuration file to establish the routing properties and specify your database backend configuration. sudo nano /etc/maxscale.cnf Add the following configurations for the moni...

Deploying a laravel app using nginx alias

  server { listen 80; server_name subdomian.example.com; root /var/www/mainapp/; add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=block"; add_header X-Content-Type-Options "nosniff"; index index.html index.htm index.php; charset utf-8; error_log /var/log/nginx/error.log warn; location / { try_files $uri $uri/ /index.php?$query_string; } location = /favicon.ico { access_log off; log_not_found off; } location = /robots.txt { access_log off; log_not_found off; } error_page 404 /index.php; location ~ \.php$ { fastcgi_pass unix:/var/run/php/php8.1-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; include fastcgi_params; } location /laravelapp { alias /var/www/mainapp/laravelapp/public; index index.php index.html in...