Four Turkish court integrations - but three depend on an undocumented Python sidecar and a stray ELF binary came along for the ride
furkancevik-debug added routes for Yargitay, Danistay, Emsal, and Anayasa in a single commit. The Anayasa integration talks directly to the court's website; the other three proxy to a localhost Python service that isn't in the repo. There's also a 1.3 MB ELF binary committed to the frontend directory.
The commit adds four requireAuth-gated Express routers (~590 LOC) and wires them into backend/src/index.ts. Three of them - Yargitay, Danistay, and Emsal - forward request bodies to http://127.0.0.1:3002, a Python sidecar that does not appear anywhere in the repository. The Anayasa router posts form-encoded requests directly to normkararlarbilgibankasi.anayasa.gov.tr using spoofed browser headers and parses the HTML response. A single built-in workflow is added for Yargitay case search, with a Turkish-language prompt.
The routers pass through payloads without input validation, schema typing, rate limiting, or caching. Error paths log to console.error and return 502 with minimal detail. The Python API base URL is hardcoded as http://127.0.0.1:3002 in each file.
Two problems in the same commit worth flagging before any cherry-pick. frontend/let is a 1.3 MB Linux ELF binary committed with mode 100755 - almost certainly a stray file from the developer's machine (the commit author is root@vmi3046840.contaboserver.net, indicating server-side edits). Separately, backend/src/routes/projects.ts picks up unrelated debug instrumentation: try/catch wraps and console.error calls that log userId and userEmail. That's PII in production logs.
Spotted something wrong? Or know the PR text has fresher detail than the writeup above?