Note: Please use at your own risk. Doing this may lead to a temporary or permanent ban from discord.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Linux x86_64 | |
; compile -> nasm -felf64 main.asm -o main.o | |
; link -> ld main.o -o main | |
; Syscalls NR numbers ;unistd_64.h | |
%define SYS_READ 0 | |
%define SYS_WRITE 1 | |
%define SYS_EXIT 60 | |
%define STDIN 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name discord bypass nsfw | |
// @namespace Violentmonkey Scripts | |
// @match https://discord.com/* | |
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@1 | |
// @grant none | |
// @version 1.0.0 | |
// @author chirag-droid<[email protected]> | |
// @description 3/20/2022, 4:02:41 AM | |
// @run-at document-start |