Wednesday, May 31, 2023

Learning Web Pentesting With DVWA Part 6: File Inclusion

In this article we are going to go through File Inclusion Vulnerability. Wikipedia defines File Inclusion Vulnerability as: "A file inclusion vulnerability is a type of web vulnerability that is most commonly found to affect web applications that rely on a scripting run time. This issue is caused when an application builds a path to executable code using an attacker-controlled variable in a way that allows the attacker to control which file is executed at run time. A file include vulnerability is distinct from a generic directory traversal attack, in that directory traversal is a way of gaining unauthorized file system access, and a file inclusion vulnerability subverts how an application loads code for execution. Successful exploitation of a file inclusion vulnerability will result in remote code execution on the web server that runs the affected web application."
There are two types of File Inclusion Vulnerabilities, LFI (Local File Inclusion) and RFI (Remote File Inclusion). Offensive Security's Metasploit Unleashed guide describes LFI and RFI as:
"LFI vulnerabilities allow an attacker to read (and sometimes execute) files on the victim machine. This can be very dangerous because if the web server is misconfigured and running with high privileges, the attacker may gain access to sensitive information. If the attacker is able to place code on the web server through other means, then they may be able to execute arbitrary commands.
RFI vulnerabilities are easier to exploit but less common. Instead of accessing a file on the local machine, the attacker is able to execute code hosted on their own machine."
In simpler terms LFI allows us to use the web application's execution engine (say php) to execute local files on the web server and RFI allows us to execute remote files, within the context of the target web server, which can be hosted anywhere remotely (given they can be accessed from the network on which web server is running).
To follow along, click on the File Inclusion navigation link of DVWA, you should see a page like this:
Lets start by doing an LFI attack on the web application.
Looking at the URL of the web application we can see a parameter named page which is used to load different php pages on the website.
http://localhost:9000/vulnerabilities/fi/?page=include.php 
Since it is loading different pages we can guess that it is loading local pages from the server and executing them. Lets try to get the famous /etc/passwd file found on every linux, to do that we have to find a way to access it via our LFI. We will start with this:
../etc/passwd 
entering the above payload in the page parameter of the URL:
http://localhost:9000/vulnerabilities/fi/?page=../etc/passwd 
we get nothing back which means the page does not exist. Lets try to understand what we are trying to accomplish. We are asking for a file named passwd in a directory named etc which is one directory up from our current working directory. The etc directory lies at the root (/) of a linux file system. We tried to guess that we are in a directory (say www) which also lies at the root of the file system, that's why we tried to go up by one directory and then move to the etc directory which contains the passwd file. Our next guess will be that maybe we are two directories deeper, so we modify our payload to be like this:
../../etc/passwd 
we get nothing back. We continue to modify our payload thinking we are one more directory deeper.
../../../etc/passwd 
no luck again, lets try one more:
../../../../etc/passwd 
nop nothing, we keep on going one directory deeper until we get seven directories deep and our payload becomes:
../../../../../../../etc/passwd 
which returns the contents of passwd file as seen below:
This just means that we are currently working in a directory which is seven levels deep inside the root (/) directory. It also proves that our LFI is a success. We can also use php filters to get more and more information from the server. For example if we want to get the source code of the web server we can use php wrapper filter for that like this:
php://filter/convert.base64-encode/resource=index.php 
We will get a base64 encoded string. Lets copy that base64 encoded string in a file and save it as index.php.b64 (name can be anything) and then decode it like this:
cat index.php.b64 | base64 -d > index.php 
We will now be able to read the web application's source code. But you maybe thinking why didn't we simply try to get index.php file without using php filter. The reason is because if we try to get a php file with LFI, the php file will be executed by the php interpreter rather than displayed as a text file. As a workaround we first encode it as base64 which the interpreter won't interpret since it is not php and thus will display the text. Next we will try to get a shell. Before php version 5.2, allow_url_include setting was enabled by default however after version 5.2 it was disabled by default. Since the version of php on which our dvwa app is running on is 5.2+ we cannot use the older methods like input wrapper or RFI to get shell on dvwa unless we change the default settings (which I won't). We will use the file upload functionality to get shell. We will upload a reverse shell using the file upload functionality and then access that uploaded reverse shell via LFI.
Lets upload our reverse shell via File Upload functionality and then set up our netcat listener to listen for a connection coming from the server.
nc -lvnp 9999 
Then using our LFI we will execute the uploaded reverse shell by accessing it using this url:
http://localhost:9000/vulnerabilities/fi/?page=../../hackable/uploads/revshell.php 
Voila! We have a shell.
To learn more about File Upload Vulnerability and the reverse shell we have used here read Learning Web Pentesting With DVWA Part 5: Using File Upload to Get Shell. Attackers usually chain multiple vulnerabilities to get as much access as they can. This is a simple example of how multiple vulnerabilities (Unrestricted File Upload + LFI) can be used to scale up attacks. If you are interested in learning more about php wrappers then LFI CheetSheet is a good read and if you want to perform these attacks on the dvwa, then you'll have to enable allow_url_include setting by logging in to the dvwa server. That's it for today have fun.
Leave your questions and queries in the comments below.

References:

  1. FILE INCLUSION VULNERABILITIES: https://www.offensive-security.com/metasploit-unleashed/file-inclusion-vulnerabilities/
  2. php://: https://www.php.net/manual/en/wrappers.php.php
  3. LFI Cheat Sheet: https://highon.coffee/blog/lfi-cheat-sheet/
  4. File inclusion vulnerability: https://en.wikipedia.org/wiki/File_inclusion_vulnerability
  5. PHP 5.2.0 Release Announcement: https://www.php.net/releases/5_2_0.php


Related news
  1. Pentest Recon Tools
  2. Hacking Tools 2020
  3. Hacking Tools 2019
  4. Hack Tools For Games
  5. Hacking Tools And Software
  6. Best Hacking Tools 2020
  7. Pentest Tools Subdomain
  8. Best Pentesting Tools 2018
  9. Hacker Tools Github
  10. Nsa Hacker Tools
  11. Hacker Tools Online
  12. Pentest Tools Kali Linux
  13. Physical Pentest Tools
  14. Hacking Tools For Windows 7
  15. Hack Tools Online
  16. Hack Tools Github
  17. Hacker Tools For Pc
  18. Hacking Tools Mac
  19. Pentest Recon Tools
  20. Hacker Tools Mac
  21. Bluetooth Hacking Tools Kali
  22. Hacking Tools For Windows
  23. Wifi Hacker Tools For Windows
  24. Ethical Hacker Tools
  25. Pentest Tools Subdomain
  26. Hacking Tools For Kali Linux
  27. Growth Hacker Tools
  28. Hacker Tools Windows
  29. New Hack Tools
  30. Hacking Tools For Games
  31. Hack Website Online Tool
  32. Pentest Tools
  33. Pentest Tools For Android
  34. Hacking Tools Kit
  35. Computer Hacker
  36. Easy Hack Tools
  37. Hack Tool Apk No Root
  38. Hack Tools Github
  39. Pentest Tools Alternative
  40. Game Hacking
  41. Hack Tools For Games
  42. Hacker Tools List
  43. Hacking Tools For Pc
  44. Hacker Techniques Tools And Incident Handling
  45. Hacker Tools Free Download
  46. Hacker Tools Apk
  47. Hack Tools
  48. Pentest Tools Website
  49. How To Hack
  50. Github Hacking Tools
  51. Pentest Tools Website
  52. Pentest Reporting Tools
  53. Best Hacking Tools 2020
  54. What Is Hacking Tools
  55. Pentest Tools Find Subdomains
  56. Hack Apps
  57. Pentest Tools Review
  58. Hacker Tools Hardware
  59. Hacker Tools Free
  60. Pentest Tools Port Scanner
  61. Physical Pentest Tools
  62. Hacking Tools Online
  63. Underground Hacker Sites
  64. Ethical Hacker Tools
  65. Hacking Tools Download
  66. Hackers Toolbox
  67. Ethical Hacker Tools
  68. Free Pentest Tools For Windows
  69. Pentest Tools Kali Linux
  70. Pentest Tools Bluekeep
  71. Hacker Tools Free
  72. Hack Tools For Mac
  73. Hack App
  74. Hacker Tools For Mac
  75. Hacking Tools For Pc
  76. Hacking Tools For Games
  77. Hacker Tools For Pc
  78. Easy Hack Tools
  79. Tools Used For Hacking
  80. Pentest Tools Download
  81. Hacker Tools 2020
  82. New Hacker Tools
  83. Pentest Tools List
  84. Pentest Tools Github
  85. Hack Tools Mac
  86. Game Hacking
  87. Hacker Tools Apk Download
  88. Hacking Tools Mac
  89. Top Pentest Tools
  90. Hacking Tools Windows
  91. Hacking Tools Mac
  92. Hack Apps
  93. Hack Website Online Tool
  94. Ethical Hacker Tools
  95. Hack Website Online Tool
  96. Android Hack Tools Github
  97. Pentest Tools Subdomain
  98. Hacking Tools Usb
  99. How To Install Pentest Tools In Ubuntu
  100. Hack Tools Online
  101. Hacking Tools For Pc
  102. Hacking Tools Name
  103. Hacking Tools Online
  104. Pentest Tools Bluekeep
  105. Hacking Apps
  106. Physical Pentest Tools
  107. Nsa Hacker Tools
  108. Pentest Tools Url Fuzzer
  109. Hacking Tools Download
  110. Hacking Tools 2020
  111. Github Hacking Tools
  112. Pentest Tools Windows
  113. Hack Website Online Tool
  114. Hacker Tools 2019
  115. Pentest Tools Website Vulnerability
  116. Hacker Tools Free
  117. How To Make Hacking Tools
  118. Beginner Hacker Tools
  119. Hack Tools 2019
  120. Termux Hacking Tools 2019
  121. Hacking Tools For Windows Free Download
  122. Hacking Tools Github
  123. Hackers Toolbox
  124. How To Make Hacking Tools
  125. Pentest Tools Android
  126. Hacking Tools For Mac
  127. Hack App
  128. Best Hacking Tools 2020
  129. Hacker Security Tools
  130. Hacker Tools Online
  131. Hackers Toolbox
  132. New Hacker Tools
  133. Pentest Tools Url Fuzzer
  134. Hacking Tools For Kali Linux
  135. Pentest Recon Tools
  136. New Hack Tools
  137. Hacks And Tools
  138. Hacker Tools Software
  139. Hacks And Tools
  140. Pentest Tools Linux
  141. Hack App
  142. Hacker Tools Free
  143. Hacker Tools Free Download
  144. How To Hack
  145. Hacking Tools 2020
  146. Hacking Tools For Kali Linux
  147. Pentest Tools Tcp Port Scanner
  148. Hacker Tools
  149. Hacker Tools For Pc
  150. Hacker Tools For Ios
  151. Hacking Tools 2020
  152. Hacking Tools For Windows 7
  153. Underground Hacker Sites
  154. Hacking Tools And Software
  155. Pentest Tools Nmap
  156. Hack Apps
  157. Tools Used For Hacking
  158. Wifi Hacker Tools For Windows
  159. Hack Tool Apk No Root
  160. Wifi Hacker Tools For Windows
  161. Free Pentest Tools For Windows
  162. Android Hack Tools Github
  163. Hack And Tools
  164. Pentest Tools Website
  165. Hacking Tools 2020
  166. Hacking Tools Name
  167. Hacker
  168. Hackrf Tools
  169. Hack Tool Apk
  170. How To Install Pentest Tools In Ubuntu

No comments:

Post a Comment