1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
-- 查看打印现有的CGI环境变量
begin
owa_util.print_cgi_env();
end;
/************************************************************************
REMOTE_IDENT =
REMOTE_USER = APEX_PUBLIC_USER
host = xxxxxxxxxxxx.com
x-forwarded-proto = https
x-real-ip = 10.31.122.140
x-real-port = 54750
x-forwarded-server = xxxxxxxxxxxx.com
x-forwarded-host = xxxxxxxxxxxx.com
connection = close
sec-ch-ua = "Google Chrome";v="129", "Not=A?Brand";v="8", "Chromium";v="129"
sec-ch-ua-mobile = ?0
sec-ch-ua-platform = "macOS"
upgrade-insecure-requests = 1
user-agent = Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 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
sec-fetch-site = same-origin
sec-fetch-mode = navigate
sec-fetch-user = ?1
sec-fetch-dest = document
referer = https://xxxxxxxxxxxx/dev/f?p=666:87:15878194837194::NO:::
accept-encoding = gzip, deflate, br, zstd
accept-language = zh-CN,zh;q=0.9
priority = u=0, i
cookie = ORA_WWV_REMEMBER_LANG=zh-cn
APEX_LISTENER_VERSION = 19.4.0.r3521226
DAD_NAME =
DOC_ACCESS_PATH =
DOCUMENT_TABLE =
GATEWAY_IVERSION = 3
GATEWAY_INTERFACE = CGI/1.1
HTTP_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
HTTP_ACCEPT_ENCODING = gzip, deflate, br, zstd
HTTP_ACCEPT_LANGUAGE = zh-CN,zh;q=0.9
HTTP_ACCEPT_CHARSET =
HTTP_IF_MODIFIED_SINCE =
HTTP_IF_NONE_MATCH =
HTTP_HOST = xxxxxxxxxxxx.com
HTTP_ORACLE_ECID =
HTTP_PORT = 443
HTTP_REFERER = https://xxxxxxxxxxxx/dev/f?p=666:87:15878194837194::NO:::
HTTP_USER_AGENT = Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36
PATH_ALIAS =
PATH_INFO = /f
PLSQL_GATEWAY = WebDb
QUERY_STRING = p=666:5:15878194837194::NO:::
REMOTE_ADDR = xx.xx.xx.xx
REQUEST_CHARSET = AL32UTF8
REQUEST_IANA_CHARSET = UTF-8
REQUEST_METHOD = GET
REQUEST_PROTOCOL = https
REQUEST_SCHEME = https
SCRIPT_NAME = /xxx/dev
SCRIPT_PREFIX =
SERVER_NAME = xxxxxxxxxxxx.com
SERVER_PORT = 443
SERVER_PROTOCOL = HTTP/1.0
SERVER_SOFTWARE = Mod-Apex
WEB_AUTHENT_PREFIX =
HTTP_COOKIE = ORA_WWV_REMEMBER_LANG=zh-cn
************************************************************************/
|