15:35:27.149
404 GET
/wp-login.php
49ms 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) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.6045.159 Safari/537.36
ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7
ACCEPT-ENCODING gzip, deflate, br
ACCEPT-LANGUAGE fr-FR,fr;q=0.9,en;q=0.8
SEC-CH-UA "Not_A Brand";v="8", "Chromium";v="119", "Google Chrome";v="119"
SEC-CH-UA-MOBILE ?0
SEC-CH-UA-PLATFORM "Linux"
SEC-FETCH-DEST document
SEC-FETCH-MODE navigate
SEC-FETCH-SITE none
SEC-FETCH-USER ?1
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-login.php
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-login.php')