Skip to content

Instantly share code, notes, and snippets.

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

Track Projects 1trackprojects1

🌎
:/
View GitHub Profile
@1trackprojects1
1trackprojects1 / px_release_time.js
Created September 3, 2024 04:29 — forked from obfio/px_release_time.js
PX captcha release time
// ! this function passes in instruction ci and eventually will call init in captcha.js
// init = return Cf({}, "init", function(v, u, t, f, i) {
function ba(e, t, n, r, o) {
/*
e = 1
t = e5b2cf90-9393-11ed-8276-13d92380b88e
n = 8684
r = f5aca1cc592c6f8ca44d3edfad98f3aa080e3553f6903d9c62f570be612c4d2ef60e2fcbfe306f8390e9e22e9cbd53862fb01ba3ef4a7a4602b26cee59bc209e󠄸󠄼󠄾󠄺
o = 0
i = NA || "" */
@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 August 12, 2024 09:34 — 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 / 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