Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

What is encoding = base64 compression = gzip? And how to decode

Featured Replies

  • Author
  • Localization

luatsenpai, posted Fri Mar 22, 2019 2:27 pm (45956)


Hello there
I found .tmx file anh try open it and i found something like:
data encoding="base64" compression="gzip"
H4sIAAAAAAAAA 3QQQ6AIAxEUW6pO3v/U jCVROGoomj8b EsKPltwYA LrVvYAQ7gWEJ7st57zencVxtuJ91 z76h jf82i23Vv7Taal9GtNi9zd1OiebspdOvPU9zdql0c3apd/t4NAABoOy44SJzEFwAA
How to read it?
  • Author
  • Localization

Endymion, posted Fri Mar 22, 2019 4:01 pm (45962)


as it implies, this is some kind of data that to me looks like random letters here and there, first gzipped then base64-ed. So not sure there's anything human-readable inside.
  • Author
  • Localization

atom0s, posted Sun Mar 24, 2019 8:54 am (45989)


You can use online tools to do this but the data returned is not just normal text data, it is a binary file for mapping a layer/floor from the look of it.

To do this easily, create a new text file on your desktop like data.txt
Open and paste the base64 string into it like:
Code:
H4sIAAAAAAAAA 3QQQ6AIAxEUW6pO3v/U jCVROGoomj8b EsKPltwYA LrVvYAQ7gWEJ7st57zencVxtuJ91 z76h jf82i23Vv7Taal9GtNi9zd1OiebspdOvPU9zdql0c3apd/t4NAABoOy44SJzEFwAA


Use the file decode tool here: https://www.base64decode.org/ and decode the data.txt file.

Save the new file it made to your desktop but rename the extension to .gzip

Load the new file with a tool like 7zip. That can decompress and read the file inside. Open that in a hex editor and you'll have the real data.
  • Author
  • Localization

aluigi, posted Tue Mar 26, 2019 2:47 pm (46033)


If you need a quickbms script as example:
Code:
comtype base64
get SIZE asize
clog MEMORY_FILE 0 SIZE SIZE
comtype gzip
get SIZE asize MEMORY_FILE
get NAME basename
clog NAME 0 SIZE SIZE MEMORY_FILE
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.