7

我正在制作一个简单的应用程序,可让您快速输入要运行的 shell 命令。它工作得很好,但是存在 sudo 命令的问题。目前,它检测到一个 sudo 命令,然后我尝试让它为用户密码打开一个授权窗口,就像你在 Installer 中看到的一样。

这是检测到它是 sudo 命令后的代码:

SFAuthorization *authorization = [[SFAuthorization alloc] initWithFlags:kAuthorizationFlagPreAuthorize rights:NULL environment:kAuthorizationEmptyEnvironment];
if ([authorization obtainWithRight:"com.mycompany.myapplication" flags:kAuthorizationFlagPreAuthorize error:nil]){
    //authorized, now run the command using NSTask.
}else{
    //fail
}

现在,据我所知,这是完全错误的。这正是我从文档中拼凑出来的。有任何想法吗?

4

3 回答 3

2

我知道这是一个非常古老的问题,但对于那些仍在寻找答案的人来说,这里是。(它使用 AppleScript)

NSAppleScript *script = [[NSAppleScript alloc] initWithSource:@"do shell script \"[YOUR SCRIPT HERE]\" with administrator privileges"];

当然,将 [YOUR SCRIPT HERE] 替换为您的脚本,并确保以可可方式转义字符串。

NSDictionary *errorInfo;
[script executeAndReturnError:&errorInfo];

如需进一步解释,请发表评论。

于 2013-06-15T10:39:32.503 回答
2

您需要使用 AuthorizationExecuteWithPrivileges 函数,如下所示:

- (IBAction)touch: (id) sender {

  NSString * filepath = [_filepathfield stringValue];
  FILE *commpipe = NULL;
  OSStatus execstatus;


  NSLog(@"file path is %@", filepath);

  char *args[] = {[filepath cString], NULL};


  SFAuthorization * authorization = [SFAuthorization authorization];

  execstatus = AuthorizationExecuteWithPrivileges([authorization authorizationRef],
                                                  "/usr/bin/touch",
                                                  kAuthorizationFlagDefaults,
                                                  args,
                                                  &commpipe);

  if (execstatus == errAuthorizationSuccess) 
    NSlog(@"Toot! It worked");
  else
    NSLog(@"No dice");

}

鉴于 BSD 是一朵精致而脾气暴躁的花朵,我建议不要让用户以 root 身份从应用程序中执行任意命令。

/演讲

如果您想限制您自己的程序的功能不受其自己的用户的影响,那么您示例中的代码就是要走的路的开始。例如,您可能有一个应用程序只允许某些用户更改已保存文件中的数据。因此,您将在安全数据库“com.mycompany.LibraryApp.AlterData”中创建一个条目,并检查用户在尝试更改数据时是否具有该权限。但这是一个完全不同的话题......

希望有帮助,-p。

于 2009-10-03T20:03:34.293 回答
1

安全很难。我可以解释文档并提供代码片段,但我可能错了。更糟糕的是,即使我的高级描述是正确的,代码片段中也很可能存在一个会破坏安全性的小错误。

如果您要处理权限提升问题,最好的方法是阅读文档并使用提供的示例。

https://developer.apple.com/mac/library/documentation/Security/Conceptual/authorization_concepts/01introduction/introduction.html#//apple_ref/doc/uid/TP30000995-CH204-TP1

于 2009-09-13T17:31:02.203 回答