Skip to content

Commit

Permalink
debugger works on urls with query string (#2942)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Aug 21, 2024
2 parents 32a77a0 + 1d1d987 commit c09de73
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 26 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Unreleased
failed entries. :issue:`2916`
- Dev server handles unexpected `SSLEOFError` due to issue in Python < 3.13.
:issue:`2926`
- Debugger pin auth works when the URL already contains a query string.
:issue:`2918`


Version 3.0.3
Expand Down
36 changes: 10 additions & 26 deletions src/werkzeug/debug/shared/debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,22 @@ function wrapPlainTraceback() {
plainTraceback.replaceWith(wrapper);
}

function makeDebugURL(args) {
const params = new URLSearchParams(args)
params.set("s", SECRET)
return `?__debugger__=yes&${params}`
}

function initPinBox() {
document.querySelector(".pin-prompt form").addEventListener(
"submit",
function (event) {
event.preventDefault();
const pin = encodeURIComponent(this.pin.value);
const encodedSecret = encodeURIComponent(SECRET);
const btn = this.btn;
btn.disabled = true;

fetch(
`${document.location}?__debugger__=yes&cmd=pinauth&pin=${pin}&s=${encodedSecret}`
makeDebugURL({cmd: "pinauth", pin: this.pin.value})
)
.then((res) => res.json())
.then(({auth, exhausted}) => {
Expand Down Expand Up @@ -77,10 +81,7 @@ function initPinBox() {

function promptForPin() {
if (!EVALEX_TRUSTED) {
const encodedSecret = encodeURIComponent(SECRET);
fetch(
`${document.location}?__debugger__=yes&cmd=printpin&s=${encodedSecret}`
);
fetch(makeDebugURL({cmd: "printpin"}));
const pinPrompt = document.getElementsByClassName("pin-prompt")[0];
fadeIn(pinPrompt);
document.querySelector('.pin-prompt input[name="pin"]').focus();
Expand Down Expand Up @@ -237,7 +238,7 @@ function createConsoleInput() {

function createIconForConsole() {
const img = document.createElement("img");
img.setAttribute("src", "?__debugger__=yes&cmd=resource&f=console.png");
img.setAttribute("src", makeDebugURL({cmd: "resource", f: "console.png"}));
img.setAttribute("title", "Open an interactive python shell in this frame");
return img;
}
Expand All @@ -263,24 +264,7 @@ function handleConsoleSubmit(e, command, frameID) {
e.preventDefault();

return new Promise((resolve) => {
// Get input command.
const cmd = command.value;

// Setup GET request.
const urlPath = "";
const params = {
__debugger__: "yes",
cmd: cmd,
frm: frameID,
s: SECRET,
};
const paramString = Object.keys(params)
.map((key) => {
return "&" + encodeURIComponent(key) + "=" + encodeURIComponent(params[key]);
})
.join("");

fetch(urlPath + "?" + paramString)
fetch(makeDebugURL({cmd: command.value, frm: frameID}))
.then((res) => {
return res.text();
})
Expand Down

0 comments on commit c09de73

Please sign in to comment.