我是一名程序员C#,IS和系统管理员。
因此,我发现一些无需UAC窗口即可启动Powershell的代码。 如何修改此代码以使Powershell执行我的命令,而此命令需要管理员特权?我想检查一下。如果可行,该如何防御?我只是尝试了代码,然后Powershell以管理员身份开始。
它如何工作?
SizedBox.expand(
child : ListView.builder(
itemCount: datas.length,
shrinkWrap: true,
itemBuilder: (context, i) {
return new ExpansionTile(
title: new Text(datas[i].title, style: new TextStyle(fontSize: 20.0, fontWeight: FontWeight.bold, fontStyle: FontStyle.italic),),
children: <Widget>[
new Column(
children: _buildExpandableContent(datas[i]),
),
],
);
},
),
);