Google Android 까지 4.4.1 Volume Management Daemon VolumeManager.cpp 아이디 권한 상승
| CVSS 메타 임시 점수 | 현재 익스플로잇 가격 (≈) | CTI 관심 점수 |
|---|---|---|
| 4.2 | $0-$5k | 0.00 |
요약
해당 취약점이 문제가 있는로 분류되어 Google Android 까지 4.4.1에서 발견되었습니다. 영향을 받는 것은 알 수 없는 함수 파일 VolumeManager.cpp의 컴포넌트 Volume Management Daemon의입니다. 이 조작 은(는) 인자 아이디에 대해 수행될 때 권한 상승을(를) 초래합니다. 사용 가능한 익스플로잇이 없습니다. 해당 구성 요소를 업그레이드하는 것이 바람직합니다.
세부
해당 취약점이 문제가 있는로 분류되어 Google Android 까지 4.4.1에서 발견되었습니다. 영향을 받는 것은 알 수 없는 함수 파일 VolumeManager.cpp의 컴포넌트 Volume Management Daemon의입니다. 이 조작 은(는) 인자 아이디에 대해 수행될 때 권한 상승을(를) 초래합니다. 이 문제는 CWE를 통해 CWE-269로 선언되었습니다. 이 권고문은 다음과 같이 요약됩니다:
Vold (Volume Management Daemon) is a daemon running as root, which main goal is to handle removable media devices. ASEC are secured containers allowing applications to securely store data on the SD card, and have been introduced back in 2010. These containers have been created because the SD Card filesystem (VFAT) does not allow privileges separation.이 취약점은 공개되었습니다 2014. 06. 03. Fabien Perigaud에 의해 CERT-LEXSI와 함께 Local root vulnerability in Android 4.4.2로 Blog Post로 (웹사이트). blog.cassidiancybersecurity.com에서 해당 권고문이 공유되고 있습니다.
기술 세부 정보가 제공됩니다. 이 취약성의 인기도가 평균보다 낮습니다. 사용 가능한 익스플로잇이 없습니다. 지금 시점에서 이 익스플로잇의 가격은 알 수 없습니다. MITRE ATT&CK 프로젝트에서 T1068 공격 기법을 선언합니다. 보안 권고문은 다음과 같이 언급합니다:
there is no check on the "id" variable, which is the name given by the user to its ASEC container. It is therefore possible to perform a basic path traversal, to create the ASEC file and its mount point in a different directory than expected, as for example one the "attacker" can write into. (...) This means that if the mount point already exists, no error is raised, and the container is correctly mounted in "mountPoint". Guess what? If "mountPoint" already exists AND is a symlink to an existing directory, the ASEC container will be mounted over this directory. And the user will have full access to it, allowing him to write new files inside.
정의되지 않음로 설정됩니다. 0-day로서의 예상 지하 시장 가격은 $100k 그리고 더 정도였습니다.
4.4.2 버전으로 업그레이드하면 이 문제를 해결할 수 있습니다. 해당 구성 요소를 업그레이드하는 것이 바람직합니다. 다음 소스 코드를 통해 취약점이 조치됩니다:
bool VolumeManager::isLegalAsecId(const char *id) const {
size_t i;
size_t len = strlen(id);
if (len == 0) {
return false;
}
if ((id[0] == '.') || (id[len - 1] == '.')) {
return false;
}
for (i = 0; i < len; i++) {
if (id[i] == '.') {
// i=0 is guaranteed never to have a dot. See above.
if (id[i-1] == '.') return false;
continue;
}
if (id[i] == '_' || id[i] == '-') continue;
if (id[i] >= 'a' && id[i] <= 'z') continue;
if (id[i] >= 'A' && id[i] <= 'Z') continue;
if (id[i] >= '0' && id[i] <= '9') continue;
return false;
}
return true;
}
권고문에는 다음과 같은 언급이 포함되어 있습니다:Google has now added a call to a new function "isLegalAsecId()" at the beginning of each function dealing with ASEC ids.
제품
유형
공급 업체
이름
버전
- 1.0
- 1.1
- 1.5
- 1.6
- 2.0
- 2.0.1
- 2.1
- 2.2
- 2.2.1
- 2.2.2
- 2.2.3
- 2.3
- 2.3.1
- 2.3.2
- 2.3.3
- 2.3.4
- 2.3.5
- 2.3.6
- 2.3.7
- 3.0
- 3.1
- 3.2
- 3.2.1
- 3.2.2
- 3.2.3
- 3.2.4
- 3.2.5
- 3.2.6
- 4.0
- 4.0.1
- 4.0.2
- 4.0.3
- 4.0.4
- 4.1
- 4.1.1
- 4.1.2
- 4.2
- 4.2.1
- 4.2.2
- 4.3
- 4.3.1
- 4.4
- 4.4.1
특허
웹사이트
- 공급 업체: https://www.google.com/
CPE 2.3
CPE 2.2
CVSSv4
VulDB 벡터: 🔍VulDB 신뢰성: 🔍
CVSSv3
VulDB 메타 베이스 점수: 4.4VulDB 메타 임시 점수: 4.2
VulDB 기본 점수: 4.4
VulDB 임시 점수: 4.2
VulDB 벡터: 🔍
VulDB 신뢰성: 🔍
CVSSv2
| AV | AC | Au | C | I | A |
|---|---|---|---|---|---|
| 💳 | 💳 | 💳 | 💳 | 💳 | 💳 |
| 💳 | 💳 | 💳 | 💳 | 💳 | 💳 |
| 💳 | 💳 | 💳 | 💳 | 💳 | 💳 |
| 벡터 | 복잡성 | 인증 | 기밀성 | 진실성 | 유효성 |
|---|---|---|---|---|---|
| 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 |
| 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 |
| 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 |
VulDB 기본 점수: 🔍
VulDB 임시 점수: 🔍
VulDB 신뢰성: 🔍
악용
수업: 권한 상승CWE: CWE-269 / CWE-266
CAPEC: 🔍
ATT&CK: 🔍
물리적인: 부분적으로
현지: 네
원격: 아니요
유효성: 🔍
상태: 정의되지 않음
가격 예측: 🔍
현재 가격 추정: 🔍
| 0-Day | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 |
|---|---|---|---|---|
| 오늘 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 | 잠금 해제하다 |
위협 인텔리전스
관심: 🔍활성 배우: 🔍
활성 APT 그룹: 🔍
대책
추천: 업그레이드상태: 🔍
0일 시간: 🔍
업그레이드: Android 4.4.2
타임라인
2014. 06. 03. 🔍2014. 06. 04. 🔍
2019. 04. 02. 🔍
출처
공급 업체: google.com권고: Local root vulnerability in Android 4.4.2
연구원: Fabien Perigaud
조직: CERT-LEXSI
상태: 정의되지 않음
GCVE (VulDB): GCVE-100-13431
scip Labs: https://www.scip.ch/en/?labs.20150917
기타: 🔍
항목
만들어진: 2014. 06. 04. AM 10:19업데이트됨: 2019. 04. 02. PM 06:21
변경 사항: 2014. 06. 04. AM 10:19 (50), 2019. 04. 02. PM 06:21 (2)
완벽한: 🔍
Cache ID: 216::103
Be aware that VulDB is the high quality source for vulnerability data.
아직 댓글이 없습니다. 언어: ko + en.
댓글을 작성하려면 로그인하세요.