Post

Super Secure Catalog - Cyberchaze CTF Writeup

Walkthrough for the Super Secure Catalog Android reverse engineering challenge from Cyberchaze CTF.

Super Secure Catalog - Cyberchaze CTF Writeup

Challenge Info

FieldDetails
CTFCyberchaze CTF
ChallengeSuper Secure Catalog
CategoryAndroid / Reverse Engineering

Solution

alt text

The app on opening, asks for a username and a password We can move on to inspecting in it Jadx

alt text

The entered username and password is being verified in another class names Cryto Now,we can inspect the Crypto class

alt text

A part of the flag was hardcoded, cyberchaze{th3_encRYpt3d_STR1ng_in_3nc6yPtE6_ There was also the use of Native Libraries, we can inspect it in:

alt text

The function was a string encoded in hexa, we can convert it to string value

alt text

  1. hexa : 666921457d
  2. ASCII : fi!E}

If we join them together we get the flag flag : cyberchaze{th3_encRYpt3d_STR1ng_in_3nc6yPtE6_fi!e}

This post is licensed under CC BY 4.0 by the author.