2022-04-28 16:01:33 +00:00
< details >
2024-07-17 18:37:22 +00:00
< summary > < strong > 제로부터 영웅이 될 때까지 AWS 해킹 배우기< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team 전문가)< / strong > < / a > < strong > !< / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-02-10 21:30:13 +00:00
HackTricks를 지원하는 다른 방법:
2022-04-28 16:01:33 +00:00
2024-07-17 18:37:22 +00:00
* **회사가 HackTricks에 광고되길 원하거나** **PDF로 HackTricks 다운로드**하려면 [**구독 요금제** ](https://github.com/sponsors/carlospolop)를 확인하세요!
* [**공식 PEASS & HackTricks 스왜그** ](https://peass.creator-spring.com )를 구매하세요
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )를 발견하세요, 당사의 독점 [**NFTs** ](https://opensea.io/collection/the-peass-family ) 컬렉션
* **💬 [**Discord 그룹** ](https://discord.gg/hRep4RUj7f )에 가입하거나 [**텔레그램 그룹** ](https://t.me/peass )에 가입하거나 **트위터** 🐦 [**@hacktricks_live** ](https://twitter.com/hacktricks_live )**를 팔로우하세요.**
* **해킹 요령을 공유하려면** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 및 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github 저장소에 PR을 제출하세요.
2022-04-28 16:01:33 +00:00
< / details >
2022-05-01 16:32:23 +00:00
2024-02-10 21:30:13 +00:00
# 공격 요약
2021-08-30 22:36:25 +00:00
2024-07-17 18:37:22 +00:00
일부 알려진 평문 데이터에 **비밀**을 **추가**하고 해당 데이터를 해싱하여 **서명**하는 서버를 상상해보십시오. 다음을 알고 있다면:
2021-08-30 22:36:25 +00:00
2024-07-17 18:37:22 +00:00
* **비밀의 길이** (주어진 길이 범위에서도 브루트포스할 수 있음)
2024-02-10 21:30:13 +00:00
* **평문 데이터**
2024-07-17 18:37:22 +00:00
* **알고리즘 (이 공격에 취약함)**
* **패딩이 알려져 있음**
* 일반적으로 기본값을 사용하므로, 다른 3가지 요구 사항이 충족되면 이것도 사용됨
* 패딩은 비밀 + 데이터의 길이에 따라 다르며, 이는 비밀의 길이가 필요한 이유
2021-08-30 22:36:25 +00:00
2024-07-17 18:37:22 +00:00
그러면 **공격자**가 **데이터를 추가**하고 **이전 데이터 + 추가된 데이터**에 대한 유효한 **서명**을 **생성**할 수 있습니다.
2021-08-30 22:36:25 +00:00
2024-02-10 21:30:13 +00:00
## 어떻게?
2021-08-30 22:36:25 +00:00
2024-02-10 21:30:13 +00:00
기본적으로 취약한 알고리즘은 먼저 **데이터 블록을 해싱**한 다음, **이전에** 생성된 **해시** (상태)에서 **다음 데이터 블록을 추가**하고 **해싱**합니다.
2021-08-30 22:36:25 +00:00
2024-07-17 18:37:22 +00:00
그런 다음, 비밀이 "비밀"이고 데이터가 "데이터"인 경우, "secretdata"의 MD5는 6036708eba0d11f6ef52ad44e8b74d5b입니다.\
공격자가 문자열 "append"를 추가하려면:
2021-08-30 22:36:25 +00:00
2024-07-17 18:37:22 +00:00
* 64개의 "A"의 MD5를 생성합니다
* 이전에 초기화된 해시의 상태를 6036708eba0d11f6ef52ad44e8b74d5b로 변경합니다
* 문자열 "append"를 추가합니다
* 해시를 완료하면 결과 해시는 ** "비밀" + "데이터" + "패딩" + "append"**에 대한 유효한 것이 됩니다
2021-08-30 22:36:25 +00:00
2024-02-10 21:30:13 +00:00
## **도구**
2021-08-30 22:36:25 +00:00
2021-10-18 11:21:18 +00:00
{% embed url="https://github.com/iagox86/hash_extender" %}
2021-08-30 22:36:25 +00:00
2024-02-10 21:30:13 +00:00
## 참고 자료
2021-08-30 22:36:25 +00:00
2024-02-10 21:30:13 +00:00
이 공격에 대한 자세한 설명은 [https://blog.skullsecurity.org/2012/everything-you-need-to-know-about-hash-length-extension-attacks ](https://blog.skullsecurity.org/2012/everything-you-need-to-know-about-hash-length-extension-attacks )에서 찾을 수 있습니다.
2022-04-28 16:01:33 +00:00
2022-05-01 16:32:23 +00:00
2022-04-28 16:01:33 +00:00
< details >
2024-07-17 18:37:22 +00:00
< summary > < strong > 제로부터 영웅이 될 때까지 AWS 해킹 배우기< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team 전문가)< / strong > < / a > < strong > !< / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-02-10 21:30:13 +00:00
HackTricks를 지원하는 다른 방법:
2022-04-28 16:01:33 +00:00
2024-07-17 18:37:22 +00:00
* **회사가 HackTricks에 광고되길 원하거나** **PDF로 HackTricks 다운로드**하려면 [**구독 요금제** ](https://github.com/sponsors/carlospolop)를 확인하세요!
* [**공식 PEASS & HackTricks 스왜그** ](https://peass.creator-spring.com )를 구매하세요
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )를 발견하세요, 당사의 독점 [**NFTs** ](https://opensea.io/collection/the-peass-family ) 컬렉션
* **💬 [**Discord 그룹** ](https://discord.gg/hRep4RUj7f )에 가입하거나 [**텔레그램 그룹** ](https://t.me/peass )에 가입하거나 **트위터** 🐦 [**@hacktricks_live** ](https://twitter.com/hacktricks_live )**를 팔로우하세요.**
* **해킹 요령을 공유하려면** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) 및 [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) github 저장소에 PR을 제출하세요.
2022-04-28 16:01:33 +00:00
< / details >