|
4 | 4 | RootModule = 'DllSpy.PowerShell.dll' |
5 | 5 |
|
6 | 6 | # Version number of this module. |
7 | | - ModuleVersion = '0.2.6' |
| 7 | + ModuleVersion = '0.2.7' |
8 | 8 |
|
9 | 9 | # ID used to uniquely identify this module |
10 | 10 | GUID = 'f7e8a9b0-1c2d-3e4f-5a6b-7c8d9e0f1a2b' |
|
19 | 19 | Copyright = '(c) Anton Lindström. All rights reserved.' |
20 | 20 |
|
21 | 21 | # Description of the functionality provided by this module |
22 | | - Description = 'Discovers and analyzes input surfaces (HTTP endpoints, SignalR hubs, WCF services, gRPC services, Razor Pages, Blazor components) in compiled .NET assemblies using reflection. Identifies security vulnerabilities, maps routes, and generates reports — all without running the application.' |
| 22 | + Description = 'Discovers and analyzes input surfaces (HTTP endpoints, SignalR hubs, WCF services, gRPC services, Razor Pages, Blazor components, Azure Functions, OData endpoints) in compiled .NET assemblies using reflection. Identifies security vulnerabilities, maps routes, and generates reports — all without running the application.' |
23 | 23 |
|
24 | 24 | # Minimum version of the PowerShell engine required by this module |
25 | 25 | PowerShellVersion = '5.1' |
|
55 | 55 | PrivateData = @{ |
56 | 56 | PSData = @{ |
57 | 57 | # Tags applied to this module for discoverability in online galleries |
58 | | - Tags = @('security', 'aspnet', 'webapi', 'signalr', 'wcf', 'grpc', 'razor', 'blazor', 'reflection', 'endpoints', 'vulnerability', 'audit') |
| 58 | + Tags = @('security', 'aspnet', 'webapi', 'signalr', 'wcf', 'grpc', 'razor', 'blazor', 'azure-functions', 'odata', 'reflection', 'endpoints', 'vulnerability', 'audit') |
59 | 59 |
|
60 | 60 | # A URL to the license for this module. |
61 | 61 | LicenseUri = 'https://github.com/n7on/dllspy/blob/main/LICENSE' |
|
64 | 64 | ProjectUri = 'https://github.com/n7on/dllspy' |
65 | 65 |
|
66 | 66 | # Release notes for this module |
67 | | - ReleaseNotes = 'Fixed assembly resolution on macOS PowerShell 7 (single-file host). Added Pester tests.' |
| 67 | + ReleaseNotes = 'Added Azure Functions and OData endpoint discovery. PowerShell HttpMethod filter now matches all surface types with HTTP methods.' |
68 | 68 | } |
69 | 69 | } |
70 | 70 |
|
|
0 commit comments