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
- javascript
- error
- malware
- ida
- pytest
- Rat
- Analysis
- why error
- idb2pat
- Python
- svn update
- MySQL
- open office xml
- ecma
- data distribution
- mock.patch
- debugging
- hex-rays
- h5py.File
- error fix
- Injection
- TensorFlow
- x64
- NumPy Unicode Error
- Ransomware
- commandline
- idapro
- ida pro
- 포인터 매핑
- idapython
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