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.

RESIDENT EVIL REVELATIONS 2(.sngw)

Featured Replies

  • Author
  • Localization

aluigi, posted Wed Feb 25, 2015 3:39 pm (3464)


Probably it's xored with the bytes "0xc9 0xdc 0x38 0x3b", don't know.
  • Author
  • Localization

Savage, posted Tue Apr 28, 2015 8:51 am (4885)


Any news about this audios? for me looks and ogg vorbis, the other RE are using ogg vorbis.
  • Author
  • Localization

Savage, posted Tue Apr 28, 2015 7:09 pm (4909)


Aluigi tried your idea about xor with python but is not working

Code:
# XOR a file
import sys
import struct

values = (0xc9, 0xdc, 0x38, 0x3b)
N=len(values)

with open(sys.argv[1], "rb") as fin:
    i=0
    byte = fin.read(1)
    while byte != "":
        val=struct.unpack('B', byte[0])[0]
        val_xored = val ^ values[i%N]
        sys.stdout.write(struct.pack('B', val_xored))
        i = 1
        byte = fin.read(1)
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.