Cuckoo sandbox 에서 최신 Yara rule 설치법
O_o22
·2021. 11. 4. 23:59
http://virustotal.github.io/yara/
YARA - The pattern matching swiss knife for malware researchers
YARA in a nutshell YARA is a tool aimed at (but not limited to) helping malware researchers to identify and classify malware samples. With YARA you can create descriptions of malware families (or whatever you want to describe) based on textual or binary pa
virustotal.github.io
https://github.com/virustotal/yara
GitHub - VirusTotal/yara: The pattern matching swiss knife
The pattern matching swiss knife. Contribute to VirusTotal/yara development by creating an account on GitHub.
github.com
https://yara.readthedocs.io/en/latest/gettingstarted.html
Getting started — yara 4.1.0 documentation
Make sure you have automake, libtool, make and gcc and pkg-config installed in your system. Ubuntu and Debian users can use: If you plan to modify YARA's source code you may also need flex and bison for generating lexers and parsers: Some of YARA's feature
yara.readthedocs.io
공식 yara 웹사이트와 github + yara documentation 이다. 위 사이트에서 파일을 다운받자
위에서 받은 파일이 아래의 첨부 파일과 동일하다
시작하기 전 설치해야할 모듈들을 한 번에 설치한다 (없으면 에러)
sudo apt-get install -y automake libtool make gcc flex bison libssl-dev libjansson-dev libmagic-dev pkg-config |
다운로드 받은 경로에서 진행 tar -zxf yara-4.1.3.tar.gz cd yara-4.1.3 ./bootstrap.sh --------------------------------------------- 설치를 진행 ./bootstrap.sh ./configure make sudo make install --------------------------------------------- 설치가 잘 되었는지 확인 make check --------------------------------------------- 마지막 마무리 ./configure --enable-cuckoo --enable-magic --enable-dotnet make sudo make install --------------------------------------------- yara 파이썬 설치 find / -name 'yara-python' 2>/dev/null 위 처럼 yara-python의 경로를 찾고 이동한다. cd /home/komi22/.local/share/Trash/files/yara-3.2.0/yara-python python setup.py build sudo python setup.py install |
'프로젝트 (Project) > Cuckoo Sandbox를 이용한 악성코드 다중 동적분석 기능 개발' 카테고리의 다른 글
Cuckoo sandbox를 이용한 악성코드 샘플, 분석 파일 (0) | 2021.11.04 |
---|---|
Ubuntu 에서 Cuckoo Sandbox 설치 + 설정 + 악성코드 테스트 (15) | 2021.09.24 |
Cuckoo Sandbox 작동 확인용 악성코드 샘플 (0) | 2021.09.22 |
우분투 cuckoo 설치 명령어 쉘 (0) | 2021.09.06 |
우분투(Ubuntu)에서 도커(Docker) 설치 (0) | 2021.09.05 |