Cyber ml
Showing all content.
- Today
-
View File Hunting Sniper ❥Ruminant 999 Damage ❥Ruminant 999 Muzzle Velocity ❥Ruminant 999 Slow Motion ❥Ruminant 999 Zoom Time ❥Other Snipers Stat Editor Submitter luckyday-999 Submitted 09/22/2025 Category LUA scripts
-
-
Hi @HorridModz, Thank you, I'm new to keystone, so reading your tool help me to understand it. Although the wordpress seems private.
-
Jurassic World: The Game how to get a locked dinosaur?
BigSmartAsian replied to greenhairbeard's topic in Requests
Thanks! -
Jurassic World: The Game how to get a locked dinosaur?
tobiashkansson replied to greenhairbeard's topic in Requests
-
Jurassic World: The Game how to get a locked dinosaur?
BigSmartAsian replied to greenhairbeard's topic in Requests
Can anyone kindly provide me a Lv. 40 Tiger icon like the image above, I'm going to put it in my document. -
There are mods for this app, but I can't install them I was wondering how can I hack this game
-
Yes, of course! But if that's all you want, just copy the few lines of code. In fact, I blogged the creation of the tool and all of the code snippets I used: import itertools import binascii import keystone import capstone def remove_whitespace(s: str) -> str: return "".join(s.split()) def wraptext(s: str, size: int) -> list[str]: # Thanks to https://stackoverflow.com/questions/9475241/split-string-every-nth-character return [s[i:i + size] for i in range(0, len(s), size)] def getbytes(hexstring: str) -> list[str]: """ Splits a hex string into a list of bytes. Convenient function because it accounts for both whitespace-separated and un-separated hex strings. """ hexstring = remove_whitespace(hexstring) assert len(hexstring) % 2 == 0, "Invalid hex string (odd length)" return wraptext(hexstring, 2) def make_ks(architecture: str) -> keystone.Ks: if architecture == "32bit": return keystone.Ks(keystone.KS_ARCH_ARM, keystone.KS_MODE_ARM) elif architecture == "64bit": return keystone.Ks(keystone.KS_ARCH_ARM64, keystone.KS_MODE_LITTLE_ENDIAN) else: raise ValueError(f"Unrecognized architecture: {architecture}. Only '32bit' and '64bit' are valid strings") def make_cs(architecture: str) -> capstone.Cs: if architecture == "32bit": return capstone.Cs(capstone.CS_ARCH_ARM, capstone.CS_MODE_ARM) elif architecture == "64bit": return capstone.Cs(capstone.CS_ARCH_ARM64, capstone.CS_MODE_LITTLE_ENDIAN) else: raise ValueError(f"Unrecognized architecture: {architecture}. Only '32bit' and '64bit' are valid strings") def armtohex(instruction: str, architecture: str) -> str: ks = make_ks(architecture) convertedhexlist = [] convertedinstruction = ks.asm(instruction, as_bytes=True)[0] return binascii.hexlify(convertedinstruction).decode().upper() def hextoarm(hexinstruction: str, architecture: str) -> list[str]: cs = make_cs(architecture) return next(cs.disasm_lite(bytearray.fromhex(hexinstruction), 0x0))[2:] def generateaobfromarm(armcode: str, architecture: str) -> str: # Convert string of code to list of instructions instructions = list(itertools.chain(*[split1.split(";") for split1 in armcode.split("\n")])) unknownhex = "??" * 4 hexlist = [] for instruction in instructions: if instruction == "" or instruction.isspace(): continue if "0x" in instruction or "#" in instruction: hexlist.append(unknownhex) else: hexlist.append(armtohex(instruction, architecture)) # Hexlist is a list of 4 byte sequences, and we want our separator in between every byte, so we do this little # maneuver. aob = "".join(hexlist) # Unformatted return " ".join(getbytes(aob))
-
- 2 comments
-
- Minecraft
- Minecraft PE
-
(and 2 more)
Tagged with:
- Yesterday
-
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
where is @MonkeySAN? -
Those who have had successful runs with Egg, Inc. (Post Update / Ideas))
LordBanana replied to stdout's topic in Requests
Anyone tried messing around with eggs of truths? Can they be modified directly (I'm guessing they are like soul eggs, so no)? -
Hi, Game name: Bloody ***** Google Play link: https://play.google.com/store/apps/details?id=com.tibith.badboxing Is the game free? Yes! I want to hack the level value to open all the classes But whenever i change it the game crashe!? But! If i change the level by one Like 21 to 22 it's okay! But if I want to open all the level the game crashe The coins in other hands is same thing but the values is saved even after crashed I tried encrypted value search, X4 search, F,D, Double same thing Any help?
-
Need help finding a virtual space that works with Simcity buildit 2025
Aname_Maralen replied to the_honker234's question in Help
I think most of those clone apps just cause trouble, fill up with junk quickly, and games usually block them anyway. I’d rather stick to a clean, direct install. -
Jurassic World: The Game how to get a locked dinosaur?
epann replied to greenhairbeard's topic in Requests
I also have the same problem bro.. I can't put my triceratops in the park, every time I want to put it in the park it always crashes.. -
Requires an update
- 4 replies
-
- 8ballpool
- 8ball long line
- (and 6 more)
-
Hi @HorridModz, Yeah, I noticed that every instruction containing defined 0x is being replaced. Well it works in the end by limiting the address range.
-
I just noticed your comment about IDA. If your use case is simply to find offsets, this tool does much more than what you're looking for. In terms of the AOB generation, all it does is dumbly check if instructions contains `0x` or `#` (which is not a foolproof system and results in false positives). IDA supports AOB searches, and surely there's better tools out there that you can use to generate AOBs. For instance, https://guidedhacking.com/threads/aob-signature-maker.8524/ seems promising. I'm not trying to discourage you from using my tool, I just want to clarify that it's nothing magical.
-
I need some help. I accidently add +25 or +50 (i forgot) Toto crystal when you save Mimi in Toto Theater World years ago. So i cant use warp immediately even after clearing Toto Theater World. Can you help solving me ? I don't know how to search it in Nopaew
-
We cannot simply delete your account or posts without specific reasons. But I can hide your content if you prefer.
- Last week
-
@Collen pls help me delete my content and account from here @NoFear Plssss help me, delete my content and account from here plsss
-
How can I speed up time, or get rewards for days I missed without logging in? Any ideas? I've seen values that decrease, possibly a countdown timer, but it doesn't change.
-
Have you got discord??
-
For the new season points : UTF-8 ? ?
-
Yeah thats true if you look for optimization more than simple arm patches and I really recommend it for hot functions
-