Skip to content

Commit

Permalink
improved cyberchallenge section
Browse files Browse the repository at this point in the history
  • Loading branch information
robalb committed Jul 24, 2024
1 parent 6fbe3f9 commit 5e07c11
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
11 changes: 5 additions & 6 deletions astro-website/src/pages/cyberchallenge/x64-introduction.mdx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
---
layout: '../../layouts/BlogPostNoHeader.astro'
title: An interactive guide to x86-64 assembly - introduction
title: x86-64 assembly pt. 1 - introduction
publishDate: 2024-02-18
description:
tags: ['x86-64', 'pwn']
permalink: https://halb.it/cyberchallenge/x64-introduction/
---
import Spoiler from '../../components/Spoiler.astro'
Expand All @@ -27,8 +26,8 @@ for reverse engineering, binary exploitation, or just writing better code.

This is the first part of a series of interactive articles:

- [introduction](/cyberchallenge/x64-introduction/) (you are here)
- [moving data](/cyberchallenge/x64-moving-data/)
- [pt. 1 - introduction](/cyberchallenge/x64-introduction/) (you are here)
- [pt. 2 - moving data](/cyberchallenge/x64-moving-data/)
- stack frames

### what is data?
Expand Down Expand Up @@ -204,8 +203,8 @@ instruction in the previous example works
This article is still under development, and it's improving over time.<br/>
If you reached this point, you might be interested in the next articles:

- [introduction](/cyberchallenge/x64-introduction/) (you are here)
- [moving data](/cyberchallenge/x64-moving-data/)
- [pt. 1 - introduction](/cyberchallenge/x64-introduction/) (you are here)
- [pt. 2 - moving data](/cyberchallenge/x64-moving-data/)
- stack frames

Additional resources:
Expand Down
11 changes: 5 additions & 6 deletions astro-website/src/pages/cyberchallenge/x64-moving-data.mdx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
---
layout: '../../layouts/BlogPostNoHeader.astro'
title: An interactive guide to x86-64 assembly - moving data
title: x86-64 assembly pt. 2 - moving data
publishDate: 2024-07-22
description:
tags: ['x86-64', 'pwn']
permalink: https://halb.it/cyberchallenge/x64-moving-data/
---
import Spoiler from '../../components/Spoiler.astro'
Expand All @@ -19,8 +18,8 @@ This is the second part of a series of interactive articles on the x86-64 archit
This part will focus on the first assembly instructions, visualizing the way data moves in memory
when they are executed.

- [introduction](/cyberchallenge/x64-introduction/)
- [moving data](/cyberchallenge/x64-moving-data/) (you are here)
- [pt. 1 - introduction](/cyberchallenge/x64-introduction/)
- [pt. 2 - moving data](/cyberchallenge/x64-moving-data/) (you are here)
- stack frames

### Visualizing memory
Expand Down Expand Up @@ -218,8 +217,8 @@ your mental model.
This article is still under development, and it's improving over time.<br/>
If you reached this point, you might be interested in the next articles:

- [introduction](/cyberchallenge/x64-introduction/)
- [moving data](/cyberchallenge/x64-moving-data/) (you are here)
- [pt. 1 - introduction](/cyberchallenge/x64-introduction/)
- [pt. 2 - moving data](/cyberchallenge/x64-moving-data/) (you are here)
- stack frames

Additional resources:
Expand Down

0 comments on commit 5e07c11

Please sign in to comment.