15:35:30.752
404 GET
/wp-admin/
191ms overall
0ms on queries
0 queries
Request Headers
X-FORWARDED-FOR 94.26.106.205
X-FORWARDED-PROTO https
HOST x01-backend.mobischool.mw
CONNECTION close
USER-AGENT Mozilla/5.0 (X11; Linux x86_64) Gecko/20100101 Firefox/121.0
ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8
ACCEPT-ENCODING gzip, deflate, br
ACCEPT-LANGUAGE de-DE,de;q=0.9,en;q=0.8
CACHE-CONTROL max-age=0
UPGRADE-INSECURE-REQUESTS 1
Response Headers
CONTENT-TYPE text/html; charset=utf-8
Raw Response Body
b'\n<!doctype html>\n<html lang="en">\n<head>\n  <title>Not Found</title>\n</head>\n<body>\n  <h1>Not Found</h1><p>The requested resource was not found on this server.</p>\n</body>\n</html>\n'
Curl
Curl is a command-line utility for transferring data from servers. Paste the following into a terminal to repeat this request via command line.
curl -X GET   https://x01-backend.mobischool.mw/wp-admin/
Django Test Client
The following is working python code that makes use of the Django test client. It can be used to replicate this request from within a Django unit test, or simply as standalone Python.
from django.test import Client
c = Client()
response = c.get(path='/wp-admin/')