All Projects → RuneStar → cache-names

RuneStar / cache-names

Licence: MIT License
Cracked Old School RuneScape cache file names

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to cache-names

Runelite
Open source Old School RuneScape client
Stars: ✭ 3,501 (+13904%)
Mutual labels:  runescape, osrs, oldschool-runescape
OSRS-AHKScripts
Color bot scripts for OldSchool Runescape, written entirely in AutoHotkey. No client injection or reflection used.
Stars: ✭ 24 (-4%)
Mutual labels:  runescape, osrs, oldschool-runescape
oldschooljs
A utility library for all things oldschool runescape related.
Stars: ✭ 41 (+64%)
Mutual labels:  runescape, osrs, oldschool-runescape
client
Old School RuneScape client
Stars: ✭ 73 (+192%)
Mutual labels:  runescape, osrs, oldschool-runescape
OSRS-Font-Parser
Make your website relive your nerdy childhood
Stars: ✭ 31 (+24%)
Mutual labels:  runescape, osrs, oldschool-runescape
Dagon
Advanced Hash Manipulation
Stars: ✭ 155 (+520%)
Mutual labels:  bruteforce, hash
Hackers Tool Kit
Its a framework filled with alot of options and hacking tools you use directly in the script from brute forcing to payload making im still adding more stuff i now have another tool out called htkl-lite its hackers-tool-kit just not as big and messy to see updates check on my instagram @tuf_unkn0wn or if there are any problems message me on instagram
Stars: ✭ 211 (+744%)
Mutual labels:  bruteforce, hash
OldScape
Oldschool Runescape Emulation
Stars: ✭ 30 (+20%)
Mutual labels:  runescape, osrs
SCA-ScreenClickAi
Screen Click Ai - Old school Runescape game bot using OpenCV
Stars: ✭ 23 (-8%)
Mutual labels:  osrs, oldschool-runescape
bot-detector
A plugin which pulls and sends surrounding player names from OSRS to a python server. The names and stats are then processed and assessed for bot-like behavior.
Stars: ✭ 47 (+88%)
Mutual labels:  runescape, osrs
BruteForce
A simple brute forcer written in GO for SHA1, SHA256, SHA512, MD5 and bcrypt
Stars: ✭ 49 (+96%)
Mutual labels:  bruteforce, hash
oldschoolbot
Old School Bot - A fanmade discord bot based on Old School RuneScape (OSRS)
Stars: ✭ 125 (+400%)
Mutual labels:  runescape, osrs
BruteSploit
BruteSploit is a collection of method for automated Generate, Bruteforce and Manipulation wordlist with interactive shell. That can be used during a penetration test to enumerate and maybe can be used in CTF for manipulation,combine,transform and permutation some words or file text :p
Stars: ✭ 26 (+4%)
Mutual labels:  bruteforce, cracker
Bitcoin-Stealer
Generate random bitcoin wallets, private keys (seeds) and then check if they match a wallet that contains some kind of balance, and then take it. Node.js
Stars: ✭ 61 (+144%)
Mutual labels:  bruteforce, cracker
Mercury
Mercury is a hacking tool used to collect information and use the information to further hurt the target
Stars: ✭ 236 (+844%)
Mutual labels:  bruteforce, hash
John
John the Ripper jumbo - advanced offline password cracker, which supports hundreds of hash and cipher types, and runs on many operating systems, CPUs, GPUs, and even some FPGAs
Stars: ✭ 5,656 (+22524%)
Mutual labels:  hash, cracker
OSRSUpdater
A simple (and outdated) Old-School RuneScape decompiler/deobfuscator. Performs field and method analysis which uses ASM and bytecode patterns for identification. Identified fields could be used for creating bot clients or QoL clients. For educational use only.
Stars: ✭ 13 (-48%)
Mutual labels:  runescape, osrs
SanLite
Custom version of the OSRS Client RuneLite
Stars: ✭ 15 (-40%)
Mutual labels:  osrs, oldschool-runescape
SnekBot
bot client for OldSchool Runescape.
Stars: ✭ 18 (-28%)
Mutual labels:  osrs, oldschool-runescape
crack-pro
NEW FACEBOOK COINING TOOL
Stars: ✭ 77 (+208%)
Mutual labels:  cracker

cache-names Discord

View all

Some files in the Old School RuneScape cache contain a hash of their name. The only way to find out the names of these files is to reverse the hashes.

The following hash function is used:

public static int hash(String s) {
    byte[] bytes = s.toLowerCase(Locale.ROOT).getBytes(Charset.forName("windows-1252"));
    int h = 0;
    for (byte b : bytes) {
        h = h * 31 + b;
    }
    return h;
}

It is equivalent to s.toLowerCase(Locale.ROOT).hashCode() for ASCII-only inputs

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].