Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add PDF URL validation and content type check #1896

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

Yukaii
Copy link
Member

@Yukaii Yukaii commented Mar 19, 2025

Companion test script

A bun proxy server that serve xss content https://william957-web.github.io/meow_xss.html

// pdf-proxy.js
const server = Bun.serve({
  port: 5678,
  async fetch(req) {
    // Only handle requests to our proxy endpoint
    const url = new URL(req.url);
    if (url.pathname !== "/proxy-as-pdf.pdf") {
      return new Response("Not Found", { status: 404 });
    }

    try {
      // Fetch the original HTML content
      const response = await fetch("https://william957-web.github.io/meow_xss.html");
      const originalContent = await response.text();

      // Return the HTML content with PDF content type
      return new Response(originalContent, {
        headers: {
          "Content-Type": "application/pdf",
          "Content-Disposition": "inline; filename=document.pdf"
        }
      });
    } catch (error) {
      console.error("Error fetching the content:", error);
      return new Response("Error proxying the content", { status: 500 });
    }
  }
});

console.log(`PDF proxy server running at http://localhost:${server.port}`);

And reverse proxy

caddy reverse-proxy --from local.localhost --to localhost:5678 --internal-certs

And embed with:

{%pdf https://local.localhost/proxy-as-pdf.pdf %}

@Yukaii Yukaii linked an issue Mar 19, 2025 that may be closed by this pull request
@Yukaii Yukaii force-pushed the bugfix/dev-1876-improper-pdf-link-handling-leading-xss branch from 695f27e to 55e9de3 Compare March 19, 2025 12:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Impropper url embed with PDF leading XSS and DoS
1 participant