English 中文(简体)
周转基金安全执行设计问题
原标题:WCF security implementation design issue

我拥有创建 ASP.net/WinForms 应用程序的经验,

提前感谢您阅读了新加入的文本块。 我的问题是设计而不是实际的编码问题。

我的目标是:

  • Create a Web Service (using WCF) whose purpose is the management of tasks/todo lists
  • The Web Service will allow users to register for an account, create new to do lists, share to do lists with other users etc
  • After the Web Service is functional 和 everything is implemented I want to be able to layer an ASP.NET website on top of it 和 use the Web Service for the backend

目前,我有以下内容:

  • 1 console application hosting the web service
  • 1 console application (client) used to make to calls to the web service (I test my Web Service this way)

Web Service 应用程序有以下配置文件( 希望我能贴上) :

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <connectionStrings>
    <add name="Tasker_Server.Properties.Settings.TaskerConnectionString"
      connectionString="Data Source=PROPHETSQLEXPRESS;Initial Catalog=Tasker;Persist     Security Info=True;User ID=sa;Password=stf"
  providerName="System.Data.SqlClient" />
  </connectionStrings>
  <system.serviceModel>
    <services>
      <service name="Tasker_Server.TaskerService" behaviorConfiguration="TaskerServiceBehavior">
        <host>
          <baseAddresses>
             <add baseAddress="http://localhost:8000/TaskerTest/Service" />
          </baseAddresses>
        </host>
        <endpoint name="login" address="username" binding="wsHttpBinding"
              bindingConfiguration="Binding1"
              contract="Tasker_Server.ITasker" />
        <endpoint name="reg" address="reg" binding="wsHttpBinding"
              bindingConfiguration="Binding2"
              contract="Tasker_Server.Contracts.IRegister" />
      </service>
    </services>
    <bindings>
      <wsHttpBinding>
        <binding name="Binding1" receiveTimeout="00:20:00">
          <security mode="Message">
            <message clientCredentialType="UserName"/>
          </security>
        </binding>
        <binding name="Binding2">
          <security mode="None">
            <transport clientCredentialType="None" />
            <message establishSecurityContext="false" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior name="TaskerServiceBehavior">
          <serviceMetadata httpGetEnabled="true" />
          <serviceCredentials>
            <userNameAuthentication userNamePasswordValidationMode="Custom"
                                customUserNamePasswordValidatorType="Tasker_Server.CustomValidator, Tasker_Server" />
            <serviceCertificate findValue="localhost"
                            storeLocation="LocalMachine"
                            storeName="My"
                            x509FindType="FindBySubjectName" />
          </serviceCredentials>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>

我开始网络服务 像这样:

ServiceHost selfHost = new ServiceHost(typeof(TaskerService));

try {
    selfHost.Open();
    Console.WriteLine("Service is up... (press <ENTER> to terminate)");
    Console.ReadLine();

    selfHost.Close();
}
catch (CommunicationException ce) {
    Console.WriteLine("Exception: {0}", ce.Message);
    Console.ReadLine();
    selfHost.Abort();
}

目前我只有两份合同:

[ServiceContract(Namespace="http://Tasker_Server")]
public interface ITasker {
    [OperationContract]
    string CheckCredentials(string username, string password);
}

[ServiceContract(Namespace="http://Tasker_Register")]
public interface IRegister {
    [OperationContract]
    string RegisterUser(string username, string password, string email);
}

我试图做到的如下:

  1. Offer an unsecured endpoint; clients can invoke this 和 register an account.
  2. Offer a secured endpoint (I use UserName authentication with a custom UserNamePasswordValidator) through which users can "login" 和 invoke all the operations.

Both these things in my software work right now. I can register a new account through an unsecured endpoint 和 I can invoke the secure endpoint by providing the correct ClientCredentials in the client.

我的问题如下:

  1. From what I underst和, by using UserName authentication, the Validation method in my custom validator will be called each time the client invokes a Web Service method (this means that a DB query will run each time to check the credentials as opposed to a website where you login once until your session expires). Is there something fundamentally wrong with doing things this way?

  2. I thought of another possible way to manage this (和 in a way simulate how a website would work):

    • Use a secure endpoint (UserName authentication) only for an operation similar to a "login"
    • If the credentials are correct I create a new GUID, save it in memory 和 make an association between an username 和 that guid.
    • then all the operations will not require UserName authentication but will have an additional parameter (the GUID): if the GUID is in memory 和 associated with a user then the operation is permitted
    • The logout operation would destroy the GUID in memory.
    • I would assume that I can use SSL on top of this so that the GUID won t be sent in clear
    • does this defeat the purpose of Web Service security 和 I m just trying to reinvent the wheel?

哪种方法会更好?

<强度> 更新日期: 添加错误的配置文件。 它来自客户端而不是网络服务。 现在添加了正确的文件 。

最佳回答

参见其它问题>WCF 入场券基础认证 和查询站

http://blogs.microsoft.co.il/blogs/bursteg/archive/2006/04/23/141.aspx" rel=“不跟随新消息”>WCF 自定义信头

最新资料:方法比较。

Benefits of the first approach is stateless/sessionless of individual operations. Neither client nor service need to remember details of the previous authentication call. However if the same client does multiple calls, it s better to remember ticket, rather then remember and send username&password each time. If you concerned about repeated calls to database, you can cache for some time(e.g. 30min) username&password ( or better hash of them) and compare details of new request in cached dictionary before doing database call.

第二个方法要求客户保持状态( I. e. ticket), 这样就更复杂了一点。 但它更安全了, 因为您不需要在整个会话中记住用户名和 amp; 密码 。 对于您的假想, 我更愿意使用 ticket 方法 。

顺便说一句,在登录后,我仍然建议使用https(通常性能处罚并非必要), 但它阻止网络嗅探者偷票,

问题回答

2是个合理的想法,叫做“窗口识别框架”。

与您建议的唯一真正不同之处在于,在联邦安全模式中,您将认证与应用程序分开。在 WIF 中,您向一个发行标识(您的 GUID) 的受信任机构认证。在标识中加密的是一套索赔要求(允许操作 ) 。 客户将凭证作为WCF呼叫的一部分传递到安全原则中,这些索赔要求被转移到安全原则中,而您的申请突然成为了以角色为基础的安全,而WCF却一无所知。

WIF的缺点是,它很复杂,需要相当长的时间。

WIF的优势在于它是由安全专家撰写的。 如果您实际上正在建立一个商业应用程序来处理钱财或敏感数据, 您应该只出于这个原因使用 WIF 。

这是",http://msdn.microsoft.com/ en-us/magazine/ee335707.aspx" rel=“nofollow” older article ,但很好地激发了这些想法。然后有,http://msdn.microsoft.com/en-us/library/ee748475.aspx" rel=“nofolpt>MSDN

您没有达到您想要的 < a href=> http://msdn.microsoft. com/ en- us/library/ms733040. aspx" rel = “ nofollow” 使用 wCF 的会话 吗?





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签