HTML4STRICT 48
New By gknux on 18th October 2024 12:35:24 AM
  1.   <head>
  2.     <style>
  3.  
  4.     body {
  5.       background-color: black;
  6.       background-image: radial-gradient(rgba(0, 0, 150, 0.75), black 120%);
  7.  
  8.       background-repeat: no-repeat;
  9.       background-attachment: fixed;
  10.       background-position: center;
  11.  
  12.       height: 100vh;
  13.       margin: 0;
  14.       padding: 2rem;
  15.       color: white;
  16.       font: 1.3rem VT323, monospace;
  17.       font-weight: 400;
  18.       font-style: normal;
  19.       text-shadow: 0 0 5px #C8C8C8;
  20.     }
  21.  
  22.     body::after {
  23.       content: "";
  24.       position: absolute;
  25.       top: 0;
  26.       left: 0;
  27.       width: 100vw;
  28.       height: 100vh;
  29.       background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px);
  30.       pointer-events: none;
  31.     }
  32.  
  33.     ::selection {
  34.       background: #0080FF;
  35.         text-shadow: none;
  36.     }
  37.  
  38.     pre {
  39.       margin: 0;
  40.     }
  41.  
  42.     </style>
  43.  
  44.     <title>Info</title>
  45.  
  46.     <link rel="preconnect" href="https://fonts.googleapis.com">
  47.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  48.     <link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
  49.   </head>
  50.   <body>
  51.  
  52. <?php
  53.  
  54. $iter = array(
  55.    "USER,User","HOME,Home",
  56.    "HTTP_X_REAL_IP,X-Real-Ip","HTTP_X_FORWARDED_SERVER,X-Forwarded-Server",
  57.    "HTTP_X_FORWARDED_PROTO,X-Forwarded-Protocol",
  58.    "HTTP_X_FORWARDED_PORT,X-Forwarded-Port",
  59.    "HTTP_X_FORWARDED_HOST,X-Forwarded-Host",
  60.    "HTTP_X_FORWARDED_FOR,X-Forwarded-For",
  61.    "HTTP_UPGRADE_INSECURE_REQUESTS,Upgrade-Insecure-Requests",
  62.    "HTTP_SEC_FETCH_USER,Sec-Fetch-User","HTTP_SEC_FETCH_SITE,Sec-Fetch-Site",
  63.    "HTTP_SEC_FETCH_MODE,Sec-Fetch-Mode",
  64.    "HTTP_SEC_FETCH_DEST,Sec-Fetch-Destination",
  65.    "HTTP_DNT,DNT","HTTP_COOKIE,Cookie",
  66.    "HTTP_SEC_CH_UA_PLATFORM,Sec-Ch-Ua-Platform",
  67.    "HTTP_SEC_CH_UA_MOBILE,Sec-Ch-Ua-Mobile","HTTP_SEC_CH_UA,Sec-Ch-Ua",
  68.    "HTTP_ACCEPT_LANGUAGE,HTTP-Accept-Language",
  69.    "HTTP_ACCEPT_ENCODING,HTTP-Accept-Encoding",
  70.    "HTTP_ACCEPT,HTTP-Accept","HTTP_USER_AGENT,HTTP-User-Agent",
  71.    "HTTP_HOST,HTTP-Host","SCRIPT_FILENAME,Script-Filename",
  72.    "PATH_INFO,Path-Info","REDIRECT_STATUS,Redirect-Status",
  73.    "SERVER_NAME,Server-Name","SERVER_PORT,Server-Port",
  74.    "SERVER_ADDR,Server-Address",
  75.    "REMOTE_PORT,Remote-Port","REMOTE_ADDR,Remote-Address",
  76.    "SERVER_SOFTWARE,Server-Software","GATEWAY_INTERFACE,Gateway-Interface",
  77.    "REQUEST_SCHEME,Request-Scheme","SERVER_PROTOCOL,Server-Protocol",
  78.    "DOCUMENT_ROOT,Document-Root","DOCUMENT_URI,Document-URI",
  79.    "REQUEST_URI,Request-URI",
  80.    "SCRIPT_NAME,Script-Name","CONTENT_LENGTH,Content-Length",
  81.    "CONTENT_TYPE,Content-Type","REQUEST_METHOD,Request-Method",
  82.    "QUERY_STRING,Query-String","FCGI_ROLE,FCGI-Role","PHP_SELF,PHP-Self",
  83.    "REQUEST_TIME_FLOAT,Request-Time-Float","REQUEST_TIME,Request-Time"
  84. );
  85.  
  86. foreach ($iter as &$value) {
  87.    [$front,$rear] = preg_split('/,/', $value);
  88.    $out_form = getenv($front);
  89.    printf("%-26s: %-10s\n", $rear , $out_form);
  90.    ##echo ("$out_form");
  91.    echo nl2br ("\n");
  92. }
  93. unset($value);
  94.  
  95. ?>
  96.  
  97.     </body>
  98.     </html>

ifconfig paste is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.