Vulnerability findings for the public-facing infrastructure of web.telegram.org
01 Executive overview Severity distribution across 294 findings
02 Top findings Ranked by severity
Highest-impact issues identified during the assessment (non-informational), ordered by severity.
| # | Severity | Finding | Affected | Instances |
|---|---|---|---|---|
| 01 | Medium | Content Security Policy (CSP) Header Not Set | web.telegram.org | 1 |
| 02 | Low | Cross-Origin-Embedder-Policy Header Missing or Invalid | web.telegram.org | 1 |
| 03 | Low | Cross-Origin-Opener-Policy Header Missing or Invalid | web.telegram.org | 1 |
| 04 | Low | Cross-Origin-Resource-Policy Header Missing or Invalid | web.telegram.org | 5 |
| 05 | Low | Dangerous JS Functions | web.telegram.org | 1 |
| 06 | Low | Permissions Policy Header Not Set | web.telegram.org | 2 |
| 07 | Low | Server Leaks Version Information via "Server" HTTP Response Header Field | web.telegram.org | 5 |
| 08 | Low | Strict-Transport-Security Header Not Set | web.telegram.org | 5 |
| 09 | Low | Timestamp Disclosure - Unix | web.telegram.org | 5 |
| 10 | Low | X-Content-Type-Options Header Missing | web.telegram.org | 5 |
| 11 | Informational | Modern Web Application | web.telegram.org | 3 |
| 12 | Informational | Non-Storable Content | web.telegram.org | 1 |
| 13 | Informational | Re-examine Cache-control Directives | web.telegram.org | 2 |
| 14 | Informational | Storable and Cacheable Content | web.telegram.org | 5 |
03 Findings Detailed observations, ordered by severity
Each finding records what was observed, where it was observed, and supporting evidence from the scanning toolchain.
Content Security Policy (CSP) Header Not Set
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header.
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CSP
- https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html
- https://www.w3.org/TR/CSP/
- https://w3c.github.io/webappsec-csp/
- https://web.dev/articles/csp
- https://caniuse.com/#feat=contentsecuritypolicy
- https://content-security-policy.com/
Cross-Origin-Embedder-Policy Header Missing or Invalid
Cross-Origin-Embedder-Policy header is a response header that prevents a document from loading any cross-origin resources that don't explicitly grant the document permission (using CORP or CORS).
Ensure that the application/web server sets the Cross-Origin-Embedder-Policy header appropriately, and that it sets the Cross-Origin-Embedder-Policy header to 'require-corp' for documents.
If possible, ensure that the end user uses a standards-compliant and modern web browser that supports the Cross-Origin-Embedder-Policy header (https://caniuse.com/mdn-http_headers_cross-origin-embedder-policy).
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Cross-Origin-Embedder-Policy
Cross-Origin-Opener-Policy Header Missing or Invalid
Cross-Origin-Opener-Policy header is a response header that allows a site to control if others included documents share the same browsing context. Sharing the same browsing context with untrusted documents might lead to data leak.
Ensure that the application/web server sets the Cross-Origin-Opener-Policy header appropriately, and that it sets the Cross-Origin-Opener-Policy header to 'same-origin' for documents.
'same-origin-allow-popups' is considered as less secured and should be avoided.
If possible, ensure that the end user uses a standards-compliant and modern web browser that supports the Cross-Origin-Opener-Policy header (https://caniuse.com/mdn-http_headers_cross-origin-opener-policy).
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Cross-Origin-Opener-Policy
Cross-Origin-Resource-Policy Header Missing or Invalid
Cross-Origin-Resource-Policy header is an opt-in header designed to counter side-channels attacks like Spectre. Resource should be specifically set as shareable amongst different origins.
Ensure that the application/web server sets the Cross-Origin-Resource-Policy header appropriately, and that it sets the Cross-Origin-Resource-Policy header to 'same-origin' for all web pages.
'same-site' is considered as less secured and should be avoided.
If resources must be shared, set the header to 'cross-origin'.
If possible, ensure that the end user uses a standards-compliant and modern web browser that supports the Cross-Origin-Resource-Policy header (https://caniuse.com/mdn-http_headers_cross-origin-resource-policy).
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Cross-Origin-Embedder-Policy
Dangerous JS Functions
A dangerous JS function seems to be in use that would leave the site vulnerable.
See the references for security advice on the use of these functions.
- https://v17.angular.io/guide/security
Permissions Policy Header Not Set
Permissions Policy Header is an added layer of security that helps to restrict from unauthorized access or usage of browser/client features by web resources. This policy ensures the user privacy by limiting or specifying the features of the browsers can be used by the web resources. Permissions Policy provides a set of standard HTTP headers that allow website owners to limit which features of browsers can be used by the page such as camera, microphone, location, full screen etc.
Ensure that your web server, application server, load balancer, etc. is configured to set the Permissions-Policy header.
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Permissions-Policy
- https://developer.chrome.com/blog/feature-policy/
- https://scotthelme.co.uk/a-new-security-header-feature-policy/
- https://w3c.github.io/webappsec-feature-policy/
- https://www.smashingmagazine.com/2018/12/feature-policy/
Server Leaks Version Information via "Server" HTTP Response Header Field
The web/application server is leaking version information via the "Server" HTTP response header. Access to such information may facilitate attackers identifying other vulnerabilities your web/application server is subject to.
Ensure that your web server, application server, load balancer, etc. is configured to suppress the "Server" header or provide generic details.
- https://httpd.apache.org/docs/current/mod/core.html#servertokens
- https://learn.microsoft.com/en-us/previous-versions/msp-n-p/ff648552(v=pandp.10)
- https://www.troyhunt.com/shhh-dont-let-your-response-headers/
Strict-Transport-Security Header Not Set
HTTP Strict Transport Security (HSTS) is a web security policy mechanism whereby a web server declares that complying user agents (such as a web browser) are to interact with it using only secure HTTPS connections (i.e. HTTP layered over TLS/SSL). HSTS is an IETF standards track protocol and is specified in RFC 6797.
Ensure that your web server, application server, load balancer, etc. is configured to enforce Strict-Transport-Security.
- https://cheatsheetseries.owasp.org/cheatsheets/HTTP_Strict_Transport_Security_Cheat_Sheet.html
- https://owasp.org/www-community/Security_Headers
- https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security
- https://caniuse.com/stricttransportsecurity
- https://datatracker.ietf.org/doc/html/rfc6797
Timestamp Disclosure - Unix
A timestamp was disclosed by the application/web server. - Unix
Manually confirm that the timestamp data is not sensitive, and that the data cannot be aggregated to disclose exploitable patterns.
- https://cwe.mitre.org/data/definitions/200.html
X-Content-Type-Options Header Missing
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.
If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
- https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/compatibility/gg622941(v=vs.85)
- https://owasp.org/www-community/Security_Headers
Modern Web Application
The application appears to be a modern web application. If you need to explore it automatically then the Ajax Spider may well be more effective than the standard one.
This is an informational alert and so no changes are required.
Non-Storable Content
The response contents are not storable by caching components such as proxy servers. If the response does not contain sensitive, personal or user-specific information, it may benefit from being stored and cached, to improve performance.
The content may be marked as storable by ensuring that the following conditions are satisfied:
The request method must be understood by the cache and defined as being cacheable ("GET", "HEAD", and "POST" are currently defined as cacheable)
The response status code must be understood by the cache (one of the 1XX, 2XX, 3XX, 4XX, or 5XX response classes are generally understood)
The "no-store" cache directive must not appear in the request or response header fields
For caching by "shared" caches such as "proxy" caches, the "private" response directive must not appear in the response
For caching by "shared" caches such as "proxy" caches, the "Authorization" header field must not appear in the request, unless the response explicitly allows it (using one of the "must-revalidate", "public", or "s-maxage" Cache-Control response directives)
In addition to the conditions above, at least one of the following conditions must also be satisfied by the response:
It must contain an "Expires" header field
It must contain a "max-age" response directive
For "shared" caches such as "proxy" caches, it must contain a "s-maxage" response directive
It must contain a "Cache Control Extension" that allows it to be cached
It must have a status code that is defined as cacheable by default (200, 203, 204, 206, 300, 301, 404, 405, 410, 414, 501).
- https://datatracker.ietf.org/doc/html/rfc7234
- https://datatracker.ietf.org/doc/html/rfc7231
- https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html
Re-examine Cache-control Directives
The cache-control header has not been set properly or is missing, allowing the browser and proxies to cache content. For static assets like css, js, or image files this might be intended, however, the resources should be reviewed to ensure that no sensitive content will be cached.
For secure content, ensure the cache-control HTTP header is set with "no-cache, no-store, must-revalidate". If an asset should be cached consider setting the directives "public, max-age, immutable".
- https://cheatsheetseries.owasp.org/cheatsheets/Session_Management_Cheat_Sheet.html#web-content-caching
- https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Cache-Control
- https://grayduck.mn/2021/09/13/cache-control-recommendations/
Storable and Cacheable Content
The response contents are storable by caching components such as proxy servers, and may be retrieved directly from the cache, rather than from the origin server by the caching servers, in response to similar requests from other users. If the response data is sensitive, personal or user-specific, this may result in sensitive information being leaked. In some cases, this may even result in a user gaining complete control of the session of another user, depending on the configuration of the caching components in use in their environment. This is primarily an issue where "shared" caching servers such as "proxy" caches are configured on the local network. This configuration is typically found in corporate or educational environments, for instance.
Validate that the response does not contain sensitive, personal or user-specific information. If it does, consider the use of the following HTTP response headers, to limit, or prevent the content being stored and retrieved from the cache by another user:
Cache-Control: no-cache, no-store, must-revalidate, private
Pragma: no-cache
Expires: 0
This configuration directs both HTTP 1.0 and HTTP 1.1 compliant caching servers to not store the response, and to not retrieve the response (without validation) from the cache, in response to a similar request.
- https://datatracker.ietf.org/doc/html/rfc7234
- https://datatracker.ietf.org/doc/html/rfc7231
- https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html
04 Network & transport 280 observations
| # | Endpoint | Service | Detail | Severity |
|---|---|---|---|---|
| N-01 | 149.154.167.99:443 | https | Service https on 149.154.167.99:443/tcp | Info |
| N-02 | 149.154.167.99:80 | http | Service http on 149.154.167.99:80/tcp | Info |
| N-03 | https://web.telegram.org/ | Status 200 | Nginx:1.30.1 | Info |
| N-04 | zws2-1.web.telegram.org | subfinder | source: hackertarget | Info |
| N-05 | zws3.web.telegram.org | subfinder | source: hackertarget | Info |
| N-06 | zws5.web.telegram.org | subfinder | source: hackertarget | Info |
| N-07 | pluto.web.telegram.org | subfinder | source: hackertarget | Info |
| N-08 | zws4.web.telegram.org | subfinder | source: hackertarget | Info |
| N-09 | zws2.web.telegram.org | subfinder | source: hackertarget | Info |
| N-10 | zws3-1.web.telegram.org | subfinder | source: hackertarget | Info |
| N-11 | zws5-1.web.telegram.org | subfinder | source: hackertarget | Info |
| N-12 | zws1.web.telegram.org | subfinder | source: hackertarget | Info |
| N-13 | kws3-1.web.telegram.org | subfinder | source: hackertarget | Info |
| N-14 | venus.web.telegram.org | subfinder | source: hackertarget | Info |
| N-15 | zws4-1.web.telegram.org | subfinder | source: hackertarget | Info |
| N-16 | chat.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-17 | gcp.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-18 | my.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-19 | portal.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-20 | v3.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-21 | stats.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-22 | assets.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-23 | autoconfig.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-24 | imap.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-25 | s3.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-26 | shop.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-27 | smtp.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-28 | stream.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-29 | ci.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-30 | dns2.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-31 | track.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-32 | v2.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-33 | v3.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-34 | webmail.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-35 | alpha.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-36 | autodiscover.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-37 | edge.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-38 | mail.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-39 | sandbox.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-40 | ww1.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-41 | grafana.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-42 | click.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-43 | ns2.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-44 | prometheus.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-45 | admin.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-46 | aurora-1.web.telegram.org | subfinder | source: submd | Info |
| N-47 | ci.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-48 | kws2.web.telegram.org | subfinder | source: submd | Info |
| N-49 | my.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-50 | store.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-51 | dev.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-52 | gateway.flora.web.telegram.org | subfinder | source: submd | Info |
| N-53 | kws3.web.telegram.org | subfinder | source: submd | Info |
| N-54 | webmail.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-55 | git.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-56 | hub.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-57 | images.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-58 | owa.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-59 | autoconfig.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-60 | docs.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-61 | grafana.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-62 | mail1.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-63 | ww1.flora.web.telegram.org | subfinder | source: submd | Info |
| N-64 | ww2.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-65 | ads.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-66 | kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-67 | public.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-68 | staging.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-69 | k8s.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-70 | news.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-71 | preview.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-72 | prometheus.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-73 | stats.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-74 | files.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-75 | monitor.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-76 | status.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-77 | upload.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-78 | smtp.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-79 | storage.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-80 | db.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-81 | downloads.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-82 | ns2.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-83 | alpha.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-84 | ads.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-85 | kws1.web.telegram.org | subfinder | source: submd | Info |
| N-86 | ns3.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-87 | portal.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-88 | azure.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-89 | kws4.web.telegram.org | subfinder | source: submd | Info |
| N-90 | owa.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-91 | support.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-92 | db.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-93 | login.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-94 | shop.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-95 | store.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-96 | autoconfig.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-97 | data.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-98 | kws5.web.telegram.org | subfinder | source: submd | Info |
| N-99 | monitor.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-100 | stream.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-101 | admin.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-102 | app.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-103 | test.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-104 | api.flora.web.telegram.org | subfinder | source: submd | Info |
| N-105 | v1.flora.web.telegram.org | subfinder | source: submd | Info |
| N-106 | www.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-107 | beta.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-108 | dns1.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-109 | img.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-110 | mx.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-111 | owa.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-112 | git.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-113 | private.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-114 | blog.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-115 | imap.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-116 | k8s.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-117 | test.flora.web.telegram.org | subfinder | source: submd | Info |
| N-118 | web.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-119 | int.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-120 | mail2.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-121 | sandbox.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-122 | stats.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-123 | v3.flora.web.telegram.org | subfinder | source: submd | Info |
| N-124 | account.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-125 | beta.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-126 | cdn.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-127 | gcp.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-128 | git.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-129 | go.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-130 | store.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-131 | edge.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-132 | kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-133 | cloud.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-134 | dns1.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-135 | grafana.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-136 | status.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-137 | cdn.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-138 | storage.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-139 | www.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-140 | dns.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-141 | secure.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-142 | vpn.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-143 | azure.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-144 | cloud.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-145 | forum.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-146 | my.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-147 | smtp.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-148 | support.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-149 | ww2.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-150 | aws.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-151 | dns.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-152 | live.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-153 | mail.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-154 | web.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-155 | cdn.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-156 | chat.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-157 | dns.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-158 | home.flora.web.telegram.org | subfinder | source: submd | Info |
| N-159 | pop.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-160 | preview.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-161 | vesta.web.telegram.org | subfinder | source: submd | Info |
| N-162 | beta.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-163 | live.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-164 | mail1.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-165 | media.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-166 | store.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-167 | ww1.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-168 | ads.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-169 | blog.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-170 | click.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-171 | git.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-172 | smtp.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-173 | v3.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-174 | aws.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-175 | cdn.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-176 | git.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-177 | s3.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-178 | sql.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-179 | storage.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-180 | v1.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-181 | account.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-182 | analytics.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-183 | click.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-184 | secure.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-185 | files.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-186 | sandbox.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-187 | video.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-188 | admin.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-189 | click.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-190 | edge.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-191 | ftp.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-192 | v1.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-193 | v2.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-194 | home.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-195 | webmail.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-196 | blog.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-197 | ns1.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-198 | sandbox.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-199 | ww2.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-200 | gateway.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-201 | internal.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-202 | support.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-203 | zws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-204 | app.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-205 | home.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-206 | admin.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-207 | git.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-208 | prometheus.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-209 | v1.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-210 | vpn.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-211 | web.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-212 | kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-213 | mail.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-214 | public.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-215 | kubernetes.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-216 | news.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-217 | ns3.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-218 | smtp.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-219 | dns.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-220 | aurora.web.telegram.org | subfinder | source: submd | Info |
| N-221 | edge.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-222 | int.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-223 | pluto-1.web.telegram.org | subfinder | source: submd | Info |
| N-224 | gitlab.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-225 | origin.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-226 | pop.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-227 | gateway.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-228 | k8s.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-229 | test.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-230 | venus-1.web.telegram.org | subfinder | source: submd | Info |
| N-231 | demo.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-232 | dns1.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-233 | monitor.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-234 | sql.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-235 | video.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-236 | autoconfig.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-237 | k8s.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-238 | aws.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-239 | data.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-240 | downloads.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-241 | edge.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-242 | shop.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-243 | autodiscover.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-244 | go.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-245 | home.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-246 | ns4.flora-1.web.telegram.org | subfinder | source: submd | Info |
| N-247 | portal.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-248 | s3.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-249 | static.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-250 | azure.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-251 | docs.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-252 | mx.kws1-1.web.telegram.org | subfinder | source: submd | Info |
| N-253 | ns1.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-254 | preview.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-255 | prod.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-256 | prod.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-257 | staging.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-258 | staging.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-259 | api.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-260 | api.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-261 | chat.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-262 | dev.flora.web.telegram.org | subfinder | source: submd | Info |
| N-263 | gcp.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-264 | prod.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-265 | sql.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-266 | api.kws1.web.telegram.org | subfinder | source: submd | Info |
| N-267 | grafana.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-268 | hub.kws4.web.telegram.org | subfinder | source: submd | Info |
| N-269 | demo.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-270 | external.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-271 | owa.kws4-1.web.telegram.org | subfinder | source: submd | Info |
| N-272 | test.kws2-1.web.telegram.org | subfinder | source: submd | Info |
| N-273 | web.kws3.web.telegram.org | subfinder | source: submd | Info |
| N-274 | downloads.kws5.web.telegram.org | subfinder | source: submd | Info |
| N-275 | stream.kws5-1.web.telegram.org | subfinder | source: submd | Info |
| N-276 | vpn.kws2.web.telegram.org | subfinder | source: submd | Info |
| N-277 | flora-1.web.telegram.org | subfinder | source: thc | Info |
| N-278 | kws4-1.web.telegram.org | subfinder | source: thc | Info |
| N-279 | vesta-1.web.telegram.org | subfinder | source: thc | Info |
| N-280 | flora.web.telegram.org | subfinder | source: thc | Info |
05 Additional informational findings 0 items
| # | Finding | Affected | Instances |
|---|