
🌳 構造化Webツリー生成
🕵️ 正規表現ベースのデータ抽出
⚡ 高速マルチスレッド
📂 複数のエクスポート形式
🎨 カラー化された出力と堅牢なエラーハンドリング
git clone https://github.com/XORbit01/webpalm.git
cd webpalm
go build -o webpalm && ./webpalm
go install github.com/XORbit01/webpalm/v2@latest
webpalm -h
🌎 -i, --include # Include only specific domains (e.g., google.com, facebook.com)
🔗 -u, --url # Target website
📏 -l, --level # Depth of traversal
❌ -x, --exclude # Exclude status codes (e.g., 404, 500)
💾 -o, --output # Save results (JSON, XML, TXT)
🚀 -w, --worker # Multi-threading workers
🔍 --regexes # Extract data using regex
webpalm -u https://example.com -l2
webpalm -u https://example.com -l1 --regexes comments="\<\!--.*?-->" -o results.json
webpalm -u https://example.com -l3 -w 50
webpalm -u https://example.com -l2 -o output.xml
| 🔍 目的 | 📜 正規表現パターン |
|---|---|
| 📧 メールアドレス | [a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+ |
| 💬 コメント | \<\!--.*?--> |
| 🔑 トークン |
📌 必要に応じて特殊文字をエスケープしてください。
💡 プルリクエストを歓迎します!大きな変更の前にIssueを開いてください。
📢 Discord: xorbit.
[a-zA-Z0-9]{32} |
| 🔐 パスワード | \bpassword\b.{0,10} |