Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
msldap — LDAP를 통해 Microsoft Active Directory를 감사하기 위한 Python 라이브러리로, NTLM, Kerberos, SSPI 인증, 채널 바인딩, 암호화, SOCKS5 프록시 및 내장 대화형 클라이언트를 지원합니다. | Kitploit
도구/GitHubGitHub/skelsec/msldap
Vulnerability AnalysisInformation GatheringPenetration TestingAuthentication
GitHubskelsec/msldap

msldap

LDAP를 통해 Microsoft Active Directory를 감사하기 위한 Python 라이브러리로, NTLM, Kerberos, SSPI 인증, 채널 바인딩, 암호화, SOCKS5 프록시 및 내장 대화형 클라이언트를 지원합니다.

저장소 보기
497826개월 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Supported Python versions Documentation Status Twitter

🚩 스폰서

이 프로젝트가 마음에 드시면, 브라우저에서 실행되는 전체 침투 테스트 제품군인 OctoPwn의 라이선스 구매를 고려해보세요!
새 빌드/릴리스 및 기타 정보를 알림 받으려면 Discord에 가입하세요.

msldap

MS AD용 LDAP 라이브러리 문서 상태

🚩 브라우저에서 실행

이 프로젝트는 다른 많은 침투 테스트 도구와 함께 OctoPwn의 힘으로 브라우저에서 실행됩니다!
커뮤니티 버전은 OctoPwn - Live에서 확인하세요.

문서

멋진 문서는 여기!

기능

  • 내장 콘솔 LDAP 클라이언트 제공
  • 모든 매개변수는 편리한 URL을 통해 제어할 수 있습니다 (아래 참조)
  • 통합 Windows 인증(SSPI)을 NTLM 및 KERBEROS 모두 지원
  • 채널 바인딩 지원 (NTLM 및 KERBEROS용, SSPI 제외)
  • 암호화 지원 (NTLM/KERBEROS/SSPI)
  • LDAPS 지원 (TODO: 실제 인증서 확인)
  • 추가 프록시 도구 없이 SOCKS5 프록시 지원
  • 최소한의 공간
  • 편리한 정보 수집을 위한 사전 제작된 많은 쿼리
  • 프로젝트에 쉽게 통합 가능
  • 테스트 스위트 없음

설치

GIT을 통해
python3 setup.py install
또는
pip install msldap

사전 요구사항

  • asn1crypto 모듈. 일부 LDAP 쿼리는 ASN1 전송 위에 보내질 ASN1 구조를 포함합니다. XD
  • asysocks 모듈. SOCKS 프록시 지원.
  • aiocmd 대화형 클라이언트용
  • asciitree 대화형 클라이언트에서 멋진 트리 표시용

사용법

이 라이브러리는 명령줄 프로그램으로 사용하도록 의도되지 않았음을 유의하세요.
이 점을 감안하여, 프로젝트는 완전한 기능의 LDAP 대화형 클라이언트를 포함합니다. msldap 모듈을 setup.py install로 설치하면 msldap이라는 새로운 바이너리가 나타납니다 (충격적인 명명 규칙)

LDAP 연결 URL

주요 변경 사항은 버전 0.2.0에서 다양한 연결 옵션을 추가 명령줄 스위치 없이 하나의 문자열로 통합하기 위해 필요했습니다.
새로운 연결 문자열은 다음과 같이 구성됩니다:
자세한 설명 및 예시:

root@kitploit:~
<protocol>+<auth>://<username>:<password>@<ip_or_host>:<port>/<tree>/?<param>=<value>


	<protocol> sets the ldap protocol following values supported:
		- ldap
		- ldaps
		- gc
		- gc_ssl
		
	<auth> can be omitted if plaintext authentication is to be performed (in that case it default to ntlm-password), otherwise:
		- ntlm-password
		- ntlm-nt
		- kerberos-password (dc option param must be used)
		- kerberos-rc4 / kerberos-nt (dc option param must be used)
		- kerberos-aes (dc option param must be used)
		- kerberos-keytab (dc option param must be used)
		- kerberos-ccache (dc option param must be used)
		- kerberos-pfx (dc option param must be used)
		- kerberos-pem (dc option param must be used)
		- kerberos-certstore (dc option param must be used, windows only)
		- sspi-ntlm (windows only!)
		- sspi-kerberos (windows only!)
		- anonymous
		- plain
		- simple
		- sicily (same format as ntlm-nt but using the SICILY authentication)
		
	<tree>:
		OPTIONAL. Specifies the root tree of all queries
		
	<param> can be:
		- timeout : connction timeout in seconds
		- proxytype: currently only socks5 proxy is supported
		- proxyhost: Ip or hostname of the proxy server
		- proxyport: port of the proxy server
		- proxytimeout: timeout ins ecodns for the proxy connection
		- dc: the IP address of the domain controller, MUST be used for kerberos authentication

	Examples:
	ldap://10.10.10.2 (anonymous bind)
	ldaps://test.corp (anonymous bind)
	ldap+sspi-ntlm://test.corp
	ldap+sspi-kerberos://test.corp
	ldap://TEST\\victim:<password>@10.10.10.2 (defaults to SASL GSSAPI NTLM)
	ldap+simple://TEST\\victim:<password>@10.10.10.2 (SASL SIMPLE auth)
	ldap+plain://TEST\\victim:<password>@10.10.10.2 (SASL SIMPLE auth)
	ldap+ntlm-password://TEST\\victim:<password>@10.10.10.2
	ldap+ntlm-nt://TEST\\victim:<nthash>@10.10.10.2
	ldap+kerberos-password://TEST\\victim:<password>@<hostname>/?dc=10.10.10.2
	ldap+kerberos-rc4://TEST\\victim:<rc4key>@<hostname>/?dc=10.10.10.2
	ldap+kerberos-aes://TEST\\victim:<aes>@<hostname>/?dc=10.10.10.2
	ldap://TEST\\victim:[email protected]/DC=test,DC=corp/
	ldap://TEST\\victim:[email protected]/DC=test,DC=corp/?timeout=99&proxytype=socks5&proxyhost=127.0.0.1&proxyport=1080&proxytimeout=44

감사의 말

인증서 서비스 기능은 @zer1t0이 만든 certi를 기반으로 합니다. AC-RN

도구 다운로드