Fixed LDAP Auth (#2333)
This commit is contained in:
parent
1c6b33f5af
commit
9f8e83259e
|
@ -47,12 +47,13 @@ class ProxyAuth:
|
|||
self.nonanonymous = False
|
||||
self.htpasswd = None
|
||||
self.singleuser = None
|
||||
self.ldapconn = None
|
||||
self.ldapserver = None
|
||||
self.authenticated = weakref.WeakKeyDictionary() # type: MutableMapping[connections.ClientConnection, Tuple[str, str]]
|
||||
"""Contains all connections that are permanently authenticated after an HTTP CONNECT"""
|
||||
|
||||
def enabled(self) -> bool:
|
||||
return any([self.nonanonymous, self.htpasswd, self.singleuser, self.ldapserver])
|
||||
return any([self.nonanonymous, self.htpasswd, self.singleuser, self.ldapconn, self.ldapserver])
|
||||
|
||||
def is_proxy_auth(self) -> bool:
|
||||
"""
|
||||
|
@ -101,19 +102,17 @@ class ProxyAuth:
|
|||
elif self.htpasswd:
|
||||
if self.htpasswd.check_password(username, password):
|
||||
return username, password
|
||||
elif self.ldapserver:
|
||||
elif self.ldapconn:
|
||||
if not username or not password:
|
||||
return None
|
||||
dn = ctx.options.proxyauth.split(":")[2]
|
||||
parts = dn.split("?")
|
||||
conn = ldap3.Connection(
|
||||
self.ldapserver,
|
||||
parts[0] + username + parts[1],
|
||||
password,
|
||||
auto_bind=True)
|
||||
if conn:
|
||||
conn.search(parts[1][1:], '(' + parts[0] + username + ')', attributes=['objectclass'])
|
||||
if ctx.options.proxyauth.split(":")[3] in conn.entries[0]['objectclass']:
|
||||
self.ldapconn.search(ctx.options.proxyauth.split(':')[4], '(cn=' + username + ')')
|
||||
if self.ldapconn.response:
|
||||
conn = ldap3.Connection(
|
||||
self.ldapserver,
|
||||
self.ldapconn.response[0]['dn'],
|
||||
password,
|
||||
auto_bind=True)
|
||||
if conn:
|
||||
return username, password
|
||||
return None
|
||||
|
||||
|
@ -146,19 +145,29 @@ class ProxyAuth:
|
|||
"Could not open htpasswd file: %s" % p
|
||||
)
|
||||
elif ctx.options.proxyauth.startswith("ldap"):
|
||||
parts = ctx.options.proxyauth.split(":")
|
||||
if len(parts) != 4:
|
||||
parts = ctx.options.proxyauth.split(':')
|
||||
security = parts[0]
|
||||
ldap_server = parts[1]
|
||||
dn_baseauth = parts[2]
|
||||
password_baseauth = parts[3]
|
||||
if len(parts) != 5:
|
||||
raise exceptions.OptionsError(
|
||||
"Invalid ldap specification"
|
||||
)
|
||||
if parts[0] == "ldaps":
|
||||
server = ldap3.Server(parts[1], use_ssl=True)
|
||||
elif parts[0] == "ldap":
|
||||
server = ldap3.Server(parts[1])
|
||||
if security == "ldaps":
|
||||
server = ldap3.Server(ldap_server, use_ssl=True)
|
||||
elif security == "ldap":
|
||||
server = ldap3.Server(ldap_server)
|
||||
else:
|
||||
raise exceptions.OptionsError(
|
||||
"Invalid ldap specfication on the first part"
|
||||
)
|
||||
conn = ldap3.Connection(
|
||||
server,
|
||||
dn_baseauth,
|
||||
password_baseauth,
|
||||
auto_bind=True)
|
||||
self.ldapconn = conn
|
||||
self.ldapserver = server
|
||||
else:
|
||||
parts = ctx.options.proxyauth.split(':')
|
||||
|
|
|
@ -206,10 +206,11 @@ class Options(optmanager.OptManager):
|
|||
authenticaiton but accept any credentials, start with "@" to specify
|
||||
a path to an Apache htpasswd file, be of the form
|
||||
"username:password", or be of the form
|
||||
"ldap[s]:url_server_ldap:dn:group", the dn must include "?", which will be
|
||||
the username prompted, and the group is the group the user must belong to
|
||||
"ldap[s]:url_server_ldap:dn_auth:password:dn_subtree",
|
||||
the dn_auth & password is the dn/pass used to authenticate
|
||||
the dn subtree is the subtree that we will search to find the username
|
||||
an example would be
|
||||
"ldap:ldap.forumsys.com:uid=?,dc=example,dc=com:person".
|
||||
"ldap:localhost:cn=default,dc=example,dc=com:password:ou=application,dc=example,dc=com".
|
||||
"""
|
||||
)
|
||||
self.add_option(
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import binascii
|
||||
import ldap3
|
||||
|
||||
import pytest
|
||||
|
||||
from unittest import mock
|
||||
from mitmproxy import exceptions
|
||||
from mitmproxy.addons import proxyauth
|
||||
from mitmproxy.test import taddons
|
||||
|
@ -42,19 +42,21 @@ def test_configure():
|
|||
ctx.configure(up, proxyauth=None)
|
||||
assert not up.nonanonymous
|
||||
|
||||
ctx.configure(up, proxyauth="ldap:fake_server:fake_dn:fake_group")
|
||||
assert up.ldapserver
|
||||
|
||||
ctx.configure(up, proxyauth="ldap:fake_server:uid=?,dc=example,dc=com:person")
|
||||
assert up.ldapserver
|
||||
ctx.configure(up, proxyauth="ldaps:fake_server.com:uid=?,dc=example,dc=com:person")
|
||||
assert up.ldapserver
|
||||
with mock.patch('ldap3.Server', return_value="ldap://fake_server:389 - cleartext"):
|
||||
with mock.patch('ldap3.Connection', return_value="test"):
|
||||
ctx.configure(up, proxyauth="ldap:localhost:cn=default,dc=cdhdt,dc=com:password:ou=application,dc=cdhdt,dc=com")
|
||||
assert up.ldapserver
|
||||
ctx.configure(up, proxyauth="ldaps:localhost:cn=default,dc=cdhdt,dc=com:password:ou=application,dc=cdhdt,dc=com")
|
||||
assert up.ldapserver
|
||||
|
||||
with pytest.raises(exceptions.OptionsError):
|
||||
ctx.configure(up, proxyauth="ldap:test:test:test")
|
||||
|
||||
with pytest.raises(IndexError):
|
||||
ctx.configure(up, proxyauth="ldap:fake_serveruid=?dc=example,dc=com:person")
|
||||
|
||||
with pytest.raises(exceptions.OptionsError):
|
||||
ctx.configure(up, proxyauth="ldapssssssss:fake_server.com:uid=?,dc=example,dc=com:person")
|
||||
ctx.configure(up, proxyauth="ldapssssssss:fake_server:dn:password:tree")
|
||||
|
||||
with pytest.raises(exceptions.OptionsError):
|
||||
ctx.configure(
|
||||
|
@ -124,26 +126,21 @@ def test_check(monkeypatch):
|
|||
)
|
||||
assert not up.check(f)
|
||||
|
||||
ctx.configure(
|
||||
up,
|
||||
proxyauth="ldap:fake-server:cn=?,ou=test,o=lab:test"
|
||||
)
|
||||
conn = ldap3.Connection("fake-server", user="cn=user0,ou=test,o=lab", password="password", client_strategy=ldap3.MOCK_SYNC)
|
||||
conn.bind()
|
||||
conn.strategy.add_entry('cn=user0,ou=test,o=lab', {'userPassword': 'test0', 'sn': 'user0_sn', 'revision': 0, 'objectClass': 'test'})
|
||||
|
||||
def conn_mp(ldap, user, password, **kwargs):
|
||||
return conn
|
||||
|
||||
monkeypatch.setattr(ldap3, "Connection", conn_mp)
|
||||
f.request.headers["Proxy-Authorization"] = proxyauth.mkauth(
|
||||
"user0", "test0"
|
||||
)
|
||||
assert up.check(f)
|
||||
f.request.headers["Proxy-Authorization"] = proxyauth.mkauth(
|
||||
"", ""
|
||||
)
|
||||
assert not up.check(f)
|
||||
with mock.patch('ldap3.Server', return_value="ldap://fake_server:389 - cleartext"):
|
||||
with mock.patch('ldap3.Connection', search="test"):
|
||||
with mock.patch('ldap3.Connection.search', return_value="test"):
|
||||
ctx.configure(
|
||||
up,
|
||||
proxyauth="ldap:localhost:cn=default,dc=cdhdt,dc=com:password:ou=application,dc=cdhdt,dc=com"
|
||||
)
|
||||
f.request.headers["Proxy-Authorization"] = proxyauth.mkauth(
|
||||
"test", "test"
|
||||
)
|
||||
assert up.check(f)
|
||||
f.request.headers["Proxy-Authorization"] = proxyauth.mkauth(
|
||||
"", ""
|
||||
)
|
||||
assert not up.check(f)
|
||||
|
||||
|
||||
def test_authenticate():
|
||||
|
|
Loading…
Reference in New Issue