SASL is the Simple Authentication and Security Layer, a method for adding authentication support to connection-based protocols.
Questions tagged [sasl]
424 questions
0
votes
1 answer
SASL authentication failed using login context 'Client'
I am working in securing Kafka with Kerberos in CDH 5.5
Kafka version: 2.0.1
Kerberos is enabled and works fine
when i enable sasl in kafka using cloudera maneger, i get the error:
Jun 29, 3:02:42.875 PM INFO org.apache.zookeeper.ClientCnxn …

bbary
- 27
- 1
- 9
0
votes
1 answer
Error building sasl for python 3.5.1
To connect to Hive using Python 3.5.1
I was able to install pyhs2, thrift and Pyhive.
But during installation of sasl which is needed by phyhs2, got this error.
running install
running build
running build_py
creating build
…

ankita gupta
- 193
- 1
- 3
- 12
0
votes
4 answers
XMPP Handshake (DIGEST-MD5 SASL)
ive got ejabberd as my xmpp server and here is my php code:
$stripped = strip_tags($returnTwo); // remove the xml tags from the response stanza
$decoded = base64_decode($stripped); // decode the jibberish
$regex = "([0-9]{8,})"; // create regex to…

Jonathan
- 1
- 1
- 1
0
votes
1 answer
Why Erlang sasl application doesn't save my log files correctly?
I booted the Erlang shell with sasl started and with the following configuration file, but it doesn't create an error log on disk:
%% rotating log and minimal tty
[{sasl, [
{sasl_error_logger, false},
%% define the parameters of the rotating…

Torrell Premier
- 3
- 2
0
votes
1 answer
Build OpenLDAP client for iOS - no SASL
Since Apple is systematically deprecating OpenLDAP for iOS and OS X (some features which are needed has been removed in 10.10), my team decided to get latest OpenLDAP, build it and include libraries to application.
I need only client…

Marek R
- 32,568
- 6
- 55
- 140
0
votes
1 answer
SCRAM-SHA-1 auth by PHP
help me please with implementing semantic code from manual about SCRAM-SHA-1 authorization in XMPP server. So, we got:
clientFinalMessageBare = "c=biws,r=" .. serverNonce
saltedPassword = PBKDF2-SHA-1(normalizedPassword, salt, i)
clientKey =…

Andrey Samozhenkov
- 67
- 8
0
votes
1 answer
SASL password normalization
there is very simple question - can you normalize for me some password, because I can't understand how it works? So, there is password: "IDoMdGuFE9S0", how it looks in "normalized" view? There are only alphanumeric ascii characters. Does result and…

Andrey Samozhenkov
- 67
- 8
0
votes
1 answer
Build Cyrus SASL as static library on Windows
I need the library Cyrus SASL as a static library on Windows (https://cyrusimap.org/mediawiki/index.php/Downloads#SASL_Library)
How to do that ?

devopsfun
- 1,368
- 2
- 15
- 37
0
votes
1 answer
SASLErrorException: SASLError using DIGEST-MD5: not-authorized while using Smack 4.2
I am trying to make a simple chat application. I have been researching about this and found smack library. For this,i downlaoded all the libraries and installed the openfire server in my computer and created few users in it for testing. I could…

Sumit Bahadur
- 69
- 3
- 11
0
votes
1 answer
Which password format (plaintext or MD5 Hash) to be passed when using the authentication method "SASL DIGEST-MD5"?
I'm replacing the LDAP for Active Directory - AD and I'm having difficulty in authentication. In LDAP, the password is passed as an MD5 hash. In AD, I have not found anything like this. I'm trying to use SASL with DIGEST-MD5, but Bind is only being…

LOliveira
- 57
- 5
0
votes
2 answers
JavaMail - Can't load SASL authenticator
I'm getting the following error when trying to connect to the imap store using JavaMail in an Android app:
IMAP DEBUG: Can't load SASL authenticator: java.lang.NoSuchMethodException: [class com.sun.mail.imap.protocol.IMAPProtocol, class…

user2120910
- 404
- 1
- 5
- 16
0
votes
0 answers
subversion - allow client operations through all protocols
Trying to correctly setup subversion server in order to allow clients to access repos using all available protocols:
file://
http://
https://
svn://
svn+ssh://
first 3 mentioned above works correctly. I'm having some issue making coexist the last…

lese
- 539
- 1
- 5
- 24
0
votes
1 answer
Android XMPP simple chat: Login error SASL authentication failed using mechanism PLAIN
as the title says I'm new to android.
I'm trying to build very simple chat with the following code.
//1. connection
ConnectionConfiguration connConfig = new ConnectionConfiguration("talk.google.com", 5222, "gmail.com");
try{…

Luca
- 918
- 2
- 13
- 30
0
votes
1 answer
Anaconda Python: client driver for HiveServer2 fails to install
I get this error when trying to install pyhs2 on Windows 7 64-bit. I'm using CMD.exe to install the package, even though I'm not quite a big fan of it. I've downloaded the package from this link and placed in my Download directory.
I'm currently…

Gianluca
- 6,307
- 19
- 44
- 65
0
votes
1 answer
XMPP SASL Authentication
I am trying to create an XMPP server library for an XMPP-based application I will be developing.
I am stuck on trying to authenticate the client with plain SASL. I have already read the RFC at https://www.rfc-editor.org/rfc/rfc6120#section-6.4.6
My…

M3L
- 430
- 1
- 5
- 8