Skip to content

Latest commit

 

History

History
42 lines (22 loc) · 1.17 KB

File metadata and controls

42 lines (22 loc) · 1.17 KB

No way out

Overview

200 points

Category: Reverse Engineering

Tags : #picoCTF 2023 Reverse Engineering

Description

Put this flag in standard picoCTF format before submitting. If the flag was h1_1m_7h3_f14g submit picoCTF{h1_1m_7h3_f14g} to the platform. Windows game, Mac game

Solution

You need to download dnSpy to edit scripts of the game.

Drop this file into dnSpy:

Screenshot of the file

Now go to Update method of the PlayerController class in the game.

Screenshot of the file

We need to delete this part, so our character will not fall back to the ground, when we jump.

Screenshot of the file

Also we can add something like this to move our character around y axis

Screenshot of the file

Then just save changes and jump into the game.

Now we just fly to the flag and the text of the flag will appear in the middle of the screen, when we reach flag prop in game.

Screenshot of the game

Then just submit it in standard form picoCTF{...}