https://passwordpassword.online/

Submitted URL:
https://passwordpassword.online/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 7 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetogglestring
documentPictureInPicturestring
onscrollendstring
iostring
enterstring
soundSwitchstring
musicstring

Console log messages · 1 found

Messages logged to the web console

TypeCategoryLog
verbosedom
URL
https://passwordpassword.online/
Text
[DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
		<title id="title">d2Vic2l0ZQ==</title>
		<link rel="icon" type="image/x-icon" href="../favicon.png">
        <script src="https://cdn.socket.io/4.5.3/socket.io.min.js" integrity="sha384-WPFUvHkB1aHA5TDSZi6xtDgkF0wXJcIIxXhC6h8OT8EH3fC5PWro5pWJ1THjcfEi" crossorigin="anonymous"></script>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="darkreader-lock">
        
        <style>
            html{
                scrollbar-width: thin;
				scrollbar-color: var(--mgray) var(--mblack);
                cursor: url("../cursors/curs.png"), default;
                min-height: 100%;
            }
            :root{
                --mblack: #0d0d14;
                --mgray: #52263e;
                --mwhite: #ac3232;
            }
            ::selection{
				color: #0d0d14;
				background: #ac3232;
			}
            p{
                margin-top: 0px;
                margin-bottom: 0px;
                margin-right: 0.5em;
            }
            div{
                justify-content: center;
                margin-top: 0px;
                margin-bottom: 0px;
            }
            body{
                background-color: var(--mblack);
                font-family: 'Courier New', Courier, monospace;
                font-size: 20px;
                color: var(--mwhite)
            }
            #background{
                width: 550px;
                height: 260px;
                margin-bottom: 3%;
                object-fit: cover;
                object-position: 100% 0%;
                visibility: hidden;
            }  
            input{
                cursor: url("../cursors/curstext.png") 6 11, default;
                margin-top: 10px;
                margin-bottom: 20px;
                font-size: 20px;
                font-family: 'Courier New', Courier, monospace;
                background-color: transparent;
                outline: 0;
                border-color: #ac3232;
                border-style:solid;
                color: var(--mwhite);
            }
            .lp{
                max-width: min-content;
                display: flex;
                flex-direction: column;
            }
            .inp{
                display: flex;
                flex-direction: center; 
            }
            .blp{
                align-items: center;
                margin-top:50px;
                display: flex;
                flex-direction: column;
            }
            #soundIcon{
                height: 64px;
                width: 64px;
                margin: 0px;
            }
            #switch{
                position: fixed;
                max-width: min-content;
                right: 0px;
                bottom: 0px;
                margin: 1%;
            }
            @media only screen and (orientation:portrait) and (max-width: 450px) {
                html{
                    margin: 1%;
                }
            } 
            @media only screen and (orientation:landscape) and (max-width: 896px) {
                html{
                    margin: 1%;
                }
                input{
                    font-size: 80%;
                }
            } 
        </style>

        <title>Document</title>

    </head>
  <body>
    <audio id="music" src="audio/password_password.mp3" loop="" muted=""></audio>
    <div class="blp">
      <img id="background" alt="" onload="style.visibility = &quot;visible&quot;" src="/bgr/60.png" style="visibility: visible;">
      <div class="lp">
        password:
        <input id="password" autofocus="" type="password" onkeydown="enter(this)">
      </div>
    </div>
    <div onclick="soundSwitch()" id="switch">
        <img id="soundIcon" src="/Mute_Icon.png">
    </div>
    <script>
        music = document.getElementById('music')
        music.volume = 0.21;
        let password = document.getElementById('password');

        const socket = io();

        socket.on('authed', function() {
            window.location.href = '/term';
        });

        function enter(inp) {
			if (event.keyCode == 13) {
				socket.emit('login', password.value);
                password.value = '';
			}
		}

        function soundSwitch(){
            music.muted = !music.muted
            if (music.muted) {music.pause()} else {music.play()}
            document.getElementById('soundIcon').src = music.muted ? '/Mute_Icon.png' : '/Speaker_Icon.png'
        }

        socket.on('bgrlist', function(bgr){
            document.getElementById('background').src = "/bgr/" + bgr
        })
    </script>
  
</body></html>