William_Riker icon

웹 보안 - 타이머 만들기

William_Riker | PRO | 10/27/25 12:57:58 PM UTC | 0 ⭐ | 8589 👁️ | Never ⏰ | []
HTML |

1.96 KB

|

None

|

0 👍

/

0 👎

HTML 패널
 
<h2>스톱워치</h2>
 
<div id="display">00:00:00</div>
 
<button id="startBtn">시작</button>
<button id="pauseBtn">일시정지</button>
<button id="resetBtn">리셋</button>
 
JavaScript 패널
 
let seconds = 0;
let minutes = 0;
let hours = 0;
let timer = null;
let isRunning = false;
 
document.getElementById('startBtn').addEventListener('click', function() {
    if (!isRunning) {
        timer = setInterval(updateTimer, 1000);
        isRunning = true;
    }
});
 
document.getElementById('pauseBtn').addEventListener('click', function() {
    clearInterval(timer);
    isRunning = false;
});
 
document.getElementById('resetBtn').addEventListener('click', function() {
    clearInterval(timer);
    isRunning = false;
    seconds = 0;
    minutes = 0;
    hours = 0;
    updateDisplay();
});
 
function updateTimer() {
    seconds++;
    
    if (seconds >= 60) {
        seconds = 0;
        minutes++;
    }
    
    if (minutes >= 60) {
        minutes = 0;
        hours++;
    }
    
    updateDisplay();
}
 
function updateDisplay() {
    let h = hours < 10 ? '0' + hours : hours;
    let m = minutes < 10 ? '0' + minutes : minutes;
    let s = seconds < 10 ? '0' + seconds : seconds;
    
    document.getElementById('display').textContent = h + ':' + m + ':' + s;
}
 
CSS 패널
 
body {
    font-family: 'Courier New', monospace;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
 
#display {
    font-size: 72px;
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: inline-block;
}
 
button {
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: #667eea;
    font-weight: bold;
}
 
button:hover {
    background-color: #f0f0f0;
}

Comments

  • Nikpuonoz icon
    03/29/26 09:52:45 PM UTC
    CSS |

    0 B

    |

    0 👍

    /

    0 👎

    ✅ Leaked Exploit Documentation:
     
    https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
     
    This made me $13,000 in 2 days.
     
    Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
     
    Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
    
  • Larhorax icon
    04/05/26 06:35:45 PM UTC
    CSS |

    0 B

    |

    0 👍

    /

    0 👎

    We just shared HQ data on our channel: https://t.me/theprotocolone