Windows-powershell / PowerShell-master /src /Microsoft.PowerShell.Commands.Utility /commands /utility /InvokeExpressionCommand.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System; | |
| using System.Management.Automation; | |
| using System.Management.Automation.Internal; | |
| using System.Management.Automation.Security; | |
| namespace Microsoft.PowerShell.Commands | |
| { | |
| /// <summary> | |
| /// Class implementing Invoke-Expression. | |
| /// </summary> | |
| [] | |
| public sealed | |
| class | |
| InvokeExpressionCommand : PSCmdlet | |
| { | |
| /// <summary> | |
| /// Command to execute. | |
| /// </summary> | |
| [] | |
| [] | |
| public string Command { get; set; } | |
| /// <summary> | |
| /// For each record, execute it, and push the results into the success stream. | |
| /// </summary> | |
| protected override void ProcessRecord() | |
| { | |
| Diagnostics.Assert(Command != null, "Command is null"); | |
| ScriptBlock myScriptBlock = InvokeCommand.NewScriptBlock(Command); | |
| // If the runspace has ever been in ConstrainedLanguage, lock down this | |
| // invocation as well - it is too easy for the command to be negatively influenced | |
| // by malicious input (such as ReadOnly + Constant variables) | |
| if (Context.HasRunspaceEverUsedConstrainedLanguageMode) | |
| { | |
| myScriptBlock.LanguageMode = PSLanguageMode.ConstrainedLanguage; | |
| } | |
| if (SystemPolicy.GetSystemLockdownPolicy() == SystemEnforcementMode.Audit) | |
| { | |
| SystemPolicy.LogWDACAuditMessage( | |
| context: Context, | |
| title: UtilityCommonStrings.IEXWDACLogTitle, | |
| message: UtilityCommonStrings.IEXWDACLogMessage, | |
| fqid: "InvokeExpressionCmdletConstrained", | |
| dropIntoDebugger: true); | |
| } | |
| var emptyArray = Array.Empty<object>(); | |
| myScriptBlock.InvokeUsingCmdlet( | |
| contextCmdlet: this, | |
| useLocalScope: false, | |
| errorHandlingBehavior: ScriptBlock.ErrorHandlingBehavior.WriteToCurrentErrorPipe, | |
| dollarUnder: AutomationNull.Value, | |
| input: emptyArray, | |
| scriptThis: AutomationNull.Value, | |
| args: emptyArray); | |
| } | |
| } | |
| } | |