Skip to content

Instantly share code, notes, and snippets.

View ronieremarques's full-sized avatar
🦠
you have been hacked!

ronieremarques ronieremarques

🦠
you have been hacked!
View GitHub Profile
{
"HTTP":{
"PORT":{
"Equatorial-Guinea":{
"8080":"102.164.252.150"
},
"China":{
"8080":"117.144.175.195"
},
"China_2":{
@ronieremarques
ronieremarques / discord-token.js
Last active April 7, 2024 04:23
This code takes the token from your discord account and copies it to the clipboard on your device!
function copyToClipboard(text) {
var textarea = document.createElement("textarea");
textarea.value = text;
document.body.appendChild(textarea);
textarea.select();
document.execCommand("copy");
document.body.removeChild(textarea);
alert('Copied successfully!')
}