Рейтинг темы:
  • 0 Голос(ов) - 0 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
String.i3pack encoding/encryption
#1
just dump string.i3pack (Garena PBID GAME VER : 1.15.42.171114007) file to edit some text and found it was encoded/encrypted, if someone more familiar or experienced can tell what kind of encoding/encryption uses so it can read as plain text, that would be a big help

file attached:


Файлы вложений
.zip   Goods_Indonesia.zip (Размер: 132.04 KB / Загрузок: 249)
Ответ
#2
https://forum.zone-game.info/showthread.php?t=39792


This should help you.
Лучше взять и изобрести завтрашний день, чем переживать о том, что вчерашний был так себе.
Ответ
#3
just_me,
Code Link
Разработка Emu: PiercingBlow 90%, APB Reloaded 100%.
Самый действенный инструмент для самообучения - грабли.
Ответ
#4
Sojang Написал:https://forum.zone-game.info/showthread.php?t=39792


This should help you.

Awiion Написал:just_me,
Code Link

thanks to both of you guys
took me a couple hours to understand, but it's worth it Smile

[Изображение: syiepJ0.png]
Ответ
#5
ok i admit it... i need more help :redlol:
i'm too exited, but please "bear with me", im here to learn

i change my last code and use this
code

hoping it would be faster than the last one, but same result and most of the times it freeze my computer if i open bigger file, googling for hours and can't find an answer (wrong keyword perhaps)

any advice is greatly appreciated,
Ответ
#6
UPDATE : save it as a file is more efficient rather than read it straight from console Big Grin
Ответ
#7
Try like this:

[SRC="csharp"]private static void Unshift(IList<byte> data, int start, int length, int bits)
{
var to = start + length;

if (data.Count < to) to = data.Count;

var last = data[to - 1];

for (var i = to - 1; i >= start; i--)
{
var current = i <= start ? last : data[i - 1];

data[i] = (byte) ((current << (8 - bits)) | (data[i] >> bits));
}
}
[/SRC]


And try:

[SRC="csharp"]// ...
Unshift(bin, i, 2048, 3);
// ...
[/SRC]


Goods_Indonesia.txt was proceed during 0,0524851s.
Ответ
#8
...
Ответ
#9
PROGRAMMATOR Написал:Try like this:

^thanks for the update

so i decide to share it here in case someone need it, add some "cosmetic" just to make it look more user friendly

virus scan : VirusTotal


Файлы вложений
.zip   string.i3Pack_dump_reader.zip (Размер: 169.54 KB / Загрузок: 321)
Ответ
#10
thanks for the tools Big Grin
Ответ


Возможно похожие темы ...
Тема Автор Ответы Просмотры Последний пост
  how to String.i3pack Crypt bmzproject 0 1,430 04-10-2019, 12:55 AM
Последний пост: bmzproject
  I3pack Boris2105 4 2,274 02-19-2018, 05:27 PM
Последний пост: Boris2105

Перейти к форуму:


Пользователи, просматривающие эту тему: 9 Гость(ей)