# Dude where is my car

<figure><img src="/files/LsT3gxWxPHlXi4BECT5y" alt=""><figcaption></figcaption></figure>

***

### Challenge Description

> I'm not sure where I lost my car, but I believe I’ll remember if I can see the original photo again. Can you find it? I only have this photoshopped and cropped version, but I’m confident it contains enough information for an OSINT expert. To prove your success, submit a flag with the Build Number from the EXIF data in the format: `1753c{Build Number}`.

***

### Provided Image

<figure><img src="/files/5QWBZ9RkV6i1EC1HayMY" alt="" width="375"><figcaption></figcaption></figure>

***

### Step 1: Checking Metadata

I used `exiftool` to examine the metadata of the provided image:

```bash
exiftool dude-where-is-my_car.jpg
```

**Output (trimmed):**

```
...
File Name                       : dude-where-is-my_car.jpg
File Size                       : 1828 kB
Image Size                      : 2132x2040
MIME Type                       : image/jpeg
...
```

Unfortunately, **no useful EXIF data** (like GPS or device info) was found.

***

### Step 2: Reverse Image Search

I uploaded the image to **Google Image Search**.

<figure><img src="/files/q1NjJ8628qLqvik828Ot" alt=""><figcaption></figcaption></figure>

After skimming through the results, **nothing matched exactly**. So, I analyzed the image further myself.

***

### Step 3: Analyzing Visual Clues

While inspecting the image, I spotted a **URL on the license plate**:

<figure><img src="/files/k0pLpfFCCJYT0nQQBL4g" alt="" width="375"><figcaption></figcaption></figure>

```
www.lieberzupiper.de
```

Visiting the URL directly didn’t work (domain is offline), so I searched for `lieberzupiper de` on Google.

<figure><img src="/files/fLl4LU0Ii5AoTQiKdWvX" alt=""><figcaption></figcaption></figure>

Bingo! I found a listing on:

```
https://tablica-rejestracyjna.pl/WWY?p=373
```

Unfortunately, it didn’t have the full original image either.

***

### Step 4: Exploring the Site

I clicked on **"Więcej komentarzy »"**, which led to:

```
https://tablica-rejestracyjna.pl/komentarze/WWY
```

There, I browsed through the pages manually until **I found the original image on page 3**.

<figure><img src="/files/FghFkzCrqHpa1USIocnw" alt=""><figcaption></figcaption></figure>

Downloaded it and prepared to analyze its metadata.

***

### Step 5: Extracting the Flag

Ran `exiftool` on the downloaded original image:

```bash
exiftool original-car-photo.jpg
```

**This time I got the jackpot:**

```
...
Build Number                    : S2RUBS32.51-15-3-19
...
```

***

### Step 6: Submitting the Flag

I submitted the flag using the required format:

```
1753c{S2RUBS32.51-15-3-19}
```

**Correct!**

<figure><img src="/files/LvLyWufxlOST9v2NvH57" alt=""><figcaption></figcaption></figure>

***

### Final Flag

```
1753c{S2RUBS32.51-15-3-19}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ch1se.gitbook.io/home/1753ctf-2025-writeups/dude-where-is-my-car.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
