Skip to content

Instantly share code, notes, and snippets.

View lbr77's full-sized avatar
💭
Looking for jobs

Borui Li lbr77

💭
Looking for jobs
View GitHub Profile
@lbr77
lbr77 / README.md
Created November 18, 2024 07:44
Martingale Strategy on OKX api

A simple martingale strategy for okx market

@lbr77
lbr77 / main.py
Last active October 25, 2024 02:29
A script for decoding Wallpaper Engine scene.pkg file.
#!/bin/python3
# From https://wetranslate.thiscould.work/scene.pkg/ and
# Exactly from https://github.com/redpfire/we
import io
import zipfile
class File:
def __init__(self,content:bytes):
self.content = content
@lbr77
lbr77 / crack.py
Created August 10, 2024 10:40
Cracker for a specific software.
import json
import hashlib
import os
license = {
"header": {"version": 1},
"payload": {
"name": "meow :3",
"email": "[email protected]",
"licenses": [
@lbr77
lbr77 / Arknights.log
Last active July 11, 2024 02:38
crash logs
-------------------------------------
Translated Report (Full Report Below)
-------------------------------------
Process: arknights [48031]
Path: /Users/USER/*/明日方舟.app/arknights
Identifier: com.hypergryph.arknights
Version: 2.2.81 (123)
Code Type: ARM-64 (Native)
Parent Process: launchd [1]
@lbr77
lbr77 / README.md
Created April 28, 2024 13:39
SpirigGame App1e_Tree's Big Duck Writeup

出题碎碎念

嗯...题面没有骗人。

首先就是确实那天App1e_Tree打穿了全场。

然后空虚和寂寞嘛...这个大家可以去问问他(?。

确实也是在天津街头闲逛的时候拍到的东西。

@lbr77
lbr77 / README.md
Last active April 28, 2024 13:43
SpiritGame sqlshark writeup exp and server.

出题碎碎念:

想法来自群友的调侃:那是不是搞一个sqlmap risk3 level5然后抓包就能出题了?

嗯于是这道题出题时候的参数就是:python sqlmap.py -u "http://localhost:8080/login?usr=LiBr&pwd=11d188aa7daf1c0ef4744d33888fd0da" --risk 3 --level 5 --thread 8 --dump -T table

出题人wp:

导出所有有用包之用python处理可以看到有效信息:

@lbr77
lbr77 / README.md
Last active April 27, 2024 04:39
Enjoy the Game!

想必做到这一步的你应该看得出来504b是什么东西了吧?

有没有想起comment里说的密码是什么?

@lbr77
lbr77 / config1.json
Created March 18, 2024 06:39
DubheCTF authorized mess & unauthorized less v2ray config
{
"log": {
"loglevel":"debug"
},
"inbounds": [
{
"protocol": "dokodemo-door",
"port": 50005,
"settings": {
"address": "172.20.0.2",
@lbr77
lbr77 / README.md
Last active February 17, 2024 16:25
HashExtensionExploit
@lbr77
lbr77 / solve.py
Last active December 31, 2023 14:11
Game
import base64 as b64
def bintotext(ress, count=7):
res = ""
for i in range(0, len(ress), count):
res += chr(int(ress[i : i + count], 2))
return res