Tags: rev 

Rating: 1.0

# Plain Jane (144 solves)

> I'm learning assembly.
>
> Think you can figure out what this program returns?
>
> Note: Not standard flag format.
>
> Please provide either the unsigned decimal equivalent or hexadecimal equivalent. Author: nadrojisk

In this challenge we are given assembly source file.

### Solution:

We compile it with `gcc` , open in debugger, place bp after last function. eax value is the flag.

Original writeup (https://github.com/archercreat/CTF-Writeups/blob/master/auctf/rev/Plain%20Jane/README.md).