Skip to content

Instantly share code, notes, and snippets.

View Enigmatrix's full-sized avatar
🛠️
Tinkering

Chandrasekaran Akash Enigmatrix

🛠️
Tinkering
View GitHub Profile
@<?php
echo exec('whoami');

Stuff ToDo

  • move all strings into file
  • rename Commands
  • redo algo to satisfy
  • comment poll.ts
  • use ! on unintializable types in poll.ts
  • erase L240 in poll.ts
  • uniquer.add only after all role stuff else bug when removed
  • IMPT: assign roles as they press the button
  • IMPT: check 1 unique player per role
<?php
echo 'hello';
@Enigmatrix
Enigmatrix / GDB Cheatsheet.md
Last active April 2, 2025 21:52
GDB Cheatsheet using pwndbg

GDB Cheatsheet

Setup

First of all, we need to install GDB: sudo apt install gdb

Next we will be installing an extension to GDB called pwndbg that will make our life easier. Instructions for installation are here.

You can verify that your installation works by running gdb /bin/true in your command line, then running start when the prompt shows.