PowerPagesSecurityAnalyzer 1.0.9

dotnet add package PowerPagesSecurityAnalyzer --version 1.0.9
                    
NuGet\Install-Package PowerPagesSecurityAnalyzer -Version 1.0.9
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PowerPagesSecurityAnalyzer" Version="1.0.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PowerPagesSecurityAnalyzer" Version="1.0.9" />
                    
Directory.Packages.props
<PackageReference Include="PowerPagesSecurityAnalyzer" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PowerPagesSecurityAnalyzer --version 1.0.9
                    
#r "nuget: PowerPagesSecurityAnalyzer, 1.0.9"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PowerPagesSecurityAnalyzer@1.0.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PowerPagesSecurityAnalyzer&version=1.0.9
                    
Install as a Cake Addin
#tool nuget:?package=PowerPagesSecurityAnalyzer&version=1.0.9
                    
Install as a Cake Tool

Power Pages Security Analyzer

A lightweight XrmToolBox plugin to analyze Power Pages (Dataverse) security configuration.

This tool helps identify potential risks in:

  • Table Permissions
  • Web Roles
  • Parent Permission Chains
  • Web API exposure (Site Settings)

🚀 Features

  • 🔍 Analyze Table Permissions and Web Roles
  • ⚠️ Detect risky configurations (e.g. Anonymous + Global + Write)
  • 🔗 Visualize relationships between Roles → Permissions → Tables
  • 🧠 Identify broken or complex Parent chains
  • 🌐 Highlight Web API exposure per table
  • 📊 Generate structured security insights

🧠 Why this tool?

Power Pages security setups can become complex over time due to:

  • multiple Web Roles
  • nested Parent permissions
  • global access rules
  • API exposure

This tool provides transparency and clarity, helping teams:

  • reduce security risks
  • simplify configurations
  • understand access flows

🏗️ Architecture

The plugin is structured into:

  • Core → models, services, analysis logic
  • Plugin → XrmToolBox integration
  • UI → tabs and graph visualization
  • Graph → interactive rendering (WebView2 + Cytoscape.js)

📦 Installation (Development)

  1. Clone the repository
  2. Open the solution in Visual Studio 2022
  3. Build the project
  4. Copy the compiled .dll from:
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.9 169 5/9/2026
1.0.8 92 5/7/2026

Initial release with dashboard, graph visualization, risk analysis and Power Pages site filtering
v1.0.5 - Fix Icon Url and update dependencies.
v1.0.7 - Fixed packaging issue (removed unwanted DLLs)
- Fixed version mismatch for XrmToolBox validation.

v1.0.8 - This release focuses on stabilizing the plugin and ensuring full compatibility with XrmToolBox validation requirements.
- Fixed incorrect file paths when loading UI resources (index.html, scripts, styles)
- Aligned runtime and packaged folder structure to prevent FileNotFound issues
- Removed unnecessary files from NuGet package (libraries, debug artifacts)
- Improved packaging strategy to include only required plugin resources
- Ensured compliance with XrmToolBox plugin validation checklist

v1.0.9 - Refactored the plugin UI by replacing the previous legacy HTML/JavaScript implementation with a modern Vue.js-based architecture.

The new frontend introduces:

* Reactive state management
* Component-based UI structure
* Centralized communication bridge between C# and WebView
* Improved graph rendering lifecycle
* Smooth view transitions and cleaner UI state handling
* Better maintainability and scalability for future features

The WebView application is now fully bundled and embedded into the plugin assembly, simplifying deployment and reducing external UI dependencies.