Skip to content

Instantly share code, notes, and snippets.

View blackphreak's full-sized avatar
😴
I'm a script kiddie, don't worry

William Lam blackphreak

😴
I'm a script kiddie, don't worry
View GitHub Profile
@blackphreak
blackphreak / pkt_dump.py
Created April 29, 2020 15:19
Destiny Online Auto Decrypt Json Dump - v1
#! /bin/python3
import argparse
import struct
from binascii import hexlify, unhexlify
from base64 import b64encode, b64decode
import copy
import re
import glob
import os
@blackphreak
blackphreak / s0urce.io-BOT.js
Last active July 3, 2019 05:01
a s0urce.io bot (last working: 2019-07-03 - 1101) (just for fun, hv bug)
var submitInterval = 300;
var setting = {
port : -1,
id : undefined,
num : -1,
rndMin : 1,
rndMax : 19,
rushToTop: false,
becomeRich: false,
@blackphreak
blackphreak / Python - Test ColoredOutput
Last active July 8, 2018 11:15
a python program that for testing ColoredOutput
#!/usr/bin/python
from cout import cout
from time import sleep
def testOut(i, lv):
cout.log(lv, "Testing :D " + str(i))
if __name__ == '__main__':
arr = [cout.INFO, cout.WARN, cout.CRIT, cout.ERR, cout.NOR]
name = ["INFO", "WARN", "CRIT", "ERR_", "TEST"]
@blackphreak
blackphreak / Python - ColoredOutput
Last active July 8, 2018 11:15
My first python program, just for fun :o
#!/usr/bin/python
# Colored OUTput
class cout:
import sys
from time import sleep
'''
LOG_LEVEL: defines what logs will be output-ed (works with binary)
(0xF) 15: ALL ([DEFAULT]. output all logs)
@blackphreak
blackphreak / s0urce.io_script
Created June 30, 2017 17:12
[jq] s0urce.io cheating script - work before 2017-07-01 [v2]
var map = {};
function get(k) {
return map[k];
}
//ez
map["easy/i2i542"] = "reset";
map["easy/32jrh32r"] = "join";
map["easy/gf43t"] = "send";
@blackphreak
blackphreak / s0urce.io_script
Last active July 1, 2017 16:00
[jq] s0urce.io cheating script - work before 2017-07-01
var map = {};
function get(k) {
return map[k];
}
//ez
map["easy/i2i542"] = "reset";
map["easy/32jrh32r"] = "join";
map["easy/gf43t"] = "send";
@blackphreak
blackphreak / AsyncWorldEdit_MapBuilder.java
Last active June 26, 2017 09:39
AsyncWorldEdit Schematic Load & Place
/**
* this file protected byy MIT License
* this file is a modified version for public use.
* the original file: https://github.com/blackphreak/DynamicDungeon/blob/master/src/me/blackphreak/dynamicdungeon/MapBuilding/Builder.java
* feel free to use it :)
*
* I make this because I can't find much async schematic placing code.
* I take a while to find it out how to do it.
* Hope this can help you to make a wonderful plugin :)
*