fix: invalid Textual CSS color in studio TUI#5
Open
WALDEX451 wants to merge 5 commits into
Open
Conversation
Complete implementation of the devha CLI tool with 10 subcommands: - portscan: threaded port scanner with Rich progress bar - username: async username checker across 55+ platforms - wifi: read-only Wi-Fi scanner (Linux/macOS/Windows) - cipher: Caesar/Vigenère/ROT13/Atbash encode/decode/crack + Textual TUI - subdomains: wordlist + crt.sh + HackerTarget subdomain discovery - dirscan: async directory brute-forcer with rate limiting - crawl: web crawler extracting emails, links, and API key patterns - harvest: public domain info harvester via DuckDuckGo + crt.sh - headers: HTTP security header audit with 6-point scoring - ping: Scapy ICMP ping with educational packet output Includes: - Ethical-use warnings before every active scan - 48 tests covering cipher, portscan, and username commands - GitHub Actions CI for Python 3.10/3.11/3.12 - Dockerfile for containerized usage - MIT license, .gitignore, and full README https://claude.ai/code/session_0112ftTonVeWk5AXsuvjPXph
- dnsrecon: query all DNS record types, zone transfer, SPF/DMARC analysis - sslcheck: SSL/TLS certificate inspector (expiry, protocol, cipher strength) - ipinfo: IP geolocation via ip-api.com (ASN, ISP, proxy/VPN detection) - webvuln: async web vulnerability scanner (20+ sensitive file probes, security headers) - whois_cmd: WHOIS/RDAP lookup (registrar, dates, nameservers) - cli.py: register all 5 new commands; add dns sub-menu; expand osint/web/password - studio.py: 9-category TUI menu (Network, Web, DNS/SSL/WHOIS, OSINT, Crypto, Password, Packets, WiFi, Ping)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes the CSS parsing error that crashed the TUI on launch.
color: dim yellowis not valid Textual CSS — replaced withcolor: #aaaa00(equivalent muted yellow).Generated by Claude Code