Skip to content

Instantly share code, notes, and snippets.

View Raz-js's full-sized avatar
🌴
On vacation

Raz Raz-js

🌴
On vacation
  • works alone
  • home
View GitHub Profile
@Raz-js
Raz-js / Whatsapp-Spammer.js
Last active February 19, 2024 11:58
HTML/JS Whatsapp Spammer By Raz (Console Command)
/*
Whatsapp Spammer
By Raz
(Paste In Console To Run)
For "web.whatsapp.com"
*/
//Custom-Error
if (window.location.href.search("web.whatsapp.com") == -1) {
throw new Error("You ain't in whatsapp bro, if this isn't correct go to our support server! discord.gg/f83SxgJdAb");
@Raz-js
Raz-js / Spotify-Toolkit.js
Last active June 9, 2023 21:20
Change the theme of spotify and mute ads to enjoy listening without noise-pollution
/*
Spotify Toolkit
By Raz
(Paste In Console To Run)
For "spotify.com"
*/
@Raz-js
Raz-js / Discord-Tools.md
Last active February 5, 2024 11:14
A list of Discord Tools
@Raz-js
Raz-js / Discord-CSP-Bypass.js
Last active June 27, 2022 11:13
Csp Bypass for Discord Scripting
document.body.appendChild(Object.assign(document.createElement("script"), {
src: "https://github.com/script.js",
nonce: document.querySelector("[nonce]").nonce,
onerror: console.error
}))
@Raz-js
Raz-js / Chrome-Dino.md
Created June 22, 2022 19:50
Link : 'chrome://dino' (Some Cheat For It)

/* I did not make all these scripts. */

Hack Google Chrome and Make your Dinosaur Immortal

The game can be hacked pretty easily, making your dinosaur not even flinch at the sight of a cactus.

@Raz-js
Raz-js / HTML-Discord-Webhook-Spammer.html
Created June 23, 2022 16:25
Discord Webhook Spammer Written in HTML (Configurable)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webhook Spammer (DSC)</title>
</head>
<body>
<br class="webpropss">Webhook Spammer By Raz</br>
<input id="kk" value="Webhook URL"></input>
@Raz-js
Raz-js / Discord-Toolkit-V1.js
Last active November 9, 2022 09:09
Obfusticated Version Of Discord Toolkit (V1) [Outdated]
const _0x375d62=_0x5ca6;(function(_0x55b3c8,_0x2bf2a9){const _0x580383=_0x5ca6,_0x1b7b81=_0x55b3c8();while(!![]){try{const _0x16555c=-parseInt(_0x580383(0x21f))/0x1+-parseInt(_0x580383(0x1e5))/0x2+parseInt(_0x580383(0x1eb))/0x3+parseInt(_0x580383(0x1ef))/0x4*(parseInt(_0x580383(0x235))/0x5)+-parseInt(_0x580383(0x1dd))/0x6+parseInt(_0x580383(0x20b))/0x7+-parseInt(_0x580383(0x23d))/0x8*(parseInt(_0x580383(0x23b))/0x9);if(_0x16555c===_0x2bf2a9)break;else _0x1b7b81['push'](_0x1b7b81['shift']());}catch(_0x5bf69a){_0x1b7b81['push'](_0x1b7b81['shift']());}}}(_0x457e,0x951a8));const _0x33a95e=_0x498b;function _0x457e(){const _0x1e2ea1=['unshift','35eKRkUv','\x0a<button\x20class=\x22button-12Fmur\x20enabled-9OeuTA\x20button-f2h6uQ\x20lookBlank-21BCro\x20colorBrand-I6CyqQ\x20grow-2sR_-F\x22><div\x20class=\x22contents-3ca1mk\x22><svg\x20fill=\x22#00FFFF\x22\x20xmlns=\x22http://www.w3.org/2000/svg\x22\x20\x20viewBox=\x220\x200\x2024\x2024\x22\x20width=\x2224px\x22\x20height=\x2224px\x22><path\x20d=\x22M14,11.02c-0.52,0-0
@Raz-js
Raz-js / Discord-Bot-Invite-Grabber.html
Created June 23, 2022 16:30
Grab Discord Bot's Invites using just their id
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta name="description" content="A small calculator that generates Discord OAuth invite links"> <meta name="author" content="abalabahaha"> <meta name="keywords" content="Discord, bot, permissions, api"> <link rel="icon" type="image/ico" href="https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/RedDot.svg/1200px-RedDot.svg.png" /> <title>Get Any Bot's Invite Link!</title> <style>@font-face{font-family:Roboto;font-weight:400;font-style:normal;src:local("Roboto"),local("Roboto-Regular"),url(font/roboto-v16-latin-regular.woff2) format("woff2"),url(font/roboto-v16-latin-regular.woff) format("woff")}body,html{height:100%;width:100%;margin:0;outline:0;padding:0;font-family:Roboto,sans-serif;font-size:16px}body{background-color:#2c2f33;color:#ddd}h3{color:#fff;font-weight:400}a.disabled{color:#999;cursor:not-allowed}a{color:#fff}.light{backgrou
@Raz-js
Raz-js / Basic_Devtools_Scripts.md
Last active August 14, 2023 18:53
Basic Scripts to make your life easier

Fetch code from a source/cdn link

fetch("URL").then((res) => res.text().then((t) => eval(t)))

Timed Debugger

setTimeout(function(){debugger;},3000);