Assembly Proof of Concept

It turns out that since Glitch containers have gcc installed, you can run Unix Assembly (x86-64).

Steps:

  1. Create a file (filename.S)
  2. Add your Assembly code.
  3. Run gcc hello.S -no-pie -o hello && ./hello in the terminal

asm

There you have it!

3 Likes