惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Got Tired of Forgetting. So I Built PwnLog.
Nimesh Thakur · 2026-05-24 · via DEV Community
Cover image for I Got Tired of Forgetting. So I Built PwnLog.

Nimesh Thakur

Every bug hunter knows the feeling.

You're deep in a session. You find something weird — an IDOR, a sketchy endpoint, a parameter that behaves differently than it should. You think "I'll note this later."

You never do.

Three days later you're staring at a blank report. No notes. No screenshots. No proof. Just a vague memory of something that felt important.

I got tired of that loop. So I built PwnLog.


What It Does

One hotkey. One popup. Done.

ALT + SHIFT + Z

pwnlog pop

A small window appears. You type what you found. You hit Enter. You're back to hacking in under five seconds.

That's it. That's the whole thing.

PwnLog handles everything else — timestamp, active window title, screenshot, category tag, markdown journal entry. All automatic. All organized.


What Gets Captured

Every time you log something, PwnLog records:

timestamp       → 2026-05-22 14:32
category        → IDOR
note            → your words exactly
window title    → Firefox — Tesla Admin Panel
screenshot      → optional, annotated via flameshot

No forms. No friction. No context switching.


Where It Goes

Every entry lands in two files that build themselves as you hack.

journal.md — open it after a session and your report is half written.

## 2026-05-22 14:32 — IDOR

> Firefox — Tesla Admin Panel

changed user id from 99 to 12, got full victim profile back.

![screenshot](screenshots/2026-05-22_1432_idor.png)

journal.md

timeline.json — structured data you can grep, parse, or build on.

{
  "timestamp"    : "2026-05-22T14:32:01",
  "category"     : "IDOR",
  "note"         : "changed user id from 99 to 12, got full victim profile back.",
  "window_title" : "Firefox — Tesla Admin Panel",
  "screenshot"   : "screenshots/2026-05-22_1432_idor.png"
}

timestamp


Categories

Cycle through them with Tab inside the popup.

Recon  →  Auth  →  IDOR  →  XSS  →  SQLi
SSRF   →  LFI   →  Logic →  Dead End  →  Note


Install and Run

git clone https://github.com/toklas495/pwnlog
cd pwnlog
pip install -r requirements.txt
python main.py

Linux — also install:

sudo apt install flameshot xdotool

Mac — also install:

brew install flameshot

Then just run it in the background and forget about it. It listens for the hotkey. You do the hacking.

dashboard

Your Data, Your Machine

Everything lives in ~/.pwnlog/. Nothing is transmitted. Ever.

~/.pwnlog/
└── projects/
    └── your-target/
        ├── journal.md
        ├── timeline.json
        └── screenshots/


Why I Built This

I wasn't looking for a full documentation suite. I wasn't looking for another Notion template or Burp extension.

I just needed something that would get out of my way and capture what I found — exactly when I found it — without breaking my flow.

PwnLog does that one thing well.

The best documentation tool is the one you actually use.


Built with Python, CustomTkinter, pynput, and Flameshot.

MIT License — use it, fork it, make it yours.