Skip to content

Instantly share code, notes, and snippets.

View aimardcr's full-sized avatar

Aimar Sechan Adhitya aimardcr

View GitHub Profile
@aimardcr
aimardcr / README.md
Created September 28, 2024 21:02
MLBB API Docs

API Documentation

Base URL

https://mlbb-api.aimar.id/v1

Authentication

All endpoints except /health-check require API key authentication. Include the API key in the Authorization header of your request.

API Keys

There are two types of API keys available:

@aimardcr
aimardcr / dump_2nd_bind.py
Created July 30, 2023 16:03
Gemastik 2023 - FCaaS (Rev)
def rc4(key, data):
S = list(range(256))
j = 0
for i in range(256):
j = (j + S[i] + key[i % len(key)]) % 256
S[i], S[j] = S[j], S[i]
i = j = 0
result = []