0Pricing
Secure Coding & OWASP Top 10 for Backend · レッスン

ソフトウェアとデータの完全性検証

コード、設定、重要なデータの完全性を検証する仕組みを実装し、不正な改ざんや破損を防止します。

「ソフトウェアとデータの完全性検証」はCoddyKit上の無料Secure Coding & OWASP Top 10 for Backendレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはSecure Coding & OWASP Top 10 for Backend学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Secure Coding & OWASP Top 10 for Backendコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

What is Data Integrity?

In secure backend development, integrity means ensuring that data, code, and configurations haven't been tampered with or altered in an unauthorized way. Think of it as protecting against silent, malicious changes.

Without integrity, an attacker could:

  • Modify your application's code.
  • Change critical configuration settings.
  • Alter sensitive data in your database.

These changes can lead to system malfunction, data breaches, or complete compromise.

Hashing for Integrity

A core tool for integrity verification is cryptographic hashing. A hash function takes an input (like a file or a string) and returns a fixed-size string of bytes, called a hash value or digest.

Key properties of a good hash function:

  • Deterministic: Same input always gives same output.
  • One-way: Hard to reverse the hash to get the original input.
  • Collision-resistant: Hard to find two different inputs that produce the same hash.

Popular algorithms include SHA-256 and SHA-512.

Simple Hashing Example (Java)

Let's see how to generate a SHA-256 hash in Java. Notice how even a tiny change in the input string completely changes the hash output.

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.nio.charset.StandardCharsets;
import java.util.Base64;

public class Main {
  public static void main(String[] args) {
    String originalString = "CoddyKit is awesome!";
    String alteredString = "CoddyKit is awesome."; // Small change

    try {
      MessageDigest digest = MessageDigest.getInstance("SHA-256");

      byte[] hash1 = digest.digest(originalString.getBytes(StandardCharsets.UTF_8));
      String encodedHash1 = Base64.getEncoder().encodeToString(hash1);
      System.out.println("Original Hash: " + encodedHash1);

      byte[] hash2 = digest.digest(alteredString.getBytes(StandardCharsets.UTF_8));
      String encodedHash2 = Base64.getEncoder().encodeToString(hash2);
      System.out.println("Altered Hash:  " + encodedHash2);

    } catch (NoSuchAlgorithmException e) {
      e.printStackTrace();
    }
  }
}

Checking Software & Files

When you download software, especially from open-source projects, you'll often find a corresponding hash value (like an MD5 or SHA-256 checksum) provided. This allows you to verify the download.

Steps for verification:

  1. Download the software and its provided hash.
  2. Generate the hash of your downloaded file locally.
  3. Compare your generated hash with the provided one.

If they match, the file hasn't been tampered with during download or storage.

Securing Configuration Files

Configuration files (.env, application.properties, web.xml) contain vital settings like database connection strings, API keys, and server ports. Tampering with these can open severe security holes.

To protect them:

  • Restrict access: Use strong file system permissions.
  • Hash at startup: Calculate and verify hashes of critical config files when your application starts.
  • Version control: Track changes using Git; prevent direct manual edits on production.

Protecting Data in Databases

Ensuring data integrity in databases goes beyond just hashing. It involves preventing unauthorized or accidental changes to the stored information.

Key database integrity mechanisms:

  • Constraints: PRIMARY KEY, UNIQUE, FOREIGN KEY, CHECK constraints enforce data rules.
  • Transactions: Ensure operations are atomic (all or nothing) to prevent partial updates.
  • Audit logs: Record who, what, and when data was changed.

For sensitive data, consider application-level hashing before storage, especially for immutable fields.

Digital Signatures & Trust

While hashing verifies what a file is, digital signatures verify who created it and that it hasn't been altered since it was signed. They add a layer of authenticity.

How they work:

  • The creator hashes the data.
  • They encrypt the hash with their private key (this is the "signature").
  • Anyone can use the creator's public key to decrypt the signature, get the original hash, and then compare it to a hash they calculate locally.

If hashes match, the signature is valid and the data is authentic.

Integrity During Execution

Integrity checks aren't just for files at rest. You can also monitor your application's integrity while it's running. This helps detect compromises that occur after deployment.

Examples of runtime checks:

  • Memory integrity: Detect unauthorized modifications to process memory.
  • Code integrity: Verify that loaded libraries or critical code segments haven't been swapped out.
  • System call monitoring: Look for unusual or unauthorized system calls from your application.

These are often part of advanced security solutions like RASP.

Continuous Integrity Monitoring

Manually checking integrity is not scalable. Automating these processes is crucial for continuous security.

Strategies for automation:

  • CI/CD integration: Hash critical files (code, configs) during build and deployment.
  • File Integrity Monitoring (FIM): Tools that continuously scan critical directories for changes and alert on deviations.
  • Scheduled tasks: Periodically run scripts to hash and compare critical system components.

Alerts from FIM tools should be integrated into your security monitoring system.

Check Your Integrity Knowledge

You've learned about various ways to ensure software and data integrity. Let's test your understanding!

Recap: Integrity is Key

We've explored how vital software and data integrity are for a secure backend. By implementing integrity verification mechanisms, you can protect against unauthorized tampering and ensure your systems behave as expected.

Remember to:

  • Use cryptographic hashing for files and critical data.
  • Securely manage configuration files.
  • Leverage database integrity features.
  • Consider digital signatures for authenticity.
  • Automate integrity monitoring with FIM tools.

These practices build a strong foundation for trust and reliability in your applications.

よくある質問

「ソフトウェアとデータの完全性検証」レッスンは無料ですか?

はい。「ソフトウェアとデータの完全性検証」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Secure Coding & OWASP Top 10 for Backendコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Secure Coding & OWASP Top 10 for Backendコースには全4レッスンが含まれています。

「ソフトウェアとデータの完全性検証」で何を学びますか?

コード、設定、重要なデータの完全性を検証する仕組みを実装し、不正な改ざんや破損を防止します。 ブラウザで直接実行するハンズオンコードでSecure Coding & OWASP Top 10 for Backendを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Secure Coding & OWASP Top 10 for Backendを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのSecure Coding & OWASP Top 10 for Backendは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン3/4です。

「ソフトウェアとデータの完全性検証」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このSecure Coding & OWASP Top 10 for Backendレッスンでコードを書いて実行できますか?

はい。すべてのSecure Coding & OWASP Top 10 for Backendレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. 安全なロギングとアラート
  2. Runtime Application Self-Protection(RASP)
  3. ソフトウェアとデータの完全性検証
  4. 監査証跡と改ざん検知ログ
← Secure Coding & OWASP Top 10 for Backendに戻る