0Pricing
Reverse Engineering & Binary Analysis Basics · 강의

행동 분석 기초

샌드박스와 모니터링 도구를 사용하여 통제된 환경에서 악성코드의 동작을 관찰하는 방법을 배웁니다.

행동 분석 기초은(는) CoddyKit의 무료 Reverse Engineering & Binary Analysis Basics 강의입니다. 이것은 4개 중 2번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Reverse Engineering & Binary Analysis Basics 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Reverse Engineering & Binary Analysis Basics 강의에는 총 4개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

Intro to Behavioral Analysis

Welcome to Basic Behavioral Analysis! In this lesson, we'll learn how to observe malware in action.

Behavioral analysis is like watching a suspect in a controlled environment to understand their habits and intentions. It's crucial for understanding how malware operates.

Dynamic Analysis: Malware in Action

Unlike static analysis (which examines code without running it), dynamic analysis involves executing the malware. This lets us see exactly what it does.

By running malware in a safe, isolated environment, we can observe its interactions with the operating system, network, and files.

The Safe Space: Sandboxes

To safely perform dynamic analysis, we use a sandbox. A sandbox is an isolated testing environment that mimics a real system.

It prevents malware from escaping and infecting your actual computer or network. Think of it as a virtual playpen for malicious programs.

Cloud vs. Local Sandboxes

Sandboxes come in two main flavors:

  • Cloud-based: Services like Any.Run or VirusTotal execute malware for you and provide a report. Great for quick checks!
  • Local: You set up a virtual machine (VM) on your own machine. This gives you more control and privacy for deeper analysis.

Building Your Local Lab with VMs

For local behavioral analysis, a Virtual Machine (VM) is essential. Software like VirtualBox or VMware Workstation allows you to run a full operating system (e.g., Windows XP/7/10) within your current OS.

Key setup steps:

  • Install VM software.
  • Create a new VM with a guest OS.
  • Configure network settings (often 'Host-Only' or 'NAT' to isolate).
  • Take a snapshot of a clean state!

Watching Processes with ProcMon

One of the most powerful tools for local analysis is Process Monitor (ProcMon) from Sysinternals. It captures real-time file system, Registry, and process/thread activity.

When malware runs, ProcMon logs every action, like creating files, modifying registry keys, or launching new processes. It's a treasure trove of data!

Tracking Network Connections

Malware often communicates with external servers (Command and Control, or C2). Monitoring network traffic is vital.

Tools like Wireshark capture raw network packets, while Fiddler (for HTTP/S) acts as a proxy to show web requests. Look for unusual IP addresses, domain names, or data exfiltration.

Registry & File System Changes

Malware frequently modifies the Windows Registry for persistence (to run on startup) or to alter system settings. It also drops new files (executables, DLLs) or modifies existing ones.

Tools like ProcMon or Regshot (which compares registry snapshots) help identify these changes. Always look for new entries in common startup locations!

Making Sense of the Output

After running malware, you'll have a lot of data. Here's what to look for:

  • New processes: Did the malware launch anything else?
  • File system changes: New files, deleted files, modified files.
  • Registry modifications: Especially in startup keys like Run.
  • Network activity: Connections to suspicious IPs/domains, unusual ports.

Behavioral Analysis Check

Which of the following are common indicators of malicious activity you would look for during basic behavioral analysis?

Lesson Summary: Behavioral Analysis

Great job! You've learned the fundamentals of basic behavioral analysis.

  • We use sandboxes (local VMs or cloud services) to safely execute malware.
  • Tools like Process Monitor track system changes.
  • Wireshark and Fiddler help analyze network traffic.
  • We look for new processes, file changes, registry modifications, and suspicious network connections to understand malware's intent.

Keep practicing in your isolated lab!

자주 묻는 질문

“행동 분석 기초” 강의는 무료인가요?

네 — “행동 분석 기초” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Reverse Engineering & Binary Analysis Basics 강의 전체를 잠금 해제할 수 있습니다. Reverse Engineering & Binary Analysis Basics 강의에는 총 4개의 강의가 포함되어 있습니다.

“행동 분석 기초”에서 뭘 배우나요?

샌드박스와 모니터링 도구를 사용하여 통제된 환경에서 악성코드의 동작을 관찰하는 방법을 배웁니다. 브라우저에서 직접 실행하는 실습 코드로 Reverse Engineering & Binary Analysis Basics을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

Reverse Engineering & Binary Analysis Basics을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 Reverse Engineering & Binary Analysis Basics은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 2번째 강의입니다.

“행동 분석 기초” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 Reverse Engineering & Binary Analysis Basics 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 Reverse Engineering & Binary Analysis Basics 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. 악성코드의 유형과 동작
  2. 행동 분석 기초
  3. 악성코드 언패킹 입문
  4. 침해 지표와 YARA 규칙
← Reverse Engineering & Binary Analysis Basics(으)로 돌아가기