Likely probe
Not Found: /.env
The requester is looking for an exposed environment file. A 404 is the expected response. Investigate immediately if the path returns content, a successful status or an unexpected redirect.
Django error monitoring / 404 log triage
Paste django.request “Not Found” paths such as /.env and /wp-login.php, then separate likely scanner noise from broken Django routes that deserve attention. No FetchNode integration needed.
One-off checker · Runs entirely in your browser · No signup · No URLs are fetched
Paste one path or log line per row. Add your real Django route prefixes so the checker can protect customer-facing URLs from being dismissed as bot traffic. You can use this as a one-off log check without connecting anything.
One prefix per line. Prefixes win over bot patterns, so your real routes stay visible.
Result
0
parsed paths
0
prefix matches
0
likely probes
0
unknown paths
Paste paths and run the checker.
Check the matching URL pattern and the reported response. A prefix match does not prove that a page exists or that a customer visited it.
Review these patterns before filtering. Classification does not verify the response or rule out a security problem.
These match neither your prefixes nor a known probe pattern. Check your URL configuration and referring links before deciding what to do.
Understand the log line
/.env and /wp-login.php 404sPublic websites receive automated requests for files and routes associated with other frameworks, leaked secrets or known administration panels. A Django 404 means that request did not resolve to a page; by itself, it is not evidence that the probe succeeded or that the website was compromised.
Likely probe
The requester is looking for an exposed environment file. A 404 is the expected response. Investigate immediately if the path returns content, a successful status or an unexpected redirect.
Likely probe
A Django-only website normally has no WordPress login route. This is usually broad internet scanning, unless your stack deliberately serves WordPress beside Django.
Likely real route
A path inside your actual URL structure can interrupt a customer journey. Confirm the URL pattern, deployment, referrer and nearby conversion events before dismissing it.
Filter safely
List prefixes such as /checkout/, /accounts/ and /products/ from your URL configuration. In this checker, a real prefix takes precedence over a generic bot pattern.
Django’s IGNORABLE_404_URLS setting can suppress matching reports produced by BrokenLinkEmailsMiddleware. Keep expressions specific and review them when your real URL structure changes.
A referrer, repeated customer journey or release correlation makes a 404 more useful. Django also exposes 404s through its logging framework, which can feed a dedicated monitoring handler.
Django 404 questions
Not Found: /.env in Django?An automated client is probably checking whether your server exposes an environment file. Returning 404 is appropriate. Do not create that route or expose secrets through static files, diagnostics or error responses.
/wp-login.php 404s on a Django website?Usually, yes—when you know the website does not host WordPress. Filter the exact probe from your attention queue, but keep a record or access-log policy that fits your security needs.
IGNORABLE_404_URLS do?It is a list of compiled regular expressions used by Django’s broken-link email reporting to stop reporting selected 404 URLs. It does not block the request and is not a general-purpose log filter.
Yes, after you explicitly enable 404 capture and define real-route prefixes for the project. FetchNode can then keep recognizable scanner paths out of the issue queue while preserving customer-facing candidates. See how that fits into broader Django monitoring.
Connect a website, verify a production event and configure 404 capture only when it supports your monitoring workflow.
Choose whether to allow analytics
FetchNode uses optional analytics storage for pageviews and product journeys. Operational error monitoring remains separate. Read the privacy policy.