<?xml version="1.0" ?>
<rss version="2.0">
  <channel>
    <title>alwaysdata </title>
    <lastBuildDate>Thu, 09 Jul 2026 15:28:32 +0000</lastBuildDate>
    <description>Feed for all projects</description>
    <link>https://security.alwaysdata.com/</link>
        <item>
      <title>FS#366: Broken Access Control – Revoked User Can Access Historical Mailbox Audit Logs via Direct Object Refe</title>
      <author>shankar biswas</author>
      <pubDate>Fri, 03 Jul 2026 18:33:54 +0000</pubDate>
      <description><![CDATA[
<p>
<strong>Description</strong> After a user&#039;s mailbox permissions are revoked, the application correctly removes access to the mailbox through the user interface. However, the server still allows the user to directly access previously generated mailbox audit logs by requesting the log endpoint with the corresponding log ID.
</p>

<p>
This indicates that the application does not enforce authorization checks on the audit log resource based on the user&#039;s current permissions. As a result, a user whose mailbox access has been revoked can continue to access historical audit logs related to that mailbox.<br /><strong>
CVSS v3.1 → Score: 4.3 (Medium)</strong>
</p>

<p>
Note: If the audit logs expose sensitive mailbox configuration or confidential information, the severity may be higher.
</p>

<p>
<strong>Steps to Reproduce</strong> 1- Login with User A.<br />2- Invite User B as an Administrator with mailbox management permissions.<br />3- Login as User B.<br />4- Navigate to the mailbox settings and make any configuration change.<br />5- Verify that an audit log entry is created for the action.<br />6- Login as User A and revoke User B&#039;s mailbox permissions.<br />7- Confirm that the mailbox section is no longer accessible through the UI for User B.<br />8- Login again as User B.<br />9- Intercept the request used to retrieve an audit log (or directly access the audit log endpoint).<br />10- Replace the current log ID with the previously generated mailbox audit log ID.<br />11- Send the request.
</p>

<p>
<strong>Actual Behaviour</strong> → Even after mailbox permissions have been revoked, the server returns the historical mailbox audit log when the user directly requests it using the known log ID.
</p>

<p>
<strong>Expected Behaviour</strong> → Once mailbox permissions are revoked, the server should validate the user&#039;s current authorization before returning any mailbox-related audit logs. Unauthorized users should receive 403 Forbidden (or an equivalent authorization error).
</p>

<p>
<strong>Impact</strong> → Users can continue accessing mailbox-related audit logs after losing mailbox permissions.<br />→ Authorization is enforced only in the UI, not on the backend resource.<br />→ Historical mailbox activity remains accessible despite permission revocation.
</p>

<p>
<strong>Business Impact</strong> → Violates the principle of least privilege.<br />→ Former administrators or users with revoked access may continue viewing historical mailbox activity.<br />→ May expose operational or sensitive mailbox information depending on the audit log contents.<br />→ Indicates inconsistent server-side authorization checks, increasing the risk of similar access control issues elsewhere in the application.
</p>

<p>
<strong>Remediation</strong> → Perform server-side authorization checks for every audit log request.<br />→ Validate the user&#039;s current permissions before returning mailbox-related logs.<br />→ Return 403 Forbidden when the user is no longer authorized.<br />→ Ensure audit log access follows the same permission model as the underlying mailbox resource.<br /><strong>
Proof of Concept (PoC)</strong> Google Drive Link: <a href="https://drive.google.com/drive/folders/1c3fthnH3Vfq60bd4RacM3_aHF8zgmw88?usp=drive_link" class="urlextern" title="https://drive.google.com/drive/folders/1c3fthnH3Vfq60bd4RacM3_aHF8zgmw88?usp=drive_link"  rel="nofollow">https://drive.google.com/drive/folders/1c3fthnH3Vfq60bd4RacM3_aHF8zgmw88?usp=drive_link</a>
</p>

<p>
<strong>Conclusion</strong> The application fails to properly enforce server-side authorization on mailbox audit log resources. Although mailbox access is removed from the user interface after permission revocation, previously generated audit logs remain accessible through direct requests using known log IDs. This represents a Broken Access Control issue because authorization is not consistently enforced on the backend.
</p>

<p>
Thanks<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/366</link>
      <guid>https://security.alwaysdata.com/task/366</guid>
    </item>
        <item>
      <title>FS#365: Cross-Site Request Forgery (CSRF) in Notification &quot;Seen&quot; Endpoint Leads to Unauthorized Notification</title>
      <author>shankar biswas</author>
      <pubDate>Thu, 02 Jul 2026 17:33:20 +0000</pubDate>
      <description><![CDATA[
<p>
<strong>Description</strong>
</p>

<p>
The application is vulnerable to Cross-Site Request Forgery (CSRF) on the notification &quot;Seen&quot; endpoint. An attacker can craft a malicious <acronym title="HyperText Markup Language">HTML</acronym> page that silently triggers the notification &quot;seen&quot; request from a victim&#039;s browser while the victim is authenticated.
</p>

<p>
Because the endpoint accepts the request without validating a CSRF token or verifying the request origin, the victim&#039;s notification status is changed without their knowledge or consent.
</p>

<p>
Although this does not expose sensitive information, it allows unauthorized modification of user data, violating the integrity of the victim&#039;s account.
</p>

<p>
<strong>CVSS v3.1 → Score: 4.3 (Medium)</strong>
</p>

<p>
<strong>
Steps to Reproduce</strong>
</p>
<ol>
<li class="level1"><div class="li"> Login to Attacker Account (Account A) using Firefox.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Navigate to Notifications.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Ensure at least one notification is available.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Enable Burp Suite Intercept.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Click Seen on a notification.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Capture the request.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Send the request to Burp Engagement Tools.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Generate a CSRF PoC.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Modify the generated PoC by changing:</div>
</li>
</ol>

<p>
    method=&quot;POST&quot; to method=&quot;GET&quot; 
</p>
<ol>
<li class="level1"><div class="li"> Save the <acronym title="HyperText Markup Language">HTML</acronym> file.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Login to Victim Account (Account B) using another browser (Chrome).</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Ensure the victim has at least one unread notification.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Open the generated CSRF PoC in the victim&#039;s browser.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Click Submit Request.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Observe that the victim&#039;s notification is automatically marked as Seen without the victim performing the action.</div>
</li>
</ol>

<p>
 <strong>Actual Behaviour</strong>
</p>
<ol>
<li class="level1"><div class="li"> The notification is marked as Seen in the victim&#039;s account simply by visiting and submitting the attacker-controlled <acronym title="HyperText Markup Language">HTML</acronym> page.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> No CSRF protection, Origin validation, or SameSite-based mitigation prevents the request.</div>
</li>
</ol>

<p>
 <strong>Expected Behaviour</strong>
</p>
<ol>
<li class="level1"><div class="li"> The server should reject any state-changing request that does not contain a valid CSRF token and should verify the request originates from a trusted source.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Only the authenticated user performing the action from the legitimate application should be able to mark notifications as Seen.</div>
</li>
</ol>

<p>
 <strong>Impact</strong>
</p>
<ol>
<li class="level1"><div class="li"> Unauthorized modification of notification status.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Attackers can manipulate notification state without user consent.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Users may miss important notifications because they appear as already read.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Demonstrates missing CSRF protection on a state-changing endpoint.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Indicates other sensitive endpoints may also be vulnerable to CSRF.</div>
</li>
</ol>

<p>
 <strong>Business Impact</strong> 
</p>
<ol>
<li class="level1"><div class="li"> Loss of integrity of user account data.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Important alerts, security notifications, or business messages may be marked as read without the user&#039;s knowledge.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Reduced user trust due to unauthorized account actions.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Reveals a security control weakness that could affect higher-risk endpoints if the same protection is missing elsewhere.</div>
</li>
</ol>

<p>
<strong>
Remediation</strong> 
</p>
<ol>
<li class="level1"><div class="li"> Implement anti-CSRF tokens for all state-changing requests.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Validate the Origin and Referer headers.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Use SameSite=Lax or preferably SameSite=Strict for session cookies where appropriate.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Ensure endpoints that modify data only accept the intended <acronym title="Hyper Text Transfer Protocol">HTTP</acronym> method (e.g., POST) and cannot be invoked via GET.</div>
</li>
</ol>
<ol>
<li class="level1"><div class="li"> Follow the Synchronizer Token Pattern or another robust CSRF defense mechanism across the application.</div>
</li>
</ol>

<p>
 <strong>Video Proof of Concept:</strong>
</p>

<p>
Google Drive link → <a href="https://drive.google.com/drive/folders/1v9Y7TFbgv-FFztKX23aL_ZNkDu3GCqWT?usp=drive_link" class="urlextern" title="https://drive.google.com/drive/folders/1v9Y7TFbgv-FFztKX23aL_ZNkDu3GCqWT?usp=drive_link"  rel="nofollow">https://drive.google.com/drive/folders/1v9Y7TFbgv-FFztKX23aL_ZNkDu3GCqWT?usp=drive_link</a>
</p>

<p>
<strong>Conclusion</strong>
</p>

<p>
The notification &quot;Seen&quot; endpoint lacks proper CSRF protection, allowing an attacker to force authenticated users to unknowingly mark their notifications as read. While the immediate impact is limited to unauthorized state modification, it represents a clear integrity issue and indicates that CSRF protections may be absent from other state-changing endpoints. Implementing standard CSRF defenses will prevent unauthorized cross-site requests and strengthen the application&#039;s overall security posture.
</p>

<p>
Thanks<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/365</link>
      <guid>https://security.alwaysdata.com/task/365</guid>
    </item>
        <item>
      <title>FS#364: Bug bounty — cross-tenant /tmp disclosure (FS#363) umask fix confirmed </title>
      <author>Sayada Zannat Haque</author>
      <pubDate>Thu, 02 Jul 2026 15:35:36 +0000</pubDate>
      <description><![CDATA[
<p>
Hi,
</p>

<p>
This is a follow-up to my security report (<strong> FS #363 </strong>) (cross-tenant file disclosure via the<br />shared /tmp on <acronym title="Secure Shell">SSH</acronym>/web hosts: files created with the default umask landed<br />world-readable (0644) and were readable by other tenants on the same host).
</p>

<p>
You made a change to the non-interactive umask and asked me to confirm it. I&#039;ve<br />re-tested on ssh1 and can confirm it&#039;s fixed:
</p>

<p>
- umask now returns 0007 in the non-interactive case (ssh &lt;host&gt; umask, bash -c,<br />sh -c), not just interactive shells. Previously all of these returned 0022.<br />- A /tmp file created with the default umask is now 0660 (rw-rw—-) instead of 0644.<br />- My original cross-tenant test no longer works: a second account of mine, in a<br />different group, trying to read that file now gets &quot;Permission denied&quot;.
</p>

<p>
Since the issue was valid, reproducible, and cross-tenant before the fix, I&#039;d like to<br />request a small bounty for the report, at your discretion.
</p>

<p>
Thank you,<br />Sayada Zannat haque<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/364</link>
      <guid>https://security.alwaysdata.com/task/364</guid>
    </item>
        <item>
      <title>FS#363: Cross-tenant file disclosure via world-readable shared `/tmp` on alwaysdata SSH/web hosts</title>
      <author>Sayada Zannat Haque</author>
      <pubDate>Thu, 02 Jul 2026 14:01:18 +0000</pubDate>
      <description><![CDATA[
<p>
<strong>Vulnerability Name:</strong> Cross-tenant file disclosure via world-readable shared `/tmp` on alwaysdata <acronym title="Secure Shell">SSH</acronym>/web hosts
</p>

<p>
<strong>Severity:</strong> High<br /><strong>CVSS 4.0 vector:</strong> `CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:H/VI:N/VA:N/SC:H/SI:N/SA:N`<br /><strong>CVSS 4.0 score:</strong> ~8.2 (High)<br /><strong>Target:</strong> `ssh-&lt;account&gt;.alwaysdata.net` (physical <acronym title="Secure Shell">SSH</acronym> host `ssh1`) and the web-application hosts (`http21`) — kernel `6.18.30-alwaysdata`<br /><strong>Type:</strong> CWE-668 (Exposure of Resource to Wrong Sphere) / CWE-732 (Incorrect Permission Assignment) / CWE-200
</p>

<h5 id="description">Description</h5>
<div class="level5">

<p>
 On alwaysdata&#039;s shared hosting infrastructure every customer account on a given physical host shares a <strong>single, non-polyinstantiated `/tmp`</strong> directory (mode `drwxrwxrwt` / `1777`), while the platform <strong>default umask is `022`</strong> — so any file a customer writes into `/tmp` is created world-readable (`644`).
</p>

<p>
Account isolation on these hosts is enforced only by cgroups + per-account Unix UIDs, and <acronym title="Secure Shell">SSH</acronym> is explicitly <strong>not chrooted</strong> (per alwaysdata&#039;s own documentation). As a result, <strong>any customer — on any plan, including the free plan — can read any other customer&#039;s world-readable files in `/tmp` on the same physical host.</strong> This is a cross-tenant confidentiality boundary violation: it lets a low-privileged tenant passively harvest other tenants&#039; source code, configuration, and temporary artifacts.
</p>

<p>
The condition is confirmed on both the <acronym title="Secure Shell">SSH</acronym> tier (`ssh1`) and the web-application tier (`http21`), indicating it is fleet-wide. (Note: <acronym title="Hypertext Preprocessor">PHP</acronym> `session.save_path` is per-account, so live sessions are <strong>not</strong> exposed — which bounds this at High rather than Critical.)
</p>

<p>
 <strong>Exposed Endpoints / Affected Components</strong> 
</p>
<table class="inline">
	<tr>
		<td> Host / component </td><td> Path </td><td> Mode </td><td> Issue </td>
	</tr>
	<tr>
		<td>—</td><td>—</td><td>—</td><td>—</td>
	</tr>
	<tr>
		<td> <acronym title="Secure Shell">SSH</acronym> host `ssh1` </td><td> `/tmp` </td><td> `1777` (shared, not polyinstantiated) </td><td> other tenants&#039; world-readable files readable </td>
	</tr>
	<tr>
		<td> Web host `http21` </td><td> `/tmp` </td><td> `1777` (shared) </td><td> same exposure on the web tier </td>
	</tr>
	<tr>
		<td> Platform default </td><td> umask </td><td> `022` </td><td> new `/tmp` files created world-readable (`644`) </td>
	</tr>
</table>

<p>
<strong>Steps to Reproduce</strong>
</p>

<p>
Requires two accounts you control (`A` and `B`, different customers) that land on the same physical host. In this report `A` = `steve-william` (uid 530469), `B` = `test-domain` (uid 530478), both on `ssh1`.
</p>

<p>
1. Create two free alwaysdata accounts with different emails; enable <acronym title="Secure Shell">SSH</acronym> on each (Remote access → <acronym title="Secure Shell">SSH</acronym>).<br />2. <acronym title="Secure Shell">SSH</acronym> into account <strong>A</strong>: `ssh A@ssh-A.alwaysdata.net`.<br />3. As <strong>A</strong>, write a file into the shared `/tmp` (created world-readable due to default umask 022):
</p>
<pre class="code"> `echo &quot;SECRET_OF_A&quot; &gt; /tmp/canary_A.txt`</pre>

<p>
4. In a second terminal, <acronym title="Secure Shell">SSH</acronym> into account <strong>B</strong> (a *different* customer): `ssh B@ssh-B.alwaysdata.net`.<br />5. As <strong>B</strong>, confirm you are a different UID on the same host: `id; hostname`.<br />6. As <strong>B</strong>, read account A&#039;s file: `cat /tmp/canary_A.txt` → <strong>A&#039;s content is returned.</strong> 7. Enumerate the real cross-tenant exposure (metadata only): `find /tmp -maxdepth 1 -type f ! -user &quot;$(id -un)&quot; -readable`.
</p>

<p>
Observed live: as account B, <strong>65 files across 12 other live customer accounts</strong> were readable, including source archives (`*.tgz`), a config script (`inject_config.py`), an Omeka DB env file (`omeka_db_env_*`), financial PDFs, and cryptocurrency wallet backups. (No third-party file *content* was read — only names/owners/permissions were enumerated, per program rules.)
</p>

<p>
<strong>Proof of Concept (PoC)</strong>
</p>

<p>
Bash PoC Script, Python PoC Script, and other attachments are attached.
</p>

</div>

<h5 id="impact">Impact</h5>
<div class="level5">

<p>
 - Cross-tenant confidentiality breach affecting all customers sharing the same physical host.<br />- On the affected host (`ssh1`), approximately 882 customer home directories are co-located, allowing tenants to access world-readable temporary files belonging to other customers.<br />- Sensitive information that may be exposed includes source code, configuration files, temporary application data, and other confidential files.<br />- If a world-readable `.env` or configuration file contains database credentials, an attacker could use those credentials to access the victim&#039;s remotely reachable database (e.g., `mysql-&lt;account&gt;.alwaysdata.net:3306` or `postgresql-&lt;account&gt;.alwaysdata.net:5432`).<br />- This could lead to unauthorized access to another customer&#039;s database and the data stored within it.<br />- No other customers&#039; files, credentials, or databases were accessed during testing. The impact assessment is based solely on the demonstrated file exposure and the resulting attack path.
</p>

</div>

<h5 id="remediation">Remediation</h5>
<div class="level5">

<p>
 - Polyinstantiate `/tmp` (and `/var/tmp`) per account — e.g. `pam_namespace` with per-account instances, or a per-account-namespace private `tmpfs` — so each tenant sees an isolated `/tmp`.<br />- And/or set the platform default umask to `077`.<br />- Optionally enable `fs.protected_regular=2` and per-account `/tmp` reaping.
</p>

</div>
]]></description>
      <link>https://security.alwaysdata.com/task/363</link>
      <guid>https://security.alwaysdata.com/task/363</guid>
    </item>
        <item>
      <title>FS#362: Email Verification Bypass via Google OAuth Account Linking</title>
      <author>Subhash Kumawat</author>
      <pubDate>Wed, 01 Jul 2026 19:46:15 +0000</pubDate>
      <description><![CDATA[
<p>
Dear Security Team, I hope you are doing well. I would like to responsibly disclose a potential authentication and account-linking issue identified during testing of the Google OAuth login functionality. Vulnerability Summary Category: Authentication / Improper Account Verification Severity: High Description During testing, I observed that an account created using the traditional email and password registration process could be linked with a Google OAuth identity before the email address had been verified. Although the application continued to enforce email verification for password-based authentication, the Google OAuth account was successfully associated with the unverified profile. This behavior suggests that OAuth account linking occurs without first confirming that the email ownership verification process has been completed. Additionally, after the OAuth linking process, the application redirected to an OAuth callback endpoint that returned a 404 Page Not Found response, indicating an inconsistency in the authentication workflow. Steps to Reproduce
</p>

<p>
Register a new account using Email and Password.<br />Do not verify the email address.<br />Log out of the account.<br />Select Sign in with Google.<br />Authenticate using the same Google account associated with the registered email address.<br />Observe that the application sends the following notification: A (Google) OAuth connection has been configured on your profile.<br />Follow the OAuth authentication flow.<br />The application redirects to: /oauth/google/callback/<br />Observe that the endpoint returns: 404 - Page Not Found<br />Open a new browser session and attempt to log in using the original email and password.<br />The application still requires email verification before allowing password-based authentication. Observed Behavior • Google OAuth successfully links to the account before email verification is completed. • Email/password authentication continues to require email verification. • OAuth callback results in a 404 response, indicating an incomplete or inconsistent authentication flow. Expected Behavior The application should verify ownership of the registered email address before permitting external identity providers (such as Google OAuth) to be linked with the account, unless this behavior is explicitly intended. If OAuth login is intended to satisfy email ownership verification, the application should consistently mark the account as verified and complete the authentication flow without errors. Security Impact Depending on the intended authentication design, this behavior may result in: • Inconsistent authentication state. • Improper account-linking logic. • Potential bypass of email verification requirements. • Confusion regarding account ownership validation. • Increased attack surface if account-linking validation is not consistently enforced. Although I did not observe direct account takeover during testing, the current behavior indicates that the account verification and OAuth linking processes may not be consistently enforced. Recommendation I recommend reviewing the OAuth account-linking workflow to ensure that: • Email ownership verification is consistently enforced before linking external identity providers, or • Successful OAuth authentication is explicitly treated as verified email ownership and the account state is updated accordingly. • OAuth callback endpoints are correctly configured to prevent unexpected 404 responses. • Account verification logic remains consistent across all supported authentication methods. Conclusion The observed behavior suggests an inconsistency between the traditional email verification process and Google OAuth account linking. Reviewing the authentication workflow and enforcing consistent account verification logic will help reduce the risk of authentication-related issues and improve the overall security posture of the platform. This report is submitted under responsible disclosure. I would be happy to provide any additional information or assist with validation if required. Kind regards, Cyber_Subhash<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/362</link>
      <guid>https://security.alwaysdata.com/task/362</guid>
    </item>
        <item>
      <title>FS#361: Broken Access Control / Improper Authorization</title>
      <author>Subhash Kumawat</author>
      <pubDate>Wed, 01 Jul 2026 19:45:40 +0000</pubDate>
      <description><![CDATA[
<p>
Dear Security Team, I hope you are doing well. I would like to responsibly disclose a potential access control issue identified during testing of the user role and permission management functionality. Category: Broken Access Control / Improper Authorization Severity: High Description During testing, I observed that a user assigned only the Billing Contact role is able to invite additional users to the organization. Based on the role description, the Billing Contact permission is intended to provide access to billing-related functionality. However, the ability to invite new users appears to extend beyond the expected responsibilities of a billing-only role. This behavior may violate the Principle of Least Privilege by allowing a non-administrative user to perform account management actions. Steps to Reproduce
</p>

<p>
Log in as an account administrator.<br />Invite a new user with only the Billing Contact permission.<br />Log in using the Billing Contact account.<br />Navigate to the user or team management section.<br />Observe that the Billing Contact user is able to access the Invite User functionality.<br />Successfully initiate an invitation for another user. Expected Behavior A user assigned only the Billing Contact role should be restricted to billing-related operations and should not be able to invite or manage additional users unless explicitly intended by the role design. Actual Behavior The Billing Contact role is able to invite new users despite being intended for billing-related access. Security Impact If this behavior is not intended, it may allow: • Unauthorized user invitations. • Expansion of account access without administrator approval. • Circumvention of role separation. • Violation of the Principle of Least Privilege. • Increased risk of unauthorized account access. The overall impact depends on the permissions that can be granted to invited users. If elevated roles can be assigned, the security impact could be significantly higher. Recommendation To mitigate this issue, I recommend: • Restricting the Invite User functionality to administrative or dedicated user-management roles. • Reviewing role-based access control (RBAC) permissions to ensure Billing Contact users are limited to billing operations only. • Enforcing server-side authorization checks for all user management actions. • Verifying that non-administrative roles cannot perform account management functions unless explicitly intended. Conclusion The observed behavior suggests that the Billing Contact role may have broader privileges than expected by allowing user invitations. If this is not intended behavior, restricting user management capabilities to authorized administrative roles would improve the application’s access control model and better align with the Principle of Least Privilege. This report is submitted under responsible disclosure. I would be happy to provide additional information or assist with validation if required. Kind regards, Cyber_Subhash Security Researcher<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/361</link>
      <guid>https://security.alwaysdata.com/task/361</guid>
    </item>
        <item>
      <title>FS#360: User Enumeration via Password Reset Functionality</title>
      <author>Subhash Kumawat</author>
      <pubDate>Wed, 01 Jul 2026 19:45:00 +0000</pubDate>
      <description><![CDATA[
<p>
Dear Security Team,
</p>

<p>
I hope you are doing well.
</p>

<p>
I would like to responsibly disclose a security issue identified in the password reset functionality of your application. During testing, I observed that the application returns different responses for registered and non-registered email addresses, which allows an attacker to determine whether a specific email address is associated with a valid user account.
</p>

<p>
Severity:Medium
</p>

<p>
Category: Information Disclosure / User Enumeration
</p>

<p>
Description
</p>

<p>
The password reset endpoint responds differently based on whether the submitted email address exists in the system.
</p>

<p>
When a registered email address is entered, the application returns a successful password reset response. However, when an unregistered email address is submitted, the application returns a different error message indicating that the email address does not exist.
</p>

<p>
This behavior enables an attacker to enumerate valid user accounts by submitting multiple email addresses and comparing the application’s responses.
</p>

<p>
Steps to Reproduce
</p>

<p>
Navigate to the **Forgot Password page.<br />Enter a valid, registered email address.<br />Observe the success response indicating that a password reset email has been sent.<br />Repeat the process using an email address that is not registered.<br />Observe that the application returns a different response indicating that the email address does not exist.<br />Compare both responses and note that they reveal whether an email address is registered.<br />Proof of Concept
</p>

<p>
Registered Email
</p>

<p>
Email: registered@example.com
</p>

<p>
Response:<br />&quot;If an account exists, a password reset link has been sent.&quot;<br />Unregistered Email
</p>

<p>
Email: randomuser@example.com
</p>

<p>
Response:<br />&quot;Email address not found.&quot;<br />The difference in these responses allows an attacker to identify valid user accounts.
</p>

<p>
Security Impact
</p>

<p>
An attacker can exploit this behavior to:
</p>

<p>
Enumerate valid user accounts. Identify registered email addresses. Facilitate targeted phishing campaigns. Support credential stuffing or password spraying attacks. Gather intelligence for further attacks against identified users.
</p>

<p>
Although this issue does not directly expose user credentials, it increases the effectiveness of subsequent attacks by revealing valid account information.
</p>

<p>
Recommendation
</p>

<p>
To mitigate this issue:
</p>

<p>
Return the same generic response regardless of whether the email address exists. Use a consistent <acronym title="Hyper Text Transfer Protocol">HTTP</acronym> status code for both scenarios. Ensure response bodies, headers, and response timing are as similar as possible. A recommended response is:
</p>

<p>
“If an account exists for the provided email address, a password reset email will be sent.”
</p>

<p>
This approach prevents attackers from distinguishing between registered and unregistered email addresses.
</p>

<p>
Conclusion<br />The password reset functionality currently discloses account existence through differing responses. Standardizing the application’s responses for both valid and invalid email addresses will effectively prevent user enumeration and improve the overall security posture of the application.
</p>

<p>
I am submitting this report under responsible disclosure and would be happy to provide any additional information or assist with validation if required.
</p>

<p>
Kind regards,
</p>

<p>
Cyber_Subhash Security Researcher<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/360</link>
      <guid>https://security.alwaysdata.com/task/360</guid>
    </item>
        <item>
      <title>FS#359: DNSSEC Misconfiguration</title>
      <author>Subhash Kumawat</author>
      <pubDate>Wed, 01 Jul 2026 19:44:19 +0000</pubDate>
      <description><![CDATA[
<p>
Description: The DNSSEC (Domain Name System Security Extensions) configuration for the domain alwaysdata.com contains critical misconfigurations. DNSSEC is designed to safeguard <acronym title="Domain Name Server">DNS</acronym> data from attacks such as cache poisoning and man-in-the-middle (MITM) by ensuring authentication and data integrity through digital signatures.
</p>

<p>
However, the current implementation for alwaysdata.com is incomplete and improperly configured, rendering DNSSEC ineffective and exposing the domain to potential exploitation.
</p>

<p>
Findings: Upon detailed analysis of the domain’s <acronym title="Domain Name Server">DNS</acronym> records, the following issues were identified:
</p>

<p>
Unsigned DS Records: The Delegation Signer (DS) records in the parent zone are not correctly signed, breaking the essential chain of trust required for DNSSEC validation. Properly signed DS records are necessary to ensure the integrity of <acronym title="Domain Name Server">DNS</acronym> queries.
</p>

<p>
Invalid RRSIG Records: Several Resource Record Signature (RRSIG) entries in the <acronym title="Domain Name Server">DNS</acronym> zone are invalid, indicating key management or signing process failures. These invalid signatures compromise the authenticity and integrity guarantees provided by DNSSEC.
</p>

<p>
DNSKEY Mismatch: A mismatch exists between the DNSKEY records in the domain’s DNSKEY RRset and those provided in the delegation response from the parent zone. This inconsistency weakens the DNSSEC chain of trust, making the domain susceptible to tampering.
</p>

<p>
Steps to Reproduce:
</p>

<p>
Navigate to the DNSSEC debugging tool: <a href="https://dnssec-debugger.verisignlabs.com" class="urlextern" title="https://dnssec-debugger.verisignlabs.com"  rel="nofollow">https://dnssec-debugger.verisignlabs.com</a>
</p>

<p>
Enter the domain alwaysdata.com for analysis.
</p>

<p>
Observe the red-highlighted errors indicating DNSSEC misconfigurations and missing or invalid DNSSEC records.
</p>

<p>
Impact: Due to these misconfigurations, the domain ballerina.io is vulnerable to several security risks, including:
</p>

<p>
<acronym title="Domain Name Server">DNS</acronym> Cache Poisoning: Attackers can inject forged <acronym title="Domain Name Server">DNS</acronym> responses, redirecting users to malicious sites.
</p>

<p>
Man-in-the-Middle Attacks: Without valid DNSSEC validation, attackers can intercept and alter <acronym title="Domain Name Server">DNS</acronym> responses.
</p>

<p>
Domain Impersonation: Weak or broken DNSSEC allows attackers to impersonate legitimate services under the domain.
</p>

<p>
Data Tampering: <acronym title="Domain Name Server">DNS</acronym> records could be modified, leading to data leaks or loss of service integrity.
</p>

<p>
Reputation Damage: A compromised <acronym title="Domain Name Server">DNS</acronym> configuration undermines user trust and damages the organization’s credibility.<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/359</link>
      <guid>https://security.alwaysdata.com/task/359</guid>
    </item>
        <item>
      <title>FS#358: Inadequate Concurrent Sessions</title>
      <author>Subhash Kumawat</author>
      <pubDate>Wed, 01 Jul 2026 19:43:23 +0000</pubDate>
      <description><![CDATA[
<p>
Description:
</p>

<p>
The application <a href="https://admin.alwaysdata.com/login/" class="urlextern" title="https://admin.alwaysdata.com/login/"  rel="nofollow">https://admin.alwaysdata.com/login/</a> does not validate the number of active sessions per user, allowing multiple concurrent logins without any limitations. Additionally, the application fails to notify users when a new session is initiated from a different location or device. This issue poses significant security risks, especially in areas handling sensitive data, such as admin panels or personal user accounts.
</p>

<p>
Steps to Reproduce:
</p>

<p>
Login from Device A :
</p>

<p>
Navigate to <a href="https://admin.alwaysdata.com/login/" class="urlextern" title="https://admin.alwaysdata.com/login/"  rel="nofollow">https://admin.alwaysdata.com/login/</a> Enter valid credentials and log in.<br />Login from Device B :
</p>

<p>
Using a different device or browser (e.g., mobile phone or another computer), navigate to <a href="https://admin.alwaysdata.com/login/" class="urlextern" title="https://admin.alwaysdata.com/login/"  rel="nofollow">https://admin.alwaysdata.com/login/</a> Log in with the same user credentials used in Step 1.<br />Verify Active Sessions:
</p>

<p>
Observe that both sessions remain active simultaneously.<br />Note that the application does not notify the user about the new session from a different location/device.<br />Actual Behavior:
</p>

<p>
The application allows multiple concurrent sessions for a single user account without any limitations.<br />No notifications are sent to the user when a new session is initiated from a different location or device.<br />There is no mechanism to monitor or manage active sessions within the user account.<br />Expected Behavior:
</p>

<p>
The application should limit the number of active sessions per user to enhance security.<br />Users should receive notifications when a new session is initiated from a different location or device.<br />A session management page should be provided, allowing users to view and terminate active sessions.<br />Impact:
</p>

<p>
Non-Repudiation Risks : The lack of session notifications and limitations can lead to unauthorized access and actions that are difficult to dispute.<br />Increased Vulnerability : Multiple concurrent sessions increase the risk of unauthorized access, especially if one of the sessions is compromised.<br />Remediation:
</p>

<p>
User Notification : Notify users when a new session is initiated, especially from a different location or device, to raise awareness of active sessions.
</p>

<p>
Session Management Page : Provide users with a dedicated session management page to view and terminate active sessions for enhanced control.
</p>

<p>
IP Address Tracking and Restrictions :
</p>

<p>
Track the IP addresses associated with each session and flag any suspicious activity, such as multiple logins from different locations.<br />Allow users to specify trusted IP addresses or ranges, restricting session initiation to known and approved locations.<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/358</link>
      <guid>https://security.alwaysdata.com/task/358</guid>
    </item>
        <item>
      <title>FS#357: Bug Bounty Report : MTA-STS Missing</title>
      <author>Subhash Kumawat</author>
      <pubDate>Wed, 01 Jul 2026 19:41:35 +0000</pubDate>
      <description><![CDATA[
<p>
Bug Description: Upon examining the <acronym title="Domain Name Server">DNS</acronym> (Domain Name System) records for the domain alwaysdata.com , it has come to my attention that the MTA-STS record is missing . The MTA-STS mechanism is designed to enforce secure email communication by requiring the use of <acronym title="Transport Layer Security">TLS</acronym> (Transport Layer Security) encryption. However, in this case, the absence of the MTA-STS record exposes the email infrastructure to potential security vulnerabilities.
</p>

<p>
Expected Behavior: The MTA-STS record should be correctly configured and published in the <acronym title="Domain Name Server">DNS</acronym> records for the domain [Domain Name]. It is essential for secure email communication and enforcing <acronym title="Transport Layer Security">TLS</acronym> encryption for all incoming and outgoing email traffic.
</p>

<p>
Steps to Reproduce:
</p>

<p>
Navigate this url <a href="https://easydmarc.com/tools/mta-sts-check" class="urlextern" title="https://easydmarc.com/tools/mta-sts-check"  rel="nofollow">https://easydmarc.com/tools/mta-sts-check</a> and enter your domain name alwaysdata.com
</p>

<p>
Observe the absence of the MTA-STS record in the <acronym title="Domain Name Server">DNS</acronym> response. No record was found, indicating that the MTA-STS record is not present in the <acronym title="Domain Name Server">DNS</acronym> configuration.
</p>

<p>
Impact: The absence of an MTA-STS record leaves the email infrastructure vulnerable to various security risks, such as downgrade attacks, man-in-the-middle attacks, and interception of sensitive email content. Without the MTA-STS mechanism in place, email communications may be transmitted over unencrypted channels, compromising the confidentiality and integrity of the data.<br />
</p>
]]></description>
      <link>https://security.alwaysdata.com/task/357</link>
      <guid>https://security.alwaysdata.com/task/357</guid>
    </item>
      </channel>
</rss>
