Sad Tux - Windows bias detected
This page contains Windows bias

About This Page

This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.

Bias Analysis

Detected Bias Types
windows_first
windows_tools
missing_linux_example
Summary
The documentation page demonstrates a subtle Windows bias. Windows authentication is listed as a primary authentication method, and the only OS-specific authentication example provided is for Windows (with domain\user syntax). There is no mention of Linux-specific authentication scenarios or examples, nor is there guidance for Linux users on how to obtain or use credentials. Additionally, the use of Windows-centric patterns (such as domain\user) and the absence of Linux command-line or tool references (e.g., curl, wget, or Linux-based token retrieval) reinforce this bias.
Recommendations
  • Add explicit Linux authentication examples, such as using Kerberos or NTLM from Linux environments, or clarify cross-platform support for authentication types.
  • Provide equivalent Linux command-line examples for obtaining access tokens (e.g., using curl or httpie instead of only referencing Postman).
  • Clarify whether Windows authentication is supported from non-Windows integration runtimes, and if so, provide Linux-specific configuration guidance.
  • When listing authentication types, avoid putting 'Windows' before more cross-platform options, or clarify their applicability to different OSes.
  • Include a note or section on best practices for Linux users, especially for common scenarios like service principal authentication or API key usage.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2026-01-14 00:00 #250 in_progress Clean Clean
2026-01-13 00:00 #246 completed Clean Clean
2026-01-11 00:00 #240 completed Clean Clean
2026-01-10 00:00 #237 completed Clean Clean
2026-01-09 00:34 #234 completed Clean Clean
2026-01-08 00:53 #231 completed Clean Clean
2026-01-06 18:15 #225 cancelled Clean Clean
2025-09-08 00:00 #105 completed Clean Clean
2025-08-17 00:01 #83 cancelled Clean Clean
2025-07-13 21:37 #48 completed Biased Biased
2025-07-09 13:09 #3 cancelled Clean Clean
2025-07-08 04:23 #2 cancelled Biased Biased

Flagged Code Snippets

{
    "name": "ODataLinkedService",
    "properties": {
        "type": "OData",
        "typeProperties": {
            "url": "<endpoint of OData source>",
            "authenticationType": "Windows",
            "userName": "<domain>\\<user>",
            "password": {
                "type": "SecureString",
                "value": "<password>"
            }
        },
        "connectVia": {
            "referenceName": "<name of Integration Runtime>",
            "type": "IntegrationRuntimeReference"
        }
    }
}