Refactor help plugin, and included metadata to all plugins

This commit is contained in:
2026-05-07 02:27:27 -05:00
parent abb4b5e245
commit dba205685b
38 changed files with 935 additions and 827 deletions
+15 -1
View File
@@ -124,4 +124,18 @@ async def handle_command(room, message, bot, prefix, config):
room.room_id,
f"An error occurred during subdomain enumeration for {domain}. Please try again later."
)
logging.error(f"Error in subdomains plugin for {domain}: {e}", exc_info=True)
logging.error(f"Error in subdomains plugin for {domain}: {e}", exc_info=True)
# ---------------------------------------------------------------------------
# Plugin Metadata
# ---------------------------------------------------------------------------
__version__ = "1.0.0"
__author__ = "Funguy Bot"
__description__ = "Subdomain enumeration via CertSpotter"
__help__ = """
<details>
<summary><strong>!subdomains</strong> Enumerate subdomains</summary>
<p><code>!subdomains &lt;domain&gt;</code> Finds subdomains using SSL certificate transparency logs (CertSpotter API).</p>
</details>
"""