# devskim **Repository Path**: mirrors/devskim ## Basic Information - **Project Name**: devskim - **Description**: DevSkim 是 IDE 扩展和语言分析器的框架,可在开发人员编写代码时在开发环境中提供内联安全分析 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: main - **Homepage**: https://www.oschina.net/p/devskim - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-08 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DevSkim [![Nuget](https://img.shields.io/nuget/v/Microsoft.CST.DevSkim.CLI?label=CLI&logo=NuGet)](https://www.nuget.org/packages/Microsoft.CST.DevSkim.CLI) [![Visual Studio 2022 Version](https://img.shields.io/visual-studio-marketplace/v/MS-CST-E.MicrosoftDevSkim?logo=Visual%20Studio&label=VS)](https://marketplace.visualstudio.com/items?itemName=MS-CST-E.vscode-devskim) [![Visual Studio Code Version](https://img.shields.io/visual-studio-marketplace/v/MS-CST-E.vscode-devskim?logo=Visual%20Studio%20Code&label=VSCode)](https://marketplace.visualstudio.com/items?itemName=MS-CST-E.vscode-devskim) [![Nuget CLI Installs](https://img.shields.io/nuget/dt/Microsoft.CST.DevSkim.CLI?logo=NuGet)](https://www.nuget.org/packages/Microsoft.CST.DevSkim.CLI) [![Visual Studio Installs](https://img.shields.io/visual-studio-marketplace/i/MS-CST-E.MicrosoftDevSkim?logo=Visual%20Studio)](https://marketplace.visualstudio.com/items?itemName=MS-CST-E.MicrosoftDevSkim) [![Visual Studio Code Installs](https://img.shields.io/visual-studio-marketplace/i/MS-CST-E.vscode-devskim?logo=Visual%20Studio%20Code)](https://marketplace.visualstudio.com/items?itemName=MS-CST-E.vscode-devskim) DevSkim is a framework of IDE extensions and language analyzers that provide inline security analysis in the dev environment as the developer writes code. It has a flexible rule model that supports multiple programming languages. The goal is to notify the developer as they are introducing a security vulnerability in order to fix the issue at the point of introduction, and to help build awareness for the developer. ![](./DevSkim-VSCode-Plugin/vsc-example.gif) ### Features * Built-in rules, and support for writing custom rules * Cross-platform CLI built on .NET for file analysis * IDE plugins for Visual Studio and Visual Studio Code built on Language Server Protocol * IntelliSense error "squiggly lines" for identified security issues * Information and guidance provided for identified security issues * Optional suppression of unwanted findings * Support for JSONPath, XPATH and YmlPath based rules * Broad language support including: C, C++, C#, Cobol, Go, Java, Javascript/Typescript, Python, and [more](https://github.com/Microsoft/DevSkim/wiki/Supported-Languages). ### Repository Structure This repository contains DevSkim and its official supported plugins. Issues and contributions are accepted here for: * DevSkim Library * Location: `./DevSkim-DotNet/` * DevSkim CLI * Location: `./DevSkim-DotNet/Microsoft.DevSkim.CLI/` * DevSkim Visual Studio Extension * Location: `./DevSkim-DotNet/Microsoft.DevSkim.VisualStudio/` * DevSkim Visual Studio Code Plugin * Location: `./DevSkim-VSCode-Plugin/` * Default Rules and Guidance * Location: `./rules/default/` ## Official Releases The C# library is available on NuGet as [Microsoft.CST.DevSkim](https://www.nuget.org/packages/Microsoft.CST.DevSkim/). The .NET Global Tool is available on NuGet as [Microsoft.CST.DevSkim.CLI](https://www.nuget.org/packages/Microsoft.CST.DevSkim.CLI/). The Visual Studio extension is available in the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=MS-CST-E.MicrosoftDevSkim). The Visual Studio Code plugin is available in the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=MS-CST-E.vscode-devskim). DevSkim is also available as a [GitHub Action](https://github.com/microsoft/DevSkim-Action) to integrate with the GitHub Security Issues pane. Platform specific binaries of the DevSkim CLI are also available on our GitHub [releases page](https://github.com/microsoft/DevSkim/releases). ## Installation ### Visual Studio Extension The DevSkim Visual Studio extension can be downloaded and installed from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=MS-CST-E.MicrosoftDevSkim). Alternatively, in Visual Studio, open the Extension Manager (Menu: Extensions -> Manage Extensions), search for "Microsoft DevSkim", select the entry, and click on the Download button. ### Visual Studio Code Plugin The DevSkim Visual Studio Code plugin can be downloaded and installed from the [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=MS-CST-E.vscode-devskim). Alternatively, In VS Code, launch the Quick Open bar (Ctrl + P), and run the following command: ext install ms-cst-e.vscode-devskim ### Command Line Interface #### .NET Core Global Tool (Recommended) If you already have the .NET SDK installed, you can install the DevSkim CLI as a dotnet global tool by running the following from a command line: `dotnet tool install --global Microsoft.CST.DevSkim.CLI` This will add DevSkim to your PATH. You can then invoke `devskim` from a command line. #### .NET Core App (Self Contained) Download the platform specific binary archive for your system (Windows, Mac OS, Linux) from the [releases page](https://github.com/microsoft/DevSkim/releases). Extract the archive, navigate to the DevSkim folder from a command line, and invoke `devskim` or `devskim.exe`. #### .NET Core Runtime Dependent App First download and install the [Latest .NET runtime](https://dotnet.microsoft.com/). Then download the DevSkim netcoreapp archive from the [releases page](https://github.com/microsoft/DevSkim/releases). Extract the archive, navigate to the DevSkim folder from a command line, and invoke `dotnet devskim.dll`. ## Build from Source For more information, see the wiki page about how to [Build from Source](https://github.com/microsoft/DevSkim/wiki/Build-from-Source). ## Basic Usage ### DevSkim CLI `devskim analyze --source-code c:\path\to\FilesToAnalyze` For more information, see the wiki page about the [Command Line Interface](https://github.com/microsoft/DevSkim/wiki/Command-Line-Interface). ### Visual Studio Extension / Visual Studio Code Plugin Once the DevSkim plugin is installed and enabled, simply write some code, and feedback will be provided inline if issues are detected. ## Writing Rules Please see [Writing Rules](https://github.com/Microsoft/DevSkim/wiki/Writing-Rules) for instructions on how to author rules. ## Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com. When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. For more information, please see [How to Contribute](https://github.com/Microsoft/DevSkim/wiki/How-to-Contribute). ## Reporting Issues For more information, please see [How to Contribute](https://github.com/Microsoft/DevSkim/wiki/How-to-Contribute). ### Reporting Security Vulnerabilities To report a security vulnerability, please see [SECURITY.md](https://github.com/microsoft/DevSkim/blob/master/SECURITY.md). ## License DevSkim and its official plugins are licensed under the [MIT license](https://github.com/microsoft/DevSkim/blob/master/LICENSE.txt). ## Privacy Usage of this application is governed by the [Microsoft Privacy Statement](https://https://go.microsoft.com/fwlink/?LinkId=521839).