- The bot will first go to the url
dashboard.789.vn
. - Then will log in to the account that I have prepared.
- Next, after logging in, the bot will go to the url
dashboard.789.vn/account
and then change the localStorage (change the id to a certain number). - Then refresh the page, you will see the user of that id.
- The bot will automatically change the name, phone number and address to hacked (You can change the password, but the probability is very low).
- I found this bug myself during an internet walk.
This file contains hidden or 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
#pragma once | |
#include <math.h> | |
class Vector3f { | |
public: | |
float x = 0.0f, | |
y = 0.0f, | |
z = 0.0f; |
This file contains hidden or 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
#include <GL/glut.h> | |
#include <math.h> | |
#include <iostream> | |
const float ambient_color[] = {0.0, 0.0, 0.0, 0.0}; | |
const float light_diffuse_0[] = {0.0, 0.5, 0.5, 1.0}; | |
const float light_position_0[] = {0.0, 0.0, 5.0, 1.0}; | |
unsigned angle = 0; | |
unsigned coordinate_list; |
This file contains hidden or 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
#pragma GCC target("avx2") | |
#pragma GCC optimize("Ofast") | |
#include <iostream> | |
#include <bitset> | |
#include <utility> | |
#include <ciso646> | |
template<typename T> constexpr std::size_t get_max_bits() { return sizeof(T) * 8; } | |
template<typename T, std::size_t MAX_BITS = get_max_bits<T>()> |
This file contains hidden or 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
package main | |
import ( | |
"os" | |
"fmt" | |
"time" | |
"net/http" | |
"io/ioutil" | |
"encoding/json" | |
) |
This file contains hidden or 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
section .data | |
str: DB "We are Vietnamese" | |
strlen: DB 0x0 | |
str_length equ $-str | |
section .text | |
global _start | |
_start: | |
mov [strlen], DWORD str_length |
This file contains hidden or 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
function NameToAvatar(name, backgroundColor, fontColor) | |
{ | |
this.name = name.split(' '); | |
this.backgroundColor = backgroundColor || this.generatorColor(); | |
this.fontColor = fontColor || "white"; | |
this.init(); | |
} | |
NameToAvatar.prototype.init = function() | |
{ |
This file contains hidden or 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
; nasm -f elf32 dec2bin.asm | |
; gcc -m32 -o dec2bin dec2bin.asm | |
extern printf | |
extern scanf | |
global main | |
section .data | |
number times 4 dd 0x0 | |
length times 4 dd 0x0 |
This file contains hidden or 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 Raid Forums | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Redesigned raidforums.com page as nice as discord, using javascript | |
// @author SilverbossTD | |
// @match https://raidforums.com/ | |
// @icon https://www.google.com/s2/favicons?domain=raidforums.com | |
// @grant none | |
// ==/UserScript== |