Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- ecma
- idb2pat
- error fix
- why error
- hex-rays
- MySQL
- javascript
- ida
- NumPy Unicode Error
- Ransomware
- svn update
- x64
- open office xml
- idapython
- pytest
- error
- mock.patch
- commandline
- data distribution
- Python
- debugging
- malware
- TensorFlow
- ida pro
- idapro
- 포인터 매핑
- Analysis
- Injection
- h5py.File
- Rat
Archives
- Today
- Total
13 Security Lab
Reyptson Ransomware 본문
md5: 4a56896b83369002371e16f1b9df9f8c
Reyptson Ransomware
랜섬웨어 기능 외에 ThunderBird 메일 내 연락처 목록을 탈취하여 스팸메일을 발송하는 기능을 수행한다.
Reyptson Ransomware 감염 시 아래 팝업 윈도우 출력
열어 보면 아래와 같은 함수 종류들을 쓰고있다
User ID PW 정보들을 찾는다
Mozilla Thunderbird 설치 여부를 확인한다.
아래와 같이 Thunderbird 메일 계정을 찾는 것을 알 수 있다.
Decrypt 함수
아래는 감염 제외 경로 이다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
private string[] excluidas = new string[]
{
"c:\\windows",
"c:\\program files (x86)",
"c:\\programdata",
"c:\\system volume information",
"c:\\windows.old",
"c:\\users\\default",
"c:\\users\\all users",
"c:\\users\\public",
"c:\\program files",
"c:\\$recycle.bin",
"c:\\users\\" + Environment.UserName.ToLower() + "\\appdata"
};
|
|
Win7 x86 실행 시 exception

Comments