Skip to content

Instantly share code, notes, and snippets.

View XielQs's full-sized avatar
🔥
Let him cook

XielQ XielQs

🔥
Let him cook
View GitHub Profile
@XielQs
XielQs / simple_web_server.asm
Last active July 6, 2025 20:55
Simple web server written in assembly x86_64
section .bss
buff resb 1024
section .data
http200:
db "HTTP/1.1 200 OK", 0dh, 0ah ; \r\n
db "Server: XielQ", 0dh, 0ah
db "Content-Type: text/html", 0dh, 0ah
db 0dh, 0ah
@XielQs
XielQs / Get_Discord_Token.md
Last active June 28, 2025 12:30
Get self discord token using console

How to get your discord token using browser console

  1. Open developer tools in browser (if you using desktop app use Ctrl+Shift+I shortcut)
  2. Switch current tab to Console
  3. Write this code and press enter
// old, not working anymore
(webpackChunkdiscord_app.push([[''],{},e=>{m=[];for(let c in e.c)m.push(e.c[c])}]),m).find(m=>m?.exports?.default?.getToken!==void 0).exports.default.getToken()