Skip to content

Instantly share code, notes, and snippets.

View ALiwoto's full-sized avatar
🚩
Trying to experience new things

ALi.w ALiwoto

🚩
Trying to experience new things
  • Earth. under the blue sky
View GitHub Profile
@ALiwoto
ALiwoto / pixiv_login.py
Created December 25, 2023 20:19
Pixiv login refresh token and access token
#!/usr/bin/env python
from argparse import ArgumentParser
from base64 import urlsafe_b64encode
from hashlib import sha256
from pprint import pprint
from secrets import token_urlsafe
from sys import exit
from urllib.parse import urlencode
from webbrowser import open as open_url
@ALiwoto
ALiwoto / CVE-2025-48827.md
Last active May 30, 2025 06:24
CVE-2025-48827: vBulletin (replaceAdTemplate) Remote Code Execution Vulnerability. EDUCATIONAL PURPOSE ONLY.

CVE-2025-48827

vBulletin (replaceAdTemplate) Remote Code Execution Vulnerability.

EDUCATIONAL PURPOSE ONLY.

Taken from here

The original code was written in PHP, had to use Gemini 2.2 to convert it to PowerShell. Please check for any errors.

@ALiwoto
ALiwoto / CWE-424.go
Created May 30, 2025 06:30
An example of CWE-424.
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"strings"
)