Compare commits

..

2 Commits

Author SHA1 Message Date
31dac5f81b fix(xmpp): obfuscate client identity in protocol exchanges
Some checks failed
CI Code / Check spelling (pull_request) Successful in 13s
CI Code / Check coding style (pull_request) Successful in 22s
CI Code / Code Coverage (pull_request) Failing after 10m3s
CI Code / Linux (debian) (pull_request) Failing after 13m2s
CI Code / Linux (ubuntu) (pull_request) Failing after 13m10s
CI Code / Linux (arch) (pull_request) Failing after 21m33s
Modify version responses to return a generic client name and omit
version strings. Drop the "profanity." prefix from dynamically
generated JID resources. Clear the XEP-0115 capabilities node URI to
prevent service discovery fingerprinting. These adjustments reduce the
client's attack surface by minimizing identifiable metadata.
2026-07-09 16:38:27 +00:00
60e088ac3c feat(caps): add cache clearing to /caps
Add /caps clear to wipe the local capabilities cache.
Implement autocomplete for new subcommand.
2026-07-09 16:38:27 +00:00

View File

@@ -500,6 +500,11 @@ caps_jid_has_feature(const char* const jid, const char* const feature)
return FALSE;
}
void
caps_cache_clear(void)
{
}
gboolean
bookmark_add(const char* jid, const char* nick, const char* password, const char* autojoin_str, const char* name)
{