How to decrypt an encrypted .dll file

Sbenny.com is trusted by 1,323,325 happy users since 2014.
Register

jampopoy

Novice Lv1️⃣
Member for 7 years
how to edit boolean values? lol to make the tutorial value always active
 

NEMESIS

Novice Lv1️⃣
Member for 8 years
jampopoy said:
how to edit boolean values? lol to make the tutorial value always active
if u find something like:
Code:
return 0
try to change to
Code:
return 1
i mean
Code:
ldc4.0 <--- change it with ---> ldc4.1
ret
... i think i feel something not right but well lets see
 

Sbenny

A crazy scientist
Staff member
Admin
SB Mod Squad ⭐
✔ Approved Releaser
Active User
It's seen as "return true" or "return false", and it's ldc.i4 (not ldc.4) but your explanation was good!
 

JAY-forGROM

Apprentice Lv2️⃣
Member for 7 years
🔒 Hidden content
You need to Register or Login in order to view this content. Since you're viewing the AMP-accelerated version of our website which doesn't store login cookies, please scroll to the bottom of this page and click on the "View Non-AMP Version" button first, thanks!
Well, this is where the above info is useful but doesn't apply, so what can we do, will see if I can find a solution. This is the new Star Wars: Force Arena apk
 

Sbenny

A crazy scientist
Staff member
Admin
SB Mod Squad ⭐
✔ Approved Releaser
Active User
May I ask you which error do you get when trying to dump the file on your Android device? (do you get an error in the Terminal? If yes, can you make a screenshot?)
 

AndnixSH

Savage Lv6️⃣
SB Mod Squad ⭐
Member for 8 years
JAY-forGROM said:
Well, this is where the above info is useful but doesn't apply, so what can we do, will see if I can find a solution. This is the new Star Wars: Force Arena apk
They might have changed the header. Try this viewtopic.php?f=68&t=4411&start=10
 

Peachu

Novice Lv1️⃣
Member for 7 years
Does it work with another emulator? Or do I need to use my smartphone?
 

Sbenny

A crazy scientist
Staff member
Admin
SB Mod Squad ⭐
✔ Approved Releaser
Active User
Peachu said:
Does it work with another emulator? Or do I need to use my smartphone?
I think it works with Bluestacks but, as far as I know, it DOESN'T work with other emulators besides that Bluestacks.
 

Peachu

Novice Lv1️⃣
Member for 7 years
Hello again, I have tried it but I was denied the permission.

 

Sbenny

A crazy scientist
Staff member
Admin
SB Mod Squad ⭐
✔ Approved Releaser
Active User
Here's the solution (thanks to iAndroHacker):

Code:
chmod 777 /system/bin/gdb && chmod 777 /system/bin/gdbserver
The reasons for your error are probably due to a misconfiguration of the file's permission.
 

bobbykim_

Lurker Lv0️⃣
Member for 7 years
I got an error when i enter:

gdb -pid 13472
error: only position independent executables (PIE) are surpported.

Any ideas why i get this error? :-(
 

Sbenny

A crazy scientist
Staff member
Admin
SB Mod Squad ⭐
✔ Approved Releaser
Active User
Android Lollipop doesn't natively support this. You'll have to use a device running Android 4.4 or lower (or you can use Bluestacks, I've heard it works with dumping dlls).
 

Duwen

Lurker Lv0️⃣
Member for 7 years
thank you for this tutorials..will try it (y)
 
Top