I hereby claim:
- I am hackersoup on github.
- I am hackersoup (https://keybase.io/hackersoup) on keybase.
- I have a public key ASAE8lKyoUhujjQDuNdokQy1mblukyy3C-JAy_P_1Nizcgo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
try: | |
import geoip2.database | |
except ImportError: | |
print('[!] Could not find "geoip2" library') | |
print('[!] Try running the following command to install it:') | |
print('python3 -m pip install geoip2') | |
exit(-1) | |
try: |
I hereby claim:
To claim this, I am signing this object:
;; Hardware IDs | |
HWID_LEGS equ 0x1 | |
HWID_LASER equ 0x2 | |
HWID_LIDAR equ 0x3 | |
HWID_KEYBOARD equ 0x4 | |
HWID_DRILL equ 0x5 | |
HWID_INV equ 0x6 | |
HWID_RNG equ 0x7 | |
HWID_CLOCK equ 0x8 | |
HWID_HOLO equ 0x9 |
/** | |
* getCampusFeedUid | |
* Replicates the UID generation algorithm for CampusFeed | |
* Run this function on the phone of a CampusFeed user to get the information needed to | |
* take over their account. | |
* Use the returned string in a Firebase Auth call as such: | |
* createUserWithEmailAndPassword(getCampusFeedUid() + "@user.com", getCampusFeedUid()); | |
* | |
* Requires: | |
* android.provider.Settings.Secure |
class Log: | |
WARNING = '[-]' | |
ERROR = '[!]' | |
INFO = '[*]' | |
GOOD = '[+]' | |
class Color: | |
# Regular colors | |
BLACK = '\033[30m' | |
RED = '\033[31m' |