Skip to content

Commit d9831dd

Browse files
committed
fix pwndbg
1 parent 42808b4 commit d9831dd

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/pages/docs/ArchitecturePage.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,9 @@ export const ArchitecturePage: React.FC = () => {
386386
<p className="text-slate-400 text-sm">
387387
9 installation methods are used in the build system. Post-install behavior differs by method, and tools metadata comes from <code>tools.json</code>.
388388
</p>
389+
<p className="text-slate-500 text-xs">
390+
Note: some tooling previously built from source (for example <code>pwndbg</code>) is now aligned on package-manager flow when available.
391+
</p>
389392
<div className="grid sm:grid-cols-2 gap-2">
390393
{[
391394
{ name: 'pacman', fn: 'install_pacman_tool', desc: 'Arch official + Chaotic-AUR', color: '#fbbf24' },

src/pages/docs/ImagesPage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ nihil tools ctf --category redteam_pwn`}
359359
<h3 className="text-lg font-medium text-white">Key tools by category</h3>
360360
<div className="space-y-4">
361361
{[
362-
{ cat: 'Pwn/Reverse', tools: 'pwntools, ROPgadget, radare2, strace, ltrace, ghidra' },
362+
{ cat: 'Pwn/Reverse', tools: 'pwndbg, pwntools, ROPgadget, radare2, strace, ltrace, ghidra' },
363363
{ cat: 'Web', tools: 'ffuf, nuclei, sqlmap, nikto, dirsearch, jwt-tool' },
364364
{ cat: 'Network', tools: 'nmap, netcat, socat, wireshark-cli' },
365365
{ cat: 'Credential', tools: 'hashcat, john, binwalk, secLists' },
@@ -546,6 +546,7 @@ const credentialTools: Tool[] = [
546546

547547
const pwnTools: Tool[] = [
548548
{ name: 'radare2', cmd: 'r2', desc: 'Reverse engineering framework' },
549+
{ name: 'pwndbg', cmd: 'pwndbg', desc: 'GDB helper plugin (installed via pacman)' },
549550
{ name: 'pwntools', cmd: 'pwn', desc: 'CTF/exploit development library' },
550551
{ name: 'ROPgadget', cmd: 'ROPgadget', desc: 'ROP gadget finder' },
551552
{ name: 'strace', cmd: 'strace', desc: 'System call tracer' },

0 commit comments

Comments
 (0)