⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.96
Server IP:
147.93.97.220
Server:
Linux srv843233 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
uwsgi-core
/
tests
/
View File Name :
testpy3.py
import uwsgi def app1(e, sr): print(e) sr('200 Ok', [('Content-Type','text/plain')]) return b'i Am a Python 3.x bytestring' def app2(e, sr): print(e) sr('404 Not Found', [('Content-Type','text/plain')]) return b'i Am a Python 3.x Not Found page' uwsgi.applications = {b'': app1, b'/test': app2}