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
missing_linux_example
Summary
The documentation demonstrates subtle Windows bias by using Windows-style file paths (e.g., 'c:/certs/member0_cert.pem') in CLI examples and omitting equivalent Linux file path examples. While the prerequisites mention OpenSSL on both Windows and Linux, the command examples only show Windows conventions, which may confuse or inconvenience Linux users.
Recommendations
  • Provide parallel CLI examples using Linux-style file paths (e.g., '/home/user/certs/member0_cert.pem') alongside Windows examples.
  • Explicitly state that file paths should be adapted to the user's operating system.
  • Consider including a note or table clarifying file path differences between Windows and Linux.
  • Ensure that any referenced scripts or commands are cross-platform or provide platform-specific variants as needed.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2025-07-13 21:37 #48 completed Biased Biased
2025-07-12 23:44 #41 cancelled Biased Biased
2025-07-09 13:09 #3 cancelled Clean Clean
2025-07-08 04:23 #2 cancelled Biased Biased

Flagged Code Snippets

az confidentialledger managedccfs create --name "<your-unique-managed-ccf-name>" --resource-group "myResourceGroup" --location "southcentralus" --members "[{certificate:'c:/certs/member0_cert.pem',identifier:'it-admin',group:'IT'},{certificate:'c:/certs/member1_cert.pem',identifier:'finance-admin',group:'Finance'}]"