hsrbcmp.com Open in urlscan Pro
183.111.199.190  Public Scan

URL: https://hsrbcmp.com/
Submission: On January 22 via api from US — Scanned from US

Form analysis 1 forms found in the DOM

POST login.php

<form method="post" action="login.php" id="login-form">
  <h1>(주)혜성고무</h1>
  <div>
    <input type="text" placeholder="Username" name="id" id="username" required="">
  </div>
  <div>
    <input type="password" placeholder="Password" name="pw" id="password" required="">
    <input type="hidden" name="hashed_pw" id="hashed_pw">
  </div>
  <div>
    <input type="submit" value="Log in" onclick="hashPasswordAndSubmit()">
  </div>
  <script>
    function hashPasswordAndSubmit() {
      console.log('hashPasswordAndSubmit 함수 실행됨');
      const password = document.getElementById('password').value;
      const shaObj = new jsSHA('SHA-256', 'TEXT');
      shaObj.update(password);
      const hashedPassword = shaObj.getHash('HEX');
      document.getElementById('hashed_pw').value = hashedPassword;
      document.getElementById('login-form').submit(); // 폼 전송
    }
    document.getElementById('login-form').addEventListener('submit', hashPasswordAndSubmit);
  </script>
</form>

Text Content

(주)혜성고무