Questions tagged [sasl]

SASL is the Simple Authentication and Security Layer, a method for adding authentication support to connection-based protocols.

424 questions
0
votes
1 answer

ubuntu16.04 python3 pip install sasl

error information: How to solve this problem?
LWX
  • 37
  • 6
0
votes
0 answers

python sasl C1083 error

I am trying to install sasl-0.1.3 for python on windows 10 but am getting a C1083 fatal error, it is referencing Visual Studio C++ and states failed to build wheel for sasl in the error message. I was wondering if there are any solutions that do…
M-M
  • 71
  • 1
  • 7
0
votes
1 answer

pip install pyhs2 error: command 'gcc' failed with exit status 1

I am using Python 2.6.6 and pip version 7.1.0 in a Centos 6.9 virtual machine (that the company controls so I can't do much to upgrade). Is there any way to work around the error below? Collecting pyhs2 Using cached pyhs2-0.6.0.tar.gz Collecting…
HP.
  • 19,226
  • 53
  • 154
  • 253
0
votes
1 answer

OpenLDAP SASL Authentication

I'm setting up this authentication through OpenLDAP: OpenLDAP -> Pass-through (External authentication) -> SASL -> PAM -> RSA Agent In order to access to an application via a RSA Token. Starting from the bottom to the top: This is my PAM…
LucaP
  • 638
  • 1
  • 12
  • 34
0
votes
1 answer

Mongodump with authenticationMechanism SCRAM-SHA-1

I have following mongo docker image: FROM ubuntu RUN apt-get update RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 RUN echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | tee…
Rudziankoŭ
  • 10,681
  • 20
  • 92
  • 192
0
votes
0 answers

Postfix SASL Authentication Failure

After I needed to purge and re-install Postfix, I've been manually trying to recreate the main.cf file and adjust some settings in the master.cf files of the Postfix configuration. The good news is that I no longer have any errors in the mail.err…
0
votes
1 answer

Smack 4.2.0 NullPointerException when logging in

I'm still new in using Smack API. I got this exception while trying to log in. Here's my code : XMPPTCPConnectionConfiguration configuration = XMPPTCPConnectionConfiguration.builder() .setUsernameAndPassword(username, password) …
Steve Lukis
  • 420
  • 4
  • 10
0
votes
2 answers

Kafka 0.10 SASL/PLAIN producer timeout

I've got a 3 broker kerberised Kafka 0.10 install running in Cloudera and I'm trying to authenticate with SASL/PLAIN I'm passing kafka_server_jaas.conf into the JVM on each of the brokers. KafkaServer { …
owenrumney
  • 1,520
  • 3
  • 18
  • 37
0
votes
1 answer

How to get authenticated to Redis Cloud Memcached using Spymemcached?

I am trying to connect to Redis Cloud Memcached but get an error (below). I have checked that the username, password, host, and port are correct in the apps.redislabs.com interface. I able to connect if I disable SASL and connect…
Joshua Fox
  • 18,704
  • 23
  • 87
  • 147
0
votes
0 answers

WildFly JAAS failures don't produce exceptions?

I've created a standalone client that connects to a WildFly 10 cluster running a simple server application. I'm using the DatabaseLoginModule configured in my client's properties to connect to my remote server. Authentication & authorization works…
0
votes
2 answers

KRB5KDC_ERR_S_PRINCIPAL_UNKNOWN. while connection to mongodb with GSSAPI

I have setup Active directory with kerberos authentication on windows server 2012 r2, set mongodb server on a 2nd machine. Started mongodb with GSSAPI authentication, Now if I try to connect to mongodb using the follwong url mongo.exe --host…
Rajesh Kumar
  • 1
  • 1
  • 1
0
votes
1 answer

Sending email using Net::SMTPS : Use of uninitialized value $_

I am trying to send email using Net::SMTPS and gmail: #! /usr/bin/env perl use feature qw(say); use strict; use warnings; use Net::SMTPS; my $smtp = Net::SMTPS->new( 'smtp.gmail.com', Port => 587, Timeout => 20, Debug => 1, …
Håkon Hægland
  • 39,012
  • 21
  • 81
  • 174
0
votes
1 answer

XMPP DIGEST-md5 Algorithm to compute the response

Im reading stuff on XMPP authentication flow. I understood that the response is calculated on the client using a an algorithm that goes like this Create a string of the form "username:realm:password". Call this string X. Compute the 16 octet MD5…
sad
  • 820
  • 1
  • 9
  • 16
0
votes
1 answer

Erlang aborts with sasl application_start_failure

I cross compiled erlang for arm system. Later, installed Erlang into target as bellow: ./Install -sasl When I check the Erlang on the target getting bellow error: $ erl Erlang: =INFO REPORT==== 1-Jan-2015::19:30:44 === application:…
0
votes
1 answer

Connect to XMPP server using SASL ANONYMOUS in c#

I want to connect to an XMPP server using SASL ANONYMOUS. I can use any library that is available for commercial use. Any advice on how to do this and what library to use? I've looked into the documentation of some libraries (agsXMPP and…
rksprst
  • 6,471
  • 18
  • 54
  • 81