首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏开源部署

    Hadoop Authentication

    JAAS是Java 认证和授权服务(Java Authentication and Authorization Service)的缩写,是PAM框架的Java实现。 hadoop.security.authentication属性有2种值: simple: Security is disabled。 getLoginUser()的流程: 1.创建LoginContext: name:如果hadoop.security.authentication等于”kerberos”,那么是“hadoop-user-kerberos

    63610编辑于 2022-07-01
  • 来自专栏大话swift

    vapor Web Authentication

    最近写东西一直没有加Authorware,也一直知道这个功能很重要,但是一直没有下定决心去看这一块,其实是有原因的:1 一开始粗略的看了一下,似是而非,于是感觉这个东东很难,很晦涩 2 由于之前看Laravel遗留的这一部分没看,感觉很难 。哈哈总之一句话:下意识的感觉这部分很难,所以它难…… 下意识中感觉他很难,但是理智还是要上的--理智告诉我这部分要去实践,去克服……

    63430发布于 2019-07-03
  • 来自专栏我是业余自学C/C++的

    su: Authentication failure

    $ sudo passwd root Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully

    2K60发布于 2018-05-28
  • 来自专栏以终为始

    su: Authentication failure

    问题:su: Authentication failure 解决方法: sudo passwd root 输入新的密码 再执行 su 即可。

    1.2K20编辑于 2023-03-09
  • 来自专栏技术小讲堂

    ASP.NET AJAX(10)__Authentication ServiceAuthentication ServiceAuthentication Service属性Authentication

    在通常情况下,如果使用AJAX方式调用WebService,则可能被恶意用户利用,造成性能以及安全性的问题,所以我们需要使用一些验证方式来保护WebService,最常见方式就是Forms Authentication Service 它提供了一种使用AJAX的方式进行身份验证的功能,他是基于ASP.NET的Membership的功能,可以使用VS理工的ASP.NET 2.0应用程序的配置工具来配置 使用Authentication Service 出于安全性的考虑,ASP.NET AJAX 在默认情况下不会开发Authentication Service功能 <authenticationService enabled="true Service实现 <em>Authentication</em> Service的功能就是为我们提供一种以AJAX方式登陆和注销用户的功能,如果我们自己来实现,就会使用客户端调用WebService来实现这样的功能, Service 显然扩展ASP.NET功能相当复杂 不如扩展<em>Authentication</em> Service,只需要实现两个方法 有些时候我们不得不扩展它,因为扩展Membership只能修改用户信息的存储

    2.1K90发布于 2018-03-07
  • 来自专栏运维一切

    mesos:Authentication timed out

    authenticatee.cpp:121] Creating new client SASL connection W0717 10:27:16.700867 28852 slave.cpp:1068] Authentication 10:27:26.715133 28856 slave.cpp:1013] Failed to authenticate with master master@192.168.2.161:5050: Authentication dGltIGI5MTNhNjAyYzdlZGE3YTQ5NWI0ZTZlNzMzNGQzODkw ------- Client将收到的信息加上用户名和口令,编码为BASE64发送给Server S: A0001 OK CRAM authentication self(), &Self::authenticationTimeout, future); 这个5秒的限制在master和slave上都有,如果仔细看上面的日志,“Authentication 网上大多数的timeout的问题就出现在这里,如果你修改了主机的Hostname,但是你在本地没有配置/etc/hosts,本地的DNS server也没办法解析,这这里就会出现"Authentication

    923100发布于 2018-07-17
  • 来自专栏软件开发-青出于蓝

    Springsecurity之Authentication

    图1 Authentication的继承图     原书,讲的很好,原文是:     "An Authentication object is used both when an authentication The most common behavior is that when you log in to the application a new Authentication object will 即:Authentication在认证请求时用到,也可在层次间传递。 最常见的场景就是登录,登录中的name、password、permission,对于过来就是Authentication的Principal、Credentials、Authorities。 图2 Authentication的类图 参考: Carlo Scarioni, Pro Spring Security.

    63440发布于 2019-04-15
  • 来自专栏运维一切

    mesos:Authentication timed out

    authenticatee.cpp:121] Creating new client SASL connection W0717 10:27:16.700867 28852 slave.cpp:1068] Authentication 10:27:26.715133 28856 slave.cpp:1013] Failed to authenticate with master master@192.168.2.161:5050: Authentication dGltIGI5MTNhNjAyYzdlZGE3YTQ5NWI0ZTZlNzMzNGQzODkw ------- Client将收到的信息加上用户名和口令,编码为BASE64发送给Server S: A0001 OK CRAM authentication self(), &Self::authenticationTimeout, future); 这个5秒的限制在master和slave上都有,如果仔细看上面的日志,“Authentication 网上大多数的timeout的问题就出现在这里,如果你修改了主机的Hostname,但是你在本地没有配置/etc/hosts,本地的DNS server也没办法解析,这这里就会出现"Authentication

    48020发布于 2018-08-02
  • 来自专栏张善友的专栏

    Custom Basic Authentication for IIS

    HTTP Basic Authentication是一个定义在HTTP/1.1规范中的验证机制。这种机制是以用户名和密码为基础的。一个Web server要求一个web client去验证一个用户。 注意:Basic Authentication机制的realm字符串不一定反映任何一种安全方针域。Web client得到这些用户名和密码,然后把它传递给web server。 IIS支持HTTP Basic Authentication,问题是asp.net内建的Module要求有一个Windows帐号,这个模块就是解决这个问题,使得Basic Authentication不再依赖于

    61160发布于 2018-01-31
  • 来自专栏小工匠聊架构

    每日一博 - Token Based Authentication VS HMAC Authentication 实现web安全

    ---- 概念 Token Based Authentication和HMAC(Hash-based Message Authentication Code)Authentication都是用于身份验证和数据完整性验证的安全机制 以下是它们的主要区别和比较: Token Based Authentication(基于令牌的身份验证): 工作原理:Token Based Authentication使用令牌(Token)来验证用户身份 HMAC Authentication: 工作原理:HMAC Authentication使用哈希函数和共享密钥来验证消息的完整性和真实性。 Token Based Authentication使用令牌作为身份验证凭证,而HMAC Authentication使用共享密钥和消息的哈希值。 如果需要验证用户身份并实现单点登录等功能,Token Based Authentication可能更适合。如果需要强调数据完整性和真实性验证,HMAC Authentication可能更适合。

    50830编辑于 2023-09-15
  • 来自专栏Material Design组件

    Human Interface Guidelines — Authentication

    自上次参加完回音分享会后,我下定决心要洗心革面乖乖打基础,于是开启了这个part,争取两个月不间断更新,写完Material Design与iOS中的组件(顺便学学英语),以便今后在使用的时候完全不虚 Authentication (认证) Human Interface Guidelines链接:Authentication 要求用户只在交换价值时进行身份认证,例如个性化体验、访问附加特性、购买内容或同步数据。

    93550发布于 2018-06-13
  • 来自专栏VoiceVista语音智能

    Assessing Biometric Authentication -A Holistic Approach

    Biometric authentication is certainly starting to get the attention of the general public. The push by Apple and Samsung to make fingerprint authentication available in their devices is among greatly on the data chosen as being representative of the range and frequency of conditions under which authentication may be more burdensome for the user, requiring more than one biometric mode to be presented for every authentication Every biometric has conditions under which authentication can be challenging or even impossible.

    50220编辑于 2022-09-02
  • 来自专栏敏而好学

    Easy Basic HTTP authentication with Tornado

    One thing that I tried to do pretty quickly and had a hard time with was Basic authentication (you know require_basic_auth(handler_class):     # Should return the new _execute function, one which enforces     # authentication back a response letting it know that we'd like                 # a username and password (the "Basic" authentication _execute)     return handler_class 参考: http://kelleyk.com/post/7362319243/easy-basic-http-authentication-with-tornado

    1.1K20发布于 2020-02-11
  • 来自专栏Bigdata

    passwd: Authentication token manipulation error

    这是Linux/Unix 修改密码(或单用户模式重置密码)的时候提示的错误,修改失败有很多种原因,以下是权限问题的解决办法:

    3K80发布于 2020-11-24
  • 来自专栏天马行空布鲁斯

    ​空谈Security之Authentication和Authorization

    authentication和authorization这两个单词看起来很像,并且它们经常被一起提及到,但是,请注意,它们指代的是不同的概念,authentication指的是认证登陆;而authorization 首先,我们来看一看kafka提供的authentication和authorization机制: ? 这也是上面截图中7.2节的标题叫做“Encryption and Authentication using SSL”的原因。 SSL除了用来做encryption,同时也可以用来做authentication。 对于一些public的网站,用户随时变化,很多都采用的是这种用户名密码的authentication方式。

    1.4K20发布于 2020-06-29
  • 来自专栏点滴随笔

    SQLSTATE The server requested authentication method

    数据库驱动:mysqlimysql:mysql8.0错误信息在使用php的mysqli连接mysql8.0时报错SQLSTATE[HY000] [2054] The server requested authentication method错误原因错误原因是对 MySQL 进行的版本升级,MySQL8中用户的认证类型(Authentication type)默认为 caching_sha2_password 导致的错误,需要修改用户权限认证方式为 mysql_native_password解决方法修改my.cnf:[mysqld]...default_authentication_plugin=mysql_native_password...重启

    52410编辑于 2024-04-30
  • 来自专栏编程黑洞

    django rest_framework Authentication

    在ApiView.dispatch中将django.request再次封装成框架的rest_framework.request 封装的过程中将配置的Authentication类注入到request 封装完request后,调用ApiView.perform_authentication开始认证 认证的过程是通过request.user,然后再调用request. _authentication进行循环遍历所有注入的Authentiation类中authenticate方法进行认证,认证成功则返回user和auth两个结果 # 认证方式 可以自定义认证类,只需要继承 import TokenAuthentication class TestView(APIView): authentication_classes = (TokenAuthentication ': [ 'rest_framework.authentication.TokenAuthentication', ] } # 缺陷 Token验证是放在一张表中,即authtoken_token

    59010编辑于 2023-03-06
  • 来自专栏响应式编程

    Spring Security里的Authentication

    关于Spring Security里的Authentication,官方文档( http://docs.spring.io/spring-security/reference/servlet/authentication 不同类别的 Authentication Filter 的处理略有差异,但大体逻辑差不多: Authentication Filter 接收请求 http request。 Authentication Filter 接收请求 当用户发送了http request进行认证,将被负责authentication的filter处理。 Request to Authentication Authentication这个类在认证前主要用于承载认证需要的凭证信息,比如用户名密码。 authentication 对象也就等同于一个authentication request的event,并包含请求者进行认证所必须的信息。 3.

    1K20编辑于 2023-01-11
  • 来自专栏张善友的专栏

    HTTP Basic Authentication for RESTFul Service

    什么是HTTP Basic Authentication?直接看http://en.wikipedia.org/wiki/Basic_authentication_scheme吧。 在你访问一个需要HTTP Basic Authentication的URL的时候,如果你没有提供用户名和密码,服务器就会返回401,如果你直接在浏览器中打开,浏览器会提示你输入用户名和密码(google 要在发送请求的时候添加HTTP Basic Authentication认证信息到请求中,有两种方法: 一是在请求头中添加Authorization: Authorization: "Basic 具体参看http://www.infoq.com/cn/news/2010/07/odata-authentication-series,其中也有介绍到HTTP Basic Authentication : Custom Basic Authentication(自定义基本验证)——涉及在基础结构级别(如IIS)上进行的基本质询响应(challenge-response)验证的场景。

    1.1K100发布于 2018-01-19
  • 来自专栏AI.NET极客圈

    ASP.NET Core - Authentication认证

    public static class AuthenticationCoreServiceCollectionExtensions { ///

    /// Add core authentication services needed for <see cref="T:Microsoft.AspNetCore.<em>Authentication</em>.IAuthenticationService" />. , AuthenticationSchemeProvider>(); return services; } /// /// Add core authentication services needed for <see cref="T:Microsoft.AspNetCore.<em>Authentication</em>.IAuthenticationService" />. this.HandlerType = handlerType; this.DisplayName = displayName; } /// The name of the authentication

    3.3K21发布于 2019-09-03
领券