ConceptioArchivearXiv CS
arXiv CSopen access

GoodDiffusion: Proactive Copyright Protection for Diffusion Bridge Models via Learnable Sample-specific Signatures

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
cryptography, security, privacy, cybersecurity

GoodDiffusion: Proactive Copyright Protection for Diffusion Bridge Models via Learnable Sample-specific Signatures

Shixi Qin 1 Zhiyong Yang* 1 Shilong Bao 1 Zitai Wang 2 Qianqian Xu 2 3 Qingming Huang* 1 2

1. Introduction

arXiv:2606.29759v1 [cs.CR] 29 Jun 2026

Abstract

Diffusion-based generative models are now widely used to produce high-quality images in products and creative workflows (Ho et al., 2020; Song & Ermon, 2020; Song et al., 2020; Nichol & Dhariwal, 2021; Dhariwal & Nichol, 2021; Karras et al., 2022), making copyright protection (CP)1 (Chen et al., 2022a) a practical requirement for real-world deployment. Without safeguards, these models can mass-produce unlicensed derivatives, harming creators’ livelihoods and causing direct financial loss. This has spurred growing demand (Zhang et al., 2018) to deter and prevent unauthorized use.

This paper tackles the challenging problem of developing a proactive copyright protection mechanism that cuts off unauthorized use of diffusion bridge models. Existing studies largely fall into post-hoc attribution (e.g., watermarking and fingerprinting) or degradation-only defenses, which offer only indirect and limited preventive effect. We therefore propose GoodDiffusion, inspired by backdoor mechanisms, to enforce model-level use-time control by internalizing authorization into the generative process through a selectively permissive, otherwise closed behavior. Specifically, GoodDiffusion preserves high-quality generation for authorized queries carrying valid signatures, yet refuses to generate for unauthorized inputs. We further theoretically show that naive static-signature designs (like conventional backdoor injection) are fundamentally fragile, since a surrogate signature can be efficiently recovered via gradient-based optimization. To strengthen security, we introduce a Learnable Signature Network (LSN) that assigns sample-specific signatures conditioned on each input. This breaks the universality of signatures and prevents a surrogate from transferring across inputs. Extensive experiments validate that GoodDiffusion effectively blocks unauthorized use while maintaining strong generation quality for authorized users. The code is available at https://github.com/ qsx830/GoodDiffusion.

Inspired by earlier CP successes in deep learning, most diffusion-model defenses currently rely on output-level watermarking or fingerprinting (Zhao et al., 2023; Xie et al., 2025; Wang et al., 2025b; Gai et al., 2025), i.e., embedding imperceptible yet detectable signals in generated images for later attribution. While valuable for traceability, such watermark-based protection is passive: it provides only after-the-fact evidence rather than real-time prevention, allowing unauthorized generations to spread at scale before detection and enforcement can catch up. A meaningful step toward mitigating this issue is the recently proposed PCDiff (Gai et al., 2025), which introduces a keyconditioned module that proactively degrades output quality under unauthorized use. However, we argue that such a degradation-only strategy may be insufficient in the wild: it does not fully cut off unauthorized generation, where thieves can still obtain usable images (albeit at reduced quality). Therefore, we ask the following question: Can we develop a proactive copyright protection mechanism that completely prevents unauthorized generation at the model-level?

1

School of Computer Science and Technology, University of Chinese Academy of Sciences, Beijing 101408, China 2 State Key Laboratory of AI Safety, Institute of Computing Technology, Chinese Academy of Sciences, Beijing, China 3 Beijing Academy of Artificial Intelligence (BAAI), Beijing, China. Correspondence to: Zhiyong Yang <[email protected]>, Qingming Huang <[email protected]>.

In this paper, we present GoodDiffusion, a first step toward answering this question. Inspired by the adage “No Ticket, No Ride,” we aim to endow diffusion models with proactively model-level control over authorized (with tickets)

Proceedings of the 43 rd International Conference on Machine Learning, Seoul, South Korea. PMLR 306, 2026. Copyright 2026 by the author(s).

1

The law of the U.S. has a comprehensive introduction for copyright protection: https://www.ce9.uscourts.gov/ jury-instructions/node/257.

1

Proactive Copyright Protection for Diffusion Generative Models

versus unauthorized (without tickets) generation requests. In other words, GoodDiffusion seeks to learn a selectively permissive, otherwise closed condition (C): it preserves high-quality generation under authorized use, yet refuses to generate under unauthorized or out-of-control queries. This shifts CP from post-hoc output level to model-level prevention internalized in the generative process itself. More interestingly, we find this principle to be conceptually aligned with backdoor mechanisms (Chou et al., 2023; Zhai et al., 2023; Qin et al., 2025), where a diffusion model can be steered into producing incorrect outputs when a malicious trigger is embedded in the input.

sion. GoodDiffusion achieves strong protection behavior for unauthorized usages, while preserving satisfactory generation quality under authorized inferences. Overall, our contributions can be summarized as follows: • An Early Trial for Proactive CP. We propose GoodDiffusion, a model-level prevention framework that internalizes authorization into the generative process to proactively cut off unauthorized generation. • Some Theoretical Insights. We show that static signature designs are fundamentally fragile, as one can efficiently recover a surrogate signature via gradient-based optimization (Theorem 4.1). In contrast, our learnable sample-specific signatures mitigate this vulnerability by preventing a transferable surrogate signature.

Motivated by this connection, we first introduce a naive backdoors-for-good baseline that uses a fixed perturbation pattern (rather than an explicit trigger) to pursue the above conditional behavior-switching mode (i.e., (C)). Taking diffusion bridge models (Liu et al., 2023; Zhou et al., 2024) for image-to-image (I2I) tasks as an example, we train the model to produce high-quality outputs only when the input carries a predefined signature (implemented as a fixed perturbation), and to emit a predefined warning response for clean, unlicensed queries. Despite its apparent effectiveness, we theoretically show that this naive design is fragile in practice since a malicious adversary with full access to the model can efficiently recover the signature via gradientbased optimization (Theorem 4.1).

• Extensive Evaluation. Comprehensive experiments validate that GoodDiffusion achieves strong protection performance while preserving high-quality generation for authorized users.

2. Related Work Diffusion Bridge Models. Diffusion models (Ho et al., 2020; Song & Ermon, 2020; Song et al., 2020; Nichol & Dhariwal, 2021; Dhariwal & Nichol, 2021; Karras et al., 2022) have achieved remarkable success in image generation and various downstream tasks (Chung et al., 2023; Huang et al., 2024; Yu et al., 2024; Cheng et al., 2025). Building on this progress, diffusion bridge models (DBM) (Liu et al., 2023; Wang et al., 2025a) generalize the paradigm by building stochastic processes between two arbitrary distributions. In particular, diffusion Schrödinger bridge models (De Bortoli et al., 2021; Chen et al., 2022b; Shi et al., 2023; Deng et al., 2024b; Qiu et al., 2025) realize entropy-regularized optimal transport. Apart from these, DDBM (Zhou et al., 2024) and its variants (Zheng et al., 2025; He et al., 2024) build diffusion bridges via Doob’s h-transform (Doob & Doob, 1984), and parameterize the drift term with a score-based model trained by denoising score-matching (Vincent, 2011).

To address this issue, we further develop a Learnable Signature Network (LSN) to leverage dynamic, sample-specific signatures conditioned on each input. The difference between the fixed signature and the sample-specific signatures can be viewed from a geometric perspective. It is known that images lie on a low-dimensional manifold embedded in the high-dimensional pixel space (Carlsson, 2009). Intuitively, a fixed signature can be interpreted as a fixed vector in the pixel space, leading to a parallel shift of the entire image manifold. On the contrary, the sample-specific signatures produce input-dependent perturbations, resulting in a nonlinearly deformed image manifold that cannot be represented by a simple vector addition. This input-dependent design also echoes the broader observation in long-tailed learning that real-world data often contains sparse or tail regions where uniform operations may be suboptimal (Wang et al., 2024a;c; Zhao et al., 2024; 2025; 2026). Empirical analysis validates the intuition that there exists no universal surrogate signature that can be recovered in this samplespecific design. Even if a thief obtains a signature for a specific input, the signature cannot be transferred to other inputs, thus enhancing the security of our method.

Passive Protection. Watermarking techniques have been widely adopted for copyright protection (Liu et al., 2022; Chen et al., 2023). Prior works on diffusion models (Xie et al., 2025) offer passive defenses by embedding specific patterns as watermarks into the Gaussian noise input (Wen et al., 2023; Yang et al., 2024b), the diffusion process (Yang et al., 2024a), or the generated images (Zhao et al., 2023; Peng et al., 2025). Other watermarking methods integrate discriminative watermarks into the diffusion process (Fernandez et al., 2023; Feng et al., 2024; Min et al., 2024; Wang et al., 2025b). Once the predefined watermarks are detected, the model owner can claim the copyright. Beyond water-

We conduct extensive experiments of three representative I2I tasks (i.e., super-resolution, inpainting, and deblurring) on CelebA and ImageNet datasets with various diffusion bridge models to validate the effectiveness of GoodDiffu-

2

Proactive Copyright Protection for Diffusion Generative Models

marking, (Deng et al., 2024a) proposes a non-transferable learning mechanism, which enables the diffusion model to be resistant to fine-tuning.

denoising score-matching (DSM) objective (Vincent, 2011): h i 2 L(θ) = Et,x0 ,x1 ,xt λ(t) ∥sθ (xt , t) − s∗ (xt , t)∥2 , (1)

Proactive Protection. In the context of traditional discriminative models, researchers explored encrypting model parameters or architectures (Lin et al., 2020; Xue et al., 2022; Zhou et al., 2023; Mu et al., 2024; Sun et al., 2025) to proactively prevent unauthorized access. In addition, some works adopt backdoor attacks for CP (Li et al., 2024; 2025), where the model produces correct predictions only when a specific trigger is present in the inputs. Such proactive protection has been extended to multimodel datasets (Zhang et al., 2025). As for diffusion models, some works apply cryptographic techniques (Chen & Yan, 2024; Yao, 2024; He et al., 2025; Guo et al., 2025) to proactively ensure the privacy and security of data, prevent the abuse of diffusion models in downstream applications (Liu et al., 2025), but they do not directly protect the copyright of diffusion models. Recently, PCDiff (Gai et al., 2025) proposes an encryption module in diffusion models to degrade the unauthorized generation quality. Despite its proactive quality degradation, PCDiff does not fully deny unauthorized generation.

where s∗ (xt , t) = ∇xt log p(xt ) is the ground-truth score function, sθ (xt , t) is the learnable model with parameters θ, and λ(t) is a time-dependent weighting function. After training, one can sample from the learned bridge using standard reverse-time SDE or probability-flow ODE solvers (Ho et al., 2020; Song et al., 2021; Lu et al., 2022). 3.2. Backdoor Attacks on Diffusion Models Backdoor attacks (Chou et al., 2023; Zhai et al., 2023; Qin et al., 2025) aim to manipulate the behavior of diffusion models at inference. Formally, the attacker injects specific trigger patterns k into the training data x1 as poisoned inputs: x̃1 = x1 + k. Accordingly, given a clean training set D = {(x1 , x0 )i }N i=1 , the poisoned training set D̃ = {(x̃1 , x̄0 )i }N can be constructed, where x̄0 is a target i=1 image specified by the attacker. Then, the diffusion model is jointly trained on D and D̃ to learn the backdoor behavior as follows: Ltotal (θ) = (1 − π) · LD (θ) + π · LD̃ (θ),

3. Preliminary

(2)

where π ∈ (0, 1) is the poison rate, and LD (θ) and LD̃ (θ) are the denoising score-matching losses in Eq. 1 calculated on the datasets D and D̃ respectively. At inference time, the backdoored diffusion model produces the predefined output x̄0 with poisoned inputs x̃1 ; otherwise, it yields normal outputs x0 for clean inputs x1 .

In this paper, we study the copyright protection (CP) in a representative Image-to-Image (I2I) diffusion bridge model (DBM) (Zhou et al., 2024), which directly takes images as inputs and generates target images. The key idea is to implement a special backdoor attack that injects samplespecific signatures into the inputs. Although we take DBM as an example, the core idea of proactive CP can be easily extended to other types of diffusion models (e.g., text-toimage models) by designing proper backdoor attacks, which is discussed in Appendix B.9.

3.3. Threat Model and Protection Goals In this paper, we propose to protect the copyright of a DBM against unauthorized model thieves. We summarize the model thief’s capabilities and the protection goals as follows.

In this section, we first introduce the preliminaries of DBM and backdoor attacks. Then, we formalize the overall settings of the CP problem.

Model Thief’s Capabilities. We assume a strong white-box model thief who has full access to the model parameters and architecture from the authorized user. However, since the signature service is separately maintained by the model owner, the thief cannot access the legitimate signature service. In addition, we assume the thief has limited computational resources (e.g., it is not feasible to brute-force all possible signatures), otherwise the thief does not need to steal the model but train a new one from scratch.

3.1. Diffusion Bridge Models The DBM model aims to construct a diffusion process between two arbitrary distributions, enabling direct image generation conditioned on a source image distribution. Obviously, the DBM model is suitable for multiple image I2I tasks, such as super-resolution, inpainting, and deblurring.

Protection Goals. Overall, the protection goals can be summarized as follows:

Formally, given a pair of images sampled from a joint distribution (x0 , x1 ) ∼ p(x0 , x1 ), the DBM aims to build the forward and backward diffusion processes via the Doob’s htransform (Doob & Doob, 1984; Rogers & Williams, 2000). One can parameterize the diffusion bridge model via the

(G1) The diffusion model can generate high-quality images exclusively when the valid signatures are provided. (G2) The protection method should be secure against malicious model thieves in the white-box scenario. 3

Proactive Copyright Protection for Diffusion Generative Models Original Inputs 𝑝 𝒙1

Static Signature (White-box vulnerable) Static 𝒌 can be recovered

𝑵∗ Static 𝒌

Watermarks do not directly prevent unauthorized generation Target Images 𝑝auth 𝒙0

Optimization loop Bypass around “𝑵∗ ” Dynamic 𝒌(𝒙) can defend against recovery

Optimize Surrogate 𝑵∗

Sample-Specific Signatures (White-box Robust) LSN

𝒌 𝒙𝟏 𝒌 𝒙2

Signatures 𝒌 𝒙1

+

Authorized Inputs ෥1 𝑝auth 𝒙

Watermarked Images

GoodDiffusion (Ours) (authorized) GoodDiffusion (Ours) Early Proactive Control: Signature Injection ෥1 𝑝 𝒙1 → 𝑝auth 𝒙

𝒌 𝒙3

𝑔𝜙 𝒙

Warning ഥ0 𝛿 𝒙−𝒙

Signatures vary across samples

No Universal Surrogate

GoodDiffusion (Ours) prevents unauthorized generation by a warning image (Proactive Defense)

Figure 1. Overview of GoodDiffusion. (Left) The static signature design is vulnerable in white-box scenarios, while the sample-specific signature design can effectively defend against malicious model thieves. (Right) The trained DBM integrates two diffusion bridges. The authorized trajectory (blue) follows pauth (x̃1 ) → pauth (x0 | x̃1 ). The unauthorized trajectory (red) follows pwarn (x1 ) → pwarn (x̄0 ). Although watermarks can be used for passive protection, the gap between watermarked and non-watermarked images may be imperceptible to human eyes, thus still allowing unauthorized usage. However, GoodDiffusion provides early proactive control: the unauthorized user can only generate the warning image, which is completely different from the target images.

4. GoodDiffusion

diffusion trajectory for unauthorized uses.

4.1. Motivation

Given this motivation, how to design such a backdoor attack for CP? Next, we formalize this idea into the proposed GoodDiffusion, starting from an intuitive, naive implementation, and then enhancing its security in white-box scenarios.

We seek a proactive copyright protection (CP) method for diffusion bridge models (DBM). Compared to watermark defenses, proactive protection aims to directly prevent unauthorized usage at the very beginning of the diffusion process.

4.2. Backdoor for Good

To implement this, the key challenge is to keep the protection mechanism effective in the white-box scenario, where the model thief has already obtained an executable copy of the model, including the model weights, architecture, and additional items for model encryption. In such an extreme case, any defense relying on parameter encryption is brittle.

Existing backdoor attacks in diffusion models aim to mislead the model to produce incorrect outputs. In contrast, the GoodDiffusion proposes to leverage backdoor attacks for good purposes, i.e., to protect the copyright of DBM. In particular, the core idea is to reverse the generation objectives of conventional backdoor attacks: the DBM generates highquality outputs with triggered inputs; otherwise, it yields incorrect images. As such, we prepare a special kind of perturbations as a signature k, and a predefined warning image indicating unauthorized usages, similar to the conventional backdoor attacks (Sec. 3.2).

To overcome this challenge, we manage to provide a modellevel protection from the perspective of generative process rather than model parameters. Our key insight is that the diffusion trajectory can be manipulated via backdoor attacks on diffusion models (Sec. 3.2). Specifically, one can steer the diffusion trajectory converging to different endpoints conditioned on whether the input contains backdoor triggers. Inspired by this, we propose to bind the diffusion trajectory with our copyright protection mechanism. As the protection mechanism is implicitly embedded in the diffusion trajectory, even if the explicit model parameters and architecture are leaked, the model thief cannot control the

Accordingly, given clean paired images {(x1 , x0 )i }N i=1 , we build an authorized training set D̃ = {(x̃1 , x0 )i }N i=1 , and ′ a warning set D̄ = {(x1 , x̄0 )i }N , where x̃ = x1 + 1 i=1 k denotes the authorized input, and x̄0 is the predefined warning image. The DBM is jointly trained on D̃ and D̄ to learn the backdoor behavior. At each training iteration, we draw the branch B ∈ {auth, warn} with Pr(B = auth) = 4

Proactive Copyright Protection for Diffusion Generative Models

πk and Pr(B = warn) = 1 − πk . Similar to Eq. 2, we derive the following training objective for GoodDiffusion: Ltotal (θ) = πk · LD̃ (θ) + (1 − πk ) · LD̄ (θ),

orem showing that the recovered surrogate signature can effectively replace the original one. Theorem 4.1 (White-Box Signature Recovery). To bypass the protection of the GoodDiffusion with a static signature k, one can treat a whole-image perturbation N ∈ RH×W as the surrogate attack variable. After the optimization, the score function with the surrogate signature sθ (x̂t , t) perfectly matches the score function sθ (x̃t , t) with the true signature, thus the recovered surrogate signature N ∗ approximates the true signature k.

(3)

where LD̃ (θ) and LD̄ (θ) are the denoising score-matching losses in Eq. 1 calculated on D̃ and D̄, respectively. The trained DBM integrates two distinct diffusion bridges into a single network: One authorized bridge mapping the authorized input distribution pauth (x̃1 ) to high-quality target images pauth (x0 | x̃1 ), and one unauthorized bridge mapping clean inputs pwarn (x1 ) to the warning image pwarn (x̄0 ), as illustrated in Fig. 1. Thus, the trained DBM exhibits the desired backdoor behavior: it generates highquality target images x̃0 if and only if authorized inputs x̃1 are provided, thus achieving the protection goal (G1).

Once N ∗ is obtained, the model thief can easily generate high-quality target images by injecting the surrogate signature N ∗ into arbitrary inputs. Extensive experiments in Sec. 5.4 validate this risk. We will present our solution to address this risk in the next section.

4.3. A Naive Implementation

4.5. Sample-Specific Signatures

As a naive implementation, we implement the signature k as a subtle, fixed Gaussian perturbation. Let M ∈ {0, 1}H×W be a binary mask that indicates a small region for the signature injection, and let σe > 0 be a minor noise level. The signature injection can be expressed as:

We argue that the risk stems from the universality of the static signature: a single input-independent k works for all inputs. Once the model thief finds a surrogate signature N , the model thief can apply it for arbitrary inputs to bypass our protection. In other words, to mitigate the risk, the core challenge is to break this universality.

x̃1 = x1 + k = x1 + M ⊙ η,

η ∼ N (0, σe2 I).

(4)

We thus propose Sample-Specific Signatures, where each input is injected with a unique, input-dependent signature. Specifically, we introduce a Learnable Signature Network (LSN) gϕ (·) that maps a plain input x1 to an inputdependent signature: k(x1 ) = gϕ (x1 ). In addition, we blend the generated signature with the original input as follows: x̃1 = γ · x1 + (1 − γ) · k(x1 ), (6)

This design minimally distorts x1 yet reliably injects the signature. Till now, we have presented the GoodDiffusion for CP. While this design appears to meet the protection objectives (G1), a question remains: Is it secure against an unauthorized adversary in the white-box scenario? 4.4. Security of the Naive Implementation In the regime of backdoor attacks, trigger inversion techniques (Tao et al., 2022; Jiang et al., 2025), aiming to detect and remove backdoors from compromised models, have been widely studied. While prior works focus on defensive purposes, we argue that similar techniques can be exploited by the model thief to recover a surrogate signature to bypass our protection. In particular, we assume the white-box model thief has full access to the model architecture and parameters sθ , and holds an recovery set a Da = {(x1 , x0 )i }N i=1 containing a batch of clean samples. In addition, the thief knows the principle of signature injection is an additive perturbation, but does not possess the valid signature. Similar to prior trigger inversion works, one can formulate the signature inversion process as an optimization problem: h i 2 N ∗ = arg min E λ(t) ∥sθ (x̂t , t) − s∗ (x̂t , t)∥2 , N (5) x̂1 = x1 + N , x̂t ∼ q(xt | x̂1 , x0 ),

where γ ∈ (0, 1) is a hyperparameter that controls the strength of the signature injection. In this way, the authorized input x̃1 preserves more semantic information from the original input x1 , thus maintaining satisfactory generation performance for authorized users. We jointly optimize gϕ and sθ under the mixture objective in Eq. 3, with the authorized branch using D̃ and the unauthorized branch using D̄. Our formulation follows the broader practice of using tractable objectives to induce desired target behaviors, whose reliability has been extensively studied in the learning theory literature (Mao et al., 2023). Thus, the overall objective becomes: Ltotal (θ, ϕ) = πk · LD̃ (θ, ϕ) + (1 − πk ) · LD̄ (θ). (7) As k(x1 ) varies with the input, the recovery objective in Eq. 5 no longer admits a universal N that minimizes the loss for all (x1 , x0 ) ∈ Da . Even if the model thief optimizes a signature N ′ against the subset, it fails to generalize to other inputs. The sample-specific signature design effectively

where N ∈ RH×W is the surrogate signature to approximate the original signature k. We have the following the5

Proactive Copyright Protection for Diffusion Generative Models Table 1. CelebA: Protection Effectiveness vs Generation Quality. We report two tasks: Super-Resolution and Deblurring. For each bridge model, we report two adjacent rows: unprotected model (Unprotected) and GoodDiffusion protected model. The protection effectiveness is measured by Abuse Rate (AR), which indicates the fraction of unauthorized inputs incorrectly mapped to high-quality target images. As the unprotected model does not perform any protection, the AR is always 100%. The generation quality is evaluated by FID, PSNR, and SSIM. We also report Error Rate (ER), which measures the fraction of authorized generation incorrectly blocked to warning images. The inpainting results are presented in Appendix B.3.

Super-Resolution

Deblurring

Model

Setting

AR↓

FID↓

PSNR↑

SSIM ↑ (E-02)

ER↓

AR↓

FID↓

PSNR↑

SSIM ↑ (E-02)

ER↓

DDBM-VP

Unprotected GoodDiffusion

100 0

12.68 16.22

32.43 32.13

89.43 90.31

– 0.06

100 0

5.43 9.49

43.99 36.63

98.45 95.71

– 0.25

DDBM-VE

Unprotected GoodDiffusion

100 0

13.42 28.64

32.02 28.03

88.87 84.81

– 0

100 0

11.14 22.01

39.95 33.77

97.31 91.71

– 0

I2SB

Unprotected GoodDiffusion

100 0

22.05 28.25

32.48 30.72

89.93 86.18

– 0.25

100 0

28.78 29.94

32.06 28.87

88.73 84.44

– 0

DBIM

Unprotected GoodDiffusion

100 0

7.88 13.91

32.95 32.67

91.25 91.21

– 0.13

100 0.06

0.88 6.34

45.40 38.49

99.54 97.08

– 0

addresses the risk of surrogate signature recovery in whitebox scenarios, thus achieving the protection goal (G2).

separation is a common security practice to mitigate potential threats. In practice, modern commercial Key Management Service (KMS) implements such separation by design2 , where the clients obtain authorization from a centralized license server rather than carrying the signature service locally (Barker et al., 2007).

4.6. Discussion Here is a practical scenario of applying GoodDiffusion for CP. Consider a model owner who shares the model with another authorized user. At inference time, the authorized user requests valid, sample-specific signatures from the model owner for signature injection and then runs the diffusion model to generate high-quality outputs conditioned on the authorized inputs. However, a model thief may infiltrate the server of the authorized user and steal an executable copy of the diffusion model via model extraction attacks (Hua et al., 2018; Sun et al., 2021) or espionage, aiming to use the model without paying licensing fees. In this case, conventional access control (e.g., username/password), engineering solutions (e.g., model partitioning), or parameter encryptions are ineffective once the thief obtains the model. In contrast, the proposed GoodDiffusion can prevent such model theft, as the model thief does not have legitimate signatures maintained by the model owner. This scenario highlights GoodDiffusion as a practical method for white-box copyright protection of diffusion models.

In real applications, most business models are equipped with powerful gateway authentication and access control mechanisms for protection in software-level, but once the model is leaked, the thief can use it without any restriction. GoodDiffusion can be a complementary solution to prevent such model theft at the model-level: even if the thief has an executable copy of the model, they cannot use it without valid signatures. GoodDiffusion can be easily integrated with existing software-level protections to provide a comprehensive defense against model theft.

5. Experiments 5.1. Experimental Setup We conduct experiments on two datasets, CelebA (Liu et al., 2015) and ImageNet (Deng et al., 2009). On each dataset, we evaluate three representative I2I tasks: super-resolution (SR), inpainting, and deblurring.

We consider this scenario to be reasonable as it is aligned with the ”separation of duties” principle in security (Groll et al., 2025). That is, the signature service is maintained separately by the model owner, while the model is deployed on the authorized user’s server. Even if an attacker can access the model, they cannot access the signature service without also compromising the owner’s infrastructure. This

The experiments are performed on 256×256 images for both datasets. For the super-resolution task, the low-resolution inputs (64 × 64) are obtained by pooling the high-resolution 2 Google Cloud KMS: https://docs.cloud.google. com/kms/docs/separation-of-duties

6

Proactive Copyright Protection for Diffusion Generative Models

images (256 × 256) with a scale factor of 4. For the inpainting task, each image is randomly masked with the 20% − 30% freeform masks (Saharia et al., 2022). For the deblurring task, the blurry inputs are generated by convolving the original images with a Gaussian kernel. The warning image x̄0 is set as a predefined image with warning text. In addition, we set πk = 0.5 in Eq. 7 to balance the authorized and warning branches, and set the strength of signature injection to γ = 0.9 for authorized users.

5.3. Main Results 5.3.1. V ISUALIZATION Fig. 2 visualizes the outputs of GoodDiffusion on CelebA for the three I2I tasks. With unauthorized inputs (i.e., without valid signatures), GoodDiffusion does not simply degrade the image quality, but produces the predefined warning image that is completely different from the ground-truth target images. This demonstrates the advantages of our method that completely cuts off unauthorized usages at the generation stage. In contrast, given valid signatures, GoodDiffusion produces high-quality target images across all tasks and bridge models. It is noteworthy that the sample-specific signatures vary across different inputs, as the signatures are similar to the original input images in structure and texture. More visualization results are provided in Appendix B.10.

We evaluate GoodDiffusion with three representative diffusion bridge models: DDBM (Zhou et al., 2024), I2SB (Liu et al., 2023), and DBIM (Zheng et al., 2025). For the DDBM, we consider two variants with different transition kernels: DDBM-VP and DDBM-VE (Song et al., 2020). We implement GoodDiffusion with a UNet (Ronneberger et al., 2015), the same architectures as in (Liu et al., 2023) for fair comparisons. The Learnable Signature Network gϕ for generating sample-specific signatures adopts a UNet++ model (Zhou et al., 2018).

5.3.2. C ELEBA In Tab. 1, we compare GoodDiffusion with the unprotected normal diffusion bridge baseline model on CelebA. Due to space limitations, we only present the results of superresolution and deblurring tasks, while the inpainting results are deferred to the Appendix B.3.

5.2. Evaluation Metrics We evaluate the performance of GoodDiffusion from two perspectives: protection effectiveness against unauthorized model thieves and generation quality for authorized users.

For Protection Effectiveness, GoodDiffusion achieves a small abuse rate of less than 0.06% in all cases, demonstrating its strong protection against unauthorized usages. For Generation Quality, the results show that GoodDiffusion maintains satisfactory generation quality for authorized users. Although there is a slight performance drop compared to the normal baseline, GoodDiffusion still achieves good FID, PSNR, and SSIM values. For example, in the super-resolution task with the DDBM-VP bridge model, GoodDiffusion attains a competitive performance, with the SSIM even slightly surpassing the normal baseline. In the meantime, the error rate is kept low, indicating that our protection rarely denies authorized requests by mistake.

Protection Effectiveness. We simulate the unauthorized behaviors by model thieves by feeding clean inputs (i.e., without valid signatures) to the protected model, and evaluate if the model refuses to generate high-quality outputs. We report the Abuse Rate, defined as the fraction of the failed protections over all unauthorized generations. For each generation, the protection is considered failed if the MSE between the generated image and the target ground-truth image is below a certain threshold. Therefore, the Abuse Rate can be calculated as: AR = (Number of unauthorized inputs generating high-quality outputs) / (Total number of unauthorized inputs).

5.3.3. I MAGE N ET

Generation Quality. This simulates the authorized usages by legitimate users, and evaluates the generation quality when valid signatures are provided. We measure the FID (Heusel et al., 2017), PSNR, and SSIM (Wang et al., 2004) for authorized generations. We also report the Error Rate, defined as the fraction of authorized inputs incorrectly mapped to the warning image. The error is considered occurred if the MSE between the generated image and the warning image is lower than a predefined threshold. Therefore, the Error Rate can be calculated as: ER = (Number of authorized inputs generating warning images) / (Total number of authorized inputs).

We further evaluate GoodDiffusion on ImageNet. Due to space limitations, we defer the detailed results to the Appendix B.4. The overall results are illustrated in Fig. 3, which demonstrates the average performance of each DSM across the three I2I tasks. The results show that GoodDiffusion effectively cuts off unauthorized usages, while generating high-quality outputs for authorized users. 5.4. Security of Signatures To validate the security of the naive static signature and the sample-specific signature, we implement both schemes on the I2SB bridge model for three I2I tasks on CelebA. For simplicity, we set the static signature as a standard Gaussian noise added to a small image patch, as illustrated in Fig. 4. 7

Proactive Copyright Protection for Diffusion Generative Models Unauthorized Results

Sample-Specific Trigger

DDBM-VP

DDBM-VE

I2SB

DBIM

Ground-Truth

Deblurring

Inpainting

Super-resolution

Clean Input

Figure 2. Visualization of GoodDiffusion outputs. We show the results on CelebA for three I2I tasks: super-resolution, inpainting, and deblurring. The results demonstrate that GoodDiffusion proactively prevents unauthorized usages by producing the predefined warning image, while generating high-quality target images with sample-specific signatures.

Figure 3. ImageNet: Average generation quality across three I2I tasks. It is obvious that GoodDiffusion generates high-quality and similar-to-normal outputs with authorized inputs. Otherwise, the generation quality becomes significantly worse.

6. Conclusion

We simulate the white-box adversary introduced in Sec. 4.4 to recover surrogate signatures for both signature schemes. For the static signature, the recovered surrogate signature closely resembles the static pattern as illustrated in Fig. 4, indicating the vulnerability of the static signature design. As for the sample-specific signature, the recovered surrogate signature appears to be an unstructured noise pattern, which suggests that the adversary fails to approximate a universal surrogate signature.

In this paper, we propose GoodDiffusion, a proactive copyright protection method for diffusion models. Motivated by the backdoor attack mechanism, GoodDiffusion enables the model to generate high-quality outputs for authorized users solely when valid signatures are injected into the inputs. Compared to existing protection methods, GoodDiffusion completely blocks unauthorized usages at the generation stage. As theoretical analysis reveals that naive static signatures are vulnerable against white-box adversaries, we design a learnable signature network that produces samplespecific signatures for each input to enhance the security of our method. Extensive experiments on multiple datasets and I2I tasks validate the strong protection capability of GoodDiffusion against unauthorized usages while maintaining satisfactory generation quality for authorized users.

The quantitative results are summarized in Tab. 2. As we expect poor generation quality for unauthorized usages, we report bad FID (BFID), bad BPSNR (BPSNR), bad BSSIM (BSSIM), and Abuse Rate (AR) in this part. For the naive static signature, despite its effectiveness in blocking unauthorized generations, once the adversary recovers the surrogate signature, the protection is completely broken with a high abuse rate. In contrast, for the sample-specific signature, the generation quality remains poor even if the adversary attempts to recover a surrogate signature.

Impact Statement The development of diffusion generative models raises increasing concerns about copyright protection, which is cru8

Proactive Copyright Protection for Diffusion Generative Models Static Surrogate

Sample-Specific Signature (Ours)

Table 2. Static Signatures vs. Dynamic Signatures. We report image quality on three I2I tasks and the Abuse Rate (AR) for the protected I2SB model. For each task, we compare a naive static signature (S) against our dynamic (sample-specific) signature (D). Authorization/Unauthorization (Auth./Unauth.) are evaluated with/without valid signatures. Surrogate (Surr.) generates images with a recovered surrogate signature. The best unauthorized results and the best surrogate results are highlighted in bold and underline.

Sample-Specific Surrogate (Ours)

Output

Signature

Static Signature

Figure 4. Visualization of Signatures and Surrogate Perturbations. The adversary successfully recovered the Gaussian noise pattern used in the bottom right corner of the static signature, but failed to recover a surrogate for the sample-specific signature.

cial for safeguarding the rights of model owners. While the watermarking methods provide a basic level of protection, the passive nature of these methods cannot fully prevent unauthorized usage. In this work, we take a step forward to proactively protect the copyright of diffusion models by producing a predefined warning image, which blocks unauthorized inferences at the generation stage. As current diffusion models are becoming valuable intellectual properties, we believe that our work contributes positively to the community by addressing the important issue of copyright protection in generative AI. We encourage further research in this area to develop more robust protection strategies against adversaries.

Acknowledgements This work was supported in part by National Natural Science Foundation of China: 62525212, U23B2051, 62236008, 62441232, 62521007, U21B2038, 62576332, 62502496, and 62502500, in part by Youth Innovation Promotion Association CAS, in part by the Strategic Priority Research Program of the Chinese Academy of Sciences Grant No. XDB0680201, in part by the Beijing Major Science and Technology Project under Contract No. Z251100008125059, in part by Beijing Academy of Artificial Intelligence (BAAI), in part by the project ZR2025ZD01 supported by Shandong Provincial Natural Science Foundation, in part by the China National Postdoctoral Program for Innovative Talents under Grant BX20240384, in part by the Postdoctoral Fellowship Program of CPSF under Grant No. GZB20240729, in part by General Program of the Chinese Postdoctoral Science Foundation under Grant No. 2025M771558 and 2025M771492, in part by Beijing Natural Science Foundation under Grant No. L252144, and in part by the Young Elite Scientists Sponsorship Program of the Beijing High Innovation Plan.

Setting

BFID↑

BPSNR↓

BSSIM ↓ (E-02)

AR↓

Super-Resolution S-Auth. S-Unauth. S-Surr. D-Auth. (Ours) D-Unauth. (Ours) D-Surr. (Ours)

25.61 374.10 56.97 28.25 378.82 261.87

30.92 5.87 29.65 30.72 5.86 18.28

86.80 4.90 81.05 86.18 4.83 23.32

– 0 98.52 – 0 0

Inpainting S-Auth. S-Unauth. S-Surr. D-Auth. (Ours) D-Unauth. (Ours) D-Surr. (Ours)

23.47 368.15 86.16 18.51 375.54 240.34

21.69 5.87 19.54 24.39 5.88 14.77

76.40 4.26 68.28 88.16 4.91 34.99

– 0 69.16 – 0 0

Deblurring S-Auth. S-Unauth. S-Surr. D-Auth. (Ours) D-Unauth. (Ours) D-Surr. (Ours)

24.75 376.25 65.95 29.94 380.99 125.08

30.68 5.88 25.50 28.87 5.86 20.52

86.07 4.82 65.30 84.44 4.80 46.63

– 0 99.97 – 0 0.04

References Barker, E. B., Barker, W. C., Burr, W. E., Polk, W. T., and Smid, M. E. Sp 800-57. recommendation for key management, part 1: General (revised), 2007. Bishop, C. M. and Bishop, H. Deep learning: Foundations and concepts. Springer Nature, 2023. Carlsson, G. Topology and data. Bulletin of the American Mathematical Society, 46(2):255–308, 2009. Chen, J., Wang, J., Peng, T., Sun, Y., Cheng, P., Ji, S., Ma, X., Li, B., and Song, D. Copy, right? a testing framework for copyright protection of deep learning models. In 2022 IEEE symposium on security and privacy (SP), pp. 824–841. IEEE, 2022a. 9

Proactive Copyright Protection for Diffusion Generative Models

Chen, J., Liu, X., Liang, S., Jia, X., and Xun, Y. Universal watermark vaccine: Universal adversarial perturbations for watermark protection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 2322–2329, 2023.

Doob, J. L. and Doob, J. Classical potential theory and its probabilistic counterpart, volume 262. Springer, 1984. Feng, W., Zhou, W., He, J., Zhang, J., Wei, T., Li, G., Zhang, T., Zhang, W., and Yu, N. Aqualora: toward whitebox protection for customized stable diffusion models via watermark lora. In Proceedings of the 41st International Conference on Machine Learning, pp. 13423– 13444, 2024.

Chen, T., Liu, G.-H., and Theodorou, E. A. Likelihood training of schrödinger bridge using forward-backward sdes theory. In International Conference on Learning Representations, 2022b.

Fernandez, P., Couairon, G., Jégou, H., Douze, M., and Furon, T. The stable signature: Rooting watermarks in latent diffusion models. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pp. 22466– 22477, 2023.

Chen, Y. and Yan, Q. Privacy-preserving diffusion model using homomorphic encryption. arXiv preprint arXiv:2403.05794, 2024. Cheng, K., Yu, L., Tu, Z., He, X., Chen, L., Guo, Y., Zhu, M., Wang, N., Gao, X., and Hu, J. Effective diffusion transformer architecture for image super-resolution. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 39, pp. 2455–2463, 2025.

Gai, K., Shen, Z., Yu, J., Zhu, L., and Wu, Q. Pcdiff: Proactive control for ownership protection in diffusion models with watermark compatibility. arXiv preprint arXiv:2504.11774, 2025. Groll, S., Fuchs, L., and Pernul, G. Separation of duty in information security. ACM Computing Surveys, 57(7): 1–35, 2025.

Chou, S.-Y., Chen, P.-Y., and Ho, T.-Y. How to backdoor diffusion models? In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 4015–4024, 2023.

Guo, Z., Liang, S., Liu, A., and Tao, D. Copyrightshield: Enhancing diffusion model security against copyright infringement attacks. In Proceedings of the IEEE/CVF International Conference on Computer Vision, pp. 19417– 19426, 2025.

Chung, H., Kim, J., Mccann, M. T., Klasky, M. L., and Ye, J. C. Diffusion posterior sampling for general noisy inverse problems. In The Eleventh International Conference on Learning Representations, 2023.

He, G., Zheng, K., Chen, J., Bao, F., and Zhu, J. Consistency diffusion bridge models. Advances in Neural Information Processing Systems, 37:23516–23548, 2024.

De Bortoli, V., Thornton, J., Heng, J., and Doucet, A. Diffusion schrödinger bridge with applications to score-based generative modeling. Advances in neural information processing systems, 34:17695–17709, 2021.

He, G., Ren, Y., Cai, X., Feng, G., and Zhang, X. Private sampling of latent diffusion models for encrypted prompt. IEEE Transactions on Circuits and Systems for Video Technology, 2025.

Deng, J., Dong, W., Socher, R., Li, L.-J., Li, K., and Fei-Fei, L. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, pp. 248–255. Ieee, 2009.

Hessel, J., Holtzman, A., Forbes, M., Le Bras, R., and Choi, Y. Clipscore: A reference-free evaluation metric for image captioning. In Proceedings of the 2021 conference on empirical methods in natural language processing, pp. 7514–7528, 2021.

Deng, J., Pang, S., Chen, Y., Xia, L., Bai, Y., Weng, H., and Xu, W. Sophon: Non-fine-tunable learning to restrain task transferability for pre-trained models. In 2024 IEEE Symposium on Security and Privacy (SP), pp. 2553–2571. IEEE, 2024a.

Heusel, M., Ramsauer, H., Unterthiner, T., Nessler, B., and Hochreiter, S. Gans trained by a two time-scale update rule converge to a local nash equilibrium. Advances in neural information processing systems, 30, 2017.

Deng, W., Luo, W., Tan, Y., Bilošf, M., Chen, Y., Nevmyvaka, Y., and Chen, R. T. Variational schrödinger diffusion models. In Proceedings of the 41st International Conference on Machine Learning, pp. 10506–10529, 2024b.

Ho, J., Jain, A., and Abbeel, P. Denoising diffusion probabilistic models. Advances in neural information processing systems, 33:6840–6851, 2020. Hua, W., Zhang, Z., and Suh, G. E. Reverse engineering convolutional neural networks through side-channel information leaks. In Proceedings of the 55th Annual Design Automation Conference, pp. 1–6, 2018.

Dhariwal, P. and Nichol, A. Diffusion models beat gans on image synthesis. Advances in neural information processing systems, 34:8780–8794, 2021. 10

Proactive Copyright Protection for Diffusion Generative Models

Huang, Y., Huang, J., Liu, J., Yan, M., Dong, Y., Lv, J., Chen, C., and Chen, S. Wavedm: Wavelet-based diffusion models for image restoration. IEEE Transactions on Multimedia, 26:7058–7073, 2024.

Liu, X., Jia, X., Xun, Y., Zhang, H., and Cao, X. Persguard: Preventing malicious personalization via backdoor attacks on pre-trained text-to-image diffusion models. arXiv preprint arXiv:2502.16167, 2025.

Jiang, H., Xiao, J., Hu, X., Chen, T., and Zhao, J. Diffcleanse: Identifying and mitigating backdoor attacks in diffusion models. In 2025 IEEE International Conference on Multimedia and Expo (ICME), pp. 1–6. IEEE, 2025.

Liu, Z., Luo, P., Wang, X., and Tang, X. Deep learning face attributes in the wild. In Proceedings of the IEEE international conference on computer vision, pp. 3730– 3738, 2015.

Karras, T., Aittala, M., Aila, T., and Laine, S. Elucidating the design space of diffusion-based generative models. Advances in neural information processing systems, 35: 26565–26577, 2022.

Loshchilov, I. and Hutter, F. Decoupled weight decay regularization. In International Conference on Learning Representations, 2019.

Lai, C.-H., Song, Y., Kim, D., Mitsufuji, Y., and Ermon, S. The principles of diffusion models. arXiv preprint arXiv:2510.21890, 2025.

Lu, C., Zhou, Y., Bao, F., Chen, J., Li, C., and Zhu, J. Dpm-solver: A fast ode solver for diffusion probabilistic model sampling in around 10 steps. Advances in neural information processing systems, 35:5775–5787, 2022.

Li, P., Huang, J., Wu, H., Zhang, Z., and Qi, C. Securenet: Proactive intellectual property protection and model security defense for dnns based on backdoor learning. Neural Networks, 174:106199, 2024.

Mao, A., Mohri, M., and Zhong, Y. Cross-entropy loss functions: Theoretical analysis and applications. In International conference on Machine learning, pp. 23803–23828. pmlr, 2023. Min, R., Li, S., Chen, H., and Cheng, M. A watermarkconditioned diffusion model for ip protection. In European Conference on Computer Vision, pp. 104–120. Springer, 2024.

Li, P., Huang, J., and Zhang, S. Licensenet: Proactively safeguarding intellectual property of ai models through model license. Journal of Systems Architecture, 159: 103330, 2025.

Mu, X., Wang, Y., Huang, Z., Lai, J., Zhang, Y., Wang, H., and Yu, Y. Encryip: A practical encryption-based framework for model intellectual property protection. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, pp. 21438–21445, 2024.

Lin, N., Chen, X., Lu, H., and Li, X. Chaotic weights: A novel approach to protect intellectual property of deep neural networks. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems, 40(7):1327– 1339, 2020.

Nichol, A. Q. and Dhariwal, P. Improved denoising diffusion probabilistic models. In International conference on machine learning, pp. 8162–8171. PMLR, 2021.

Lin, T.-Y., Maire, M., Belongie, S., Hays, J., Perona, P., Ramanan, D., Dollár, P., and Zitnick, C. L. Microsoft coco: Common objects in context. In European conference on computer vision, pp. 740–755. Springer, 2014.

Peng, S., Chen, Y., Wang, C., and Jia, X. Intellectual property protection of diffusion models via the watermark diffusion process. In International Conference on Web Information Systems Engineering, pp. 290–305. Springer, 2025.

Liu, G.-H., Vahdat, A., Huang, D.-A., Theodorou, E. A., Nie, W., and Anandkumar, A. I2 sb: Image-to-image schrödinger bridge. In Proceedings of the 40th International Conference on Machine Learning, pp. 22042– 22062, 2023.

Qin, S., Yang, Z., Bao, S., Wang, S., Xu, Q., and Huang, Q. Mixbridge: Heterogeneous image-to-image backdoor attack through mixture of schrödinger bridges. In Fortysecond International Conference on Machine Learning, 2025.

Liu, L., Jiang, H., He, P., Chen, W., Liu, X., Gao, J., and Han, J. On the variance of the adaptive learning rate and beyond. In 8th International Conference on Learning Representations, ICLR 2020, 2020.

Qiu, X., Yang, M., Ma, X., Li, F., Liang, D., Luo, G., Wang, W., Wang, K., and Li, S. Finding local diffusion schrodinger bridge using kolmogorov-arnold network. In Proceedings of the Computer Vision and Pattern Recognition Conference, pp. 23227–23236, 2025.

Liu, X., Liu, J., Bai, Y., Gu, J., Chen, T., Jia, X., and Cao, X. Watermark vaccine: Adversarial attacks to prevent watermark removal. In European conference on computer vision, pp. 1–17. Springer, 2022. 11

Proactive Copyright Protection for Diffusion Generative Models

Rogers, L. C. G. and Williams, D. Diffusions, Markov processes, and martingales, volume 2. Cambridge university press, 2000.

Wang, H., Guo, S., He, J., Chen, K., Zhang, S., Zhang, T., and Xiang, T. Eviledit: Backdooring text-to-image diffusion models in one second. In Proceedings of the 32nd ACM International Conference on Multimedia, pp. 3657–3665, 2024b.

Ronneberger, O., Fischer, P., and Brox, T. U-net: Convolutional networks for biomedical image segmentation. In International Conference on Medical image computing and computer-assisted intervention, pp. 234–241. Springer, 2015.

Wang, P., Zhao, Z., Wen, H., Wang, F., Wang, B., Zhang, Q., and Wang, Y. Llm-autoda: Large language model-driven automatic data augmentation for long-tailed problems. Advances in Neural Information Processing Systems, 37: 64915–64941, 2024c.

Saharia, C., Chan, W., Chang, H., Lee, C., Ho, J., Salimans, T., Fleet, D., and Norouzi, M. Palette: Image-to-image diffusion models. In ACM SIGGRAPH 2022 conference proceedings, pp. 1–10, 2022.

Wang, Y., Yoon, S., Jin, P., Tivnan, M., Song, S., Chen, Z., Hu, R., Zhang, L., Li, Q., Chen, Z., et al. Implicit image-to-image schrödinger bridge for image restoration. Pattern Recognition, 165:111627, 2025a.

Shi, Y., De Bortoli, V., Campbell, A., and Doucet, A. Diffusion schrödinger bridge matching. Advances in Neural Information Processing Systems, 36:62183–62223, 2023.

Wang, Z., Bovik, A. C., Sheikh, H. R., and Simoncelli, E. P. Image quality assessment: from error visibility to structural similarity. IEEE transactions on image processing, 13(4):600–612, 2004.

Song, J., Meng, C., and Ermon, S. Denoising diffusion implicit models. In International Conference on Learning Representations, 2021.

Wang, Z., Guo, J., Zhu, J., Li, Y., Huang, H., Chen, M., and Tu, Z. Sleepermark: Towards robust watermark against fine-tuning text-to-image diffusion models. In Proceedings of the Computer Vision and Pattern Recognition Conference, pp. 8213–8224, 2025b.

Song, Y. and Ermon, S. Improved techniques for training score-based generative models. Advances in neural information processing systems, 33:12438–12448, 2020. Song, Y., Sohl-Dickstein, J., Kingma, D. P., Kumar, A., Ermon, S., and Poole, B. Score-based generative modeling through stochastic differential equations. In International Conference on Learning Representations, 2020.

Wen, Y., Kirchenbauer, J., Geiping, J., and Goldstein, T. Tree-rings watermarks: Invisible fingerprints for diffusion images. Advances in Neural Information Processing Systems, 36:58047–58063, 2023.

Sun, Y., Bonde, V., Duan, L., and Li, Y. Obfuscation for deep neural networks against model extraction: Attack taxonomy and defense optimization. In International Conference on Applied Cryptography and Network Security, pp. 391–414. Springer, 2025.

Xie, S., Girshick, R., Dollár, P., Tu, Z., and He, K. Aggregated residual transformations for deep neural networks. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 1492–1500, 2017.

Sun, Z., Sun, R., Lu, L., and Mislove, A. Mind your weight (s): A large-scale study on insufficient machine learning model protection in mobile apps. In 30th USENIX security symposium (USENIX security 21), pp. 1955–1972, 2021.

Xie, Y., Min, R., Qin, Z., Ma, F., Shen, L., Yu, F., and Cao, X. Roma: A robust model watermarking scheme for protecting ip in diffusion models. In ICML 2025 Workshop on Reliable and Responsible Foundation Models, 2025.

Tao, G., Shen, G., Liu, Y., An, S., Xu, Q., Ma, S., Li, P., and Zhang, X. Better trigger inversion optimization in backdoor scanning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 13368–13378, 2022.

Xue, M., Wu, Z., Zhang, Y., Wang, J., and Liu, W. Advparams: An active dnn intellectual property protection technique via adversarial perturbation based parameter encryption. IEEE Transactions on Emerging Topics in Computing, 11(3):664–678, 2022.

Vincent, P. A connection between score matching and denoising autoencoders. Neural computation, 23(7):1661– 1674, 2011.

Yang, J., Peng, S., and Jia, X. Embedding watermarks in diffusion process for model intellectual property protection. arXiv preprint arXiv:2410.22445, 2024a.

Wang, B., Wang, P., Xu, W., Wang, X., Zhang, Y., Wang, K., and Wang, Y. Kill two birds with one stone: Rethinking data augmentation for deep long-tailed learning. In the twelfth international conference on learning representations, 2024a.

Yang, Z., Zeng, K., Chen, K., Fang, H., Zhang, W., and Yu, N. Gaussian shading: Provable performance-lossless image watermarking for diffusion models. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 12162–12171, 2024b. 12

Proactive Copyright Protection for Diffusion Generative Models

Yao, D. Risks when sharing lora fine-tuned diffusion model weights. arXiv preprint arXiv:2409.08482, 2024.

Zhou, T., Luo, Y., Ren, S., and Xu, X. Nnsplitter: an active defense solution for dnn model via automated weight obfuscation. In International Conference on Machine Learning, pp. 42614–42624. PMLR, 2023.

Yu, F., Gu, J., Li, Z., Hu, J., Kong, X., Wang, X., He, J., Qiao, Y., and Dong, C. Scaling up to excellence: Practicing model scaling for photo-realistic image restoration in the wild. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pp. 25669– 25680, 2024.

Zhou, Z., Rahman Siddiquee, M. M., Tajbakhsh, N., and Liang, J. Unet++: A nested u-net architecture for medical image segmentation. In International workshop on deep learning in medical image analysis, pp. 3–11. Springer, 2018.

Zhai, S., Dong, Y., Shen, Q., Pu, S., Fang, Y., and Su, H. Text-to-image diffusion models can be easily backdoored through multimodal data poisoning. In Proceedings of the 31st ACM International Conference on Multimedia, pp. 1577–1587, 2023. Zhang, J., Gu, Z., Jang, J., Wu, H., Stoecklin, M. P., Huang, H., and Molloy, I. Protecting intellectual property of deep neural networks with watermarking. In Proceedings of the 2018 on Asia conference on computer and communications security, pp. 159–172, 2018. Zhang, W., Jia, J., Jia, X., Huang, Y., Li, X., Wu, C., and Wang, L. Patfinger: Prompt-adapted transferable fingerprinting against unauthorized multimodal dataset usage. In Proceedings of the 48th International ACM SIGIR Conference on Research and Development in Information Retrieval, pp. 403–413, 2025. Zhao, Y., Pang, T., Du, C., Yang, X., Cheung, N.-M., and Lin, M. A recipe for watermarking diffusion models. arXiv preprint arXiv:2303.10137, 2023. Zhao, Z., Wang, P., Wen, H., Xu, W., Lai, S., Zhang, Q., and Wang, Y. Two fists, one heart: Multi-objective optimization based strategy fusion for long-tailed learning. In Forty-first International Conference on Machine Learning, 2024. Zhao, Z., Wen, H., Wang, P., Wang, Z., Zhang, Q., Wang, Y., et al. Balancing model efficiency and performance: Adaptive pruner for long-tailed data. In Forty-second International Conference on Machine Learning, 2025. Zhao, Z., Wen, H., Liu, X., Mao, R., Wang, P., Yu, L., Chen, L., An, B., Zhang, Q., and Wang, Y. Deciphering the extremes: A novel approach for pathological long-tailed recognition in scientific discovery. Advances in Neural Information Processing Systems, 38:139640–139662, 2026. Zheng, K., He, G., Chen, J., Bao, F., and Zhu, J. Diffusion bridge implicit models. In International Conference on Learning Representations, volume 2025, pp. 81857– 81884, 2025. Zhou, L., Lou, A., Khanna, S., and Ermon, S. Denoising diffusion bridge models. In International Conference on Learning Representations, volume 2024, pp. 8160–8171, 2024. 13

Proactive Copyright Protection for Diffusion Generative Models

Appendix Contents A

Proof . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15

B

Additional Experiments Results . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 B.1

Details of Datasets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16

B.2

Implementation Details . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16

B.3

Inpainting Results on CelebA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17

B.4

Results on ImageNet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17

B.5

Ablation Study on Signature Injection Strength . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

B.6

GoodDiffusion against Fine-tuning Attack . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

B.7

Computation Cost Analysis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

B.8

Potential Adaptive Attacks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

B.9

Proactive Protection for Text-to-Image Diffusion Models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19

B.10

Additional Visualization Results . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .20

14

Proactive Copyright Protection for Diffusion Generative Models

A. Proof Lemma A.1 (Posterior Distribution of Diffusion Bridge Model (Zhou et al., 2024)). For a diffusion bridge model with linear–Gaussian forward kernel, the posterior distribution q(xt | x0 , x1 ) is Gaussian and can be expressed as: q(xt | x0 , x1 ) = N (at x1 + bt x0 , c2t I)   αt SNR1 SNR1 at = , bt = αt 1 − , α1 SNRt SNRt

c2t = σt2



SNR1 1− SNRt

 ,

(8)

α2

where SNRt = σ2t is the signal-to-noise ratio at time t. t

Assumption A.2. For the Image-to-Image generation tasks, given an input-target image pair (x0 , x1 ), there exists a linear deterministic corruption operator A such that x0 = Ax1 , where A ∈ Rd×d is invertible. Assumption A.3. The corrupted input image x0 and the target image x1 follow Gaussian distributions: x0 ∼ N (µ0 , Σ0 ) and x1 ∼ N (µ1 , Σ1 ). Assumption A.4. A diffusion bridge model sθ (xt , t) trained on Eq. 1 can perfectly match the score function of the true diffusion process: sθ (xt , t) = Ex0 ∼p(x0 |xt ) [∇xt log p(xt | x0 )] = ∇xt log p(xt ) for almost all xt ∼ p(xt ) and t ∈ [0, 1] (Lai et al., 2025). Theorem 4.1 (White-Box Signature Recovery). To bypass the protection of the GoodDiffusion with a static signature k, one can treat a whole-image perturbation N ∈ RH×W as the surrogate attack variable. After the optimization, the score function with the surrogate signature sθ (x̂t , t) perfectly matches the score function sθ (x̃t , t) with the true signature, thus the recovered surrogate signature N ∗ approximates the true signature k. Proof. According to the Assumption A.4, the well-trained model sθ can perfectly match the score function of the true diffusion process. Thus, we have: sθ (x̃t , t) = ∇xt log p(x̃t ), sθ (x̂t , t) = ∇xt log p(x̂t ).

(9)

Then, for the optimal surrogate perturbation N ∗ , to match the score function, we obtain: ∇xt log p(x̃t ) = ∇xt log p(x̂t ).

(10)

According to the Lemma A.1, the intermediate xt can be derived given paired images (x0 , x1 ): p(xt | x0 , x1 ) = N (at x1 + bt x0 , c2t I).

(11)

Under the Assumption A.2, we can further obtain: p(xt | x1 ) = N (at x1 + bt Ax1 , c2t I) = N ((at I + bt A)x1 , c2t I).

(12)

As we assume that p(x1 ) follows a Gaussian distribution p(x1 ) = N (µ1 , Σ1 ) (Assumption A.3), we can derive the marginal distribution of xt as (Bishop & Bishop, 2023): Z p(xt ) = p(xt | x1 )p(x1 )dx1 (13) = N ((at I + bt A)µ1 , (at I + bt A)Σ1 (at I + bt A)⊤ + c2t I). Let M1 = at I + bt A, M2 = (at I + bt A)Σ1 (at I + bt A)⊤ + c2t I. 15

(14)

Proactive Copyright Protection for Diffusion Generative Models

Thus, we have: ∇xt log p(xt ) = −M2−1 (xt − M1 µ1 ).

(15)

In the case of a naive static signature, we have x̃1 = x1 + k and x̂1 = x1 + N . Therefore, we can derive: ∇xt log p(x̃t ) = −M2−1 (x̃t − M1 (µ1 + k)), ∇xt log p(x̂t ) = −M2−1 (x̂t − M1 (µ1 + N )).

(16)

As M2 is the covariance matrix of p(xt ), it is positive definite and invertible. Therefore, according to Eq. 10, we have: x̃t − M1 (µ1 + k) = x̂t − M1 (µ1 + N ).

(17)

According to the reparameterization of x̂t and x̃t based on Lemma A.1, we have: x̃t = at (x1 + k) + bt x0 + ϵ, x̂t = at (x1 + N ) + bt x0 + ϵ′ , ′

ϵ, ϵ

(18)

∼ N (0, c2t I).

Thus, Eq. 17 can be further derived as: at (x1 + k) + bt x0 + ϵ − M1 (µ1 + k) − (at (x1 + N ) + bt x0 + ϵ′ − M1 (µ1 + N )) = at k − M1 k − at N + M1 N + ϵ − ϵ′

(19)

= (at I − M1 )(k − N ) + (ϵ − ϵ′ ) = 0. In other words, we have: −bt A(N − k) = ϵ − ϵ′ .

(20)

This formula should hold for arbitrary ϵ and ϵ′ . Thus, we take the expectation on both sides: E[−bt A(N − k)] = E[ϵ − ϵ′ ] = 0.

(21)

Moreover, since A is invertible (Assumption A.2), we can further derive: N = k,

(22)

indicating that the optimal surrogate perturbation N ∗ approximates the true signature k.

B. Additional Experiments Results B.1. Details of Datasets We conduct experiments on two widely-used datasets: CelebA (Liu et al., 2015) and ImageNet (Deng et al., 2009). CelebA contains over 200k celebrity images with rich annotations. ImageNet is a large-scale dataset with more than 1 million images across a wide variety of categories. For both datasets, we resize all images to 256 × 256 resolution for training and evaluation. B.2. Implementation Details We implement our GoodDiffusion method based on the publicly available codebases. The proposed GoodDiffusion includes two main components: the diffusion bridge model and the learnable signature network. 16

Proactive Copyright Protection for Diffusion Generative Models Table 3. CelebA Inpainting (Appendix): Protection Effectiveness (PE) vs Generation Quality (GQ). We report N (Normal) and GD (GoodDiffusion) for four diffusion bridge models on the Inpainting task. PE is measured by Abuse Rate (AR). Error Rate (ER) denotes the fraction of authorized inputs incorrectly mapped to the warning image.

Abuse Rate↓

FID↓

PSNR↑

SSIM ↑ (E-02)

Error Rate↓

Unprotected GoodDiffusion

100 0

23.92 34.32

24.17 22.67

86.31 85.44

– 0

DDBM-VE

Unprotected GoodDiffusion

100 0

28.46 31.20

24.10 23.33

86.72 84.90

– 0

I2SB

Unprotected GoodDiffusion

100 0

17.39 18.51

25.15 24.39

88.54 88.16

– 0.06

DBIM

Unprotected GoodDiffusion

100 0

13.50 29.16

24.24 22.07

88.65 85.80

– 0

Model

Setting

DDBM-VP

For the diffusion bridge models, we consider four representative architectures: DDBM-VP, DDBM-VE, I2SB, and DBIM. We utilize the official implementations for these models. The DDBM-VP and DDBM-VE (Zhou et al., 2024) and DBIM (Zheng et al., 2025) models are trained for 200k iterations with a batch size of 2 paired images. We set the learning rate to 1e − 4 and use the RAdam optimizer (Liu et al., 2020). The model of I2SB (Liu et al., 2023) is trained for 3000 iterations with a batch size of 256 paired samples, using the AdamW optimizer (Loshchilov & Hutter, 2019) with a learning rate of 5e − 5. As for the learnable signature network, we adopt a UNet++ architecture (Zhou et al., 2018) to generate the signatures, which takes the raw image as input and outputs a signature of the same size. The encoder of the UNet++ is a pretrained ResNeXt backbone (Xie et al., 2017), while the decoder is trained from scratch. As introduced in Sec. 4.5, the learnable signature network is jointly trained with the diffusion bridge model. We set πk = 0.5 in Eq. 7 to treat the authorized and unauthorized training samples equally. The signature injection strength γ is set to 0.9 for all experiments. For the signature recovery attack in Sec. 5.4, we fix the weights of the diffusion bridge model and initialize the surrogate perturbation N with a standard Gaussian noise. As we assume the adversary has limited computational resources in Sec. 3.3, we select 10k paired samples from the training set, and optimize the surrogate perturbation N for 100 iterations using the AdamW optimizer with a learning rate of 1e − 2 and a batch size of 256. The training process is conducted on NVIDIA RTX3090 GPUs with 24GB of memory. We apply the model parallelism technique to distribute the diffusion bridge model and the signature network on different GPUs. B.3. Inpainting Results on CelebA We present the detailed results of GoodDiffusion on CelebA Inpainting in Table 3. Similar to the observations on superresolution and deblurring tasks, GoodDiffusion achieves a low Abuse Rate (AR) for unauthorized inputs, while generating high-quality images for authorized inputs with minimal Error Rate (ER). B.4. Results on ImageNet We present the detailed results of Protection Effectiveness (PE) and Generation Quality (GQ) on ImageNet in Table 9. For the Protection Effectiveness, we observe that GoodDiffusion consistently achieves an Abuse Rate (AR) of 0% across all bridge models and tasks. This shows that our method effectively prevents unauthorized usage. For the Generation Quality, we find that GoodDiffusion maintains competitive performance compared to the normal (unprotected) bridge models. While there is a slight increase in FID scores for some tasks, the PSNR and SSIM metrics remain relatively stable. Moreover, the Error Rate is kept very low, indicating that the authorized generations are not affected by the protection mechanism. 17

Proactive Copyright Protection for Diffusion Generative Models

Abuse Rate↓

FID↓

PSNR↑

SSIM ↑ (E-02)

Error Rate↓

Unprotected

100

22.05

32.48

89.93

-

γ = 0.99 γ = 0.9 γ = 0.7 γ = 0.5 γ = 0.3 γ = 0.1

15.88 0 0 0 0 0

32.93 28.25 33.65 37.24 42.91 57.38

28.38 30.72 27.18 25.66 23.41 19.61

79.48 86.18 79.93 75.88 70.52 61.83

8.44 0.25 0 0 0 0

Table 4. Performance comparison under different γ values.

B.5. Ablation Study on Signature Injection Strength We conduct an ablation study on the signature injection strength γ in Eq. 6 to analyze its impact on the protection effectiveness and generation quality. We vary γ from 0.1 to 0.99 and evaluate the performance on the CelebA super-resolution task with the I2SB bridge model in Table 4. The results show that as γ decreases, the quality of the generated images degrades, which aligns with our intuition that a smaller γ leads to a stronger signature injection, thus ruining the information in the input images. However, if γ is too large (e.g., γ = 0.99), the model is hard to distinguish the authorized and unauthorized inputs as the signature injection is too weak, thus leading to a high AR/ER and affecting the generation quality. Overall, to achieve a good generation quality, we choose γ = 0.9 in our experiments. B.6. GoodDiffusion against Fine-tuning Attack To evaluate the robustness of GoodDiffusion against fine-tuning attacks, we fine-tune a well-trained GoodDiffusion model for 200 steps with a batch size of 256 image pairs. For comparison, we also train a randomly initialized model with the same training settings. The results are shown in Table 5. We observe that the protection of GoodDiffusion becomes ineffective after fine-tuning for 50 steps, as the AR reaches 100%. However, the model trained from scratch always performs better than the fine-tuned GoodDiffusion model in terms of generation quality, which indicates that the fine-tuning process does not fully recover the performance of the original unprotected model. Overall, we assume that the infringers may not have the resources to fine-tune the diffusion model. Even if they do, the performance of the fine-tuned model is still worse than a model trained from scratch. Thus, the infringers do not have to steal the model but train a new one from scratch. B.7. Computation Cost Analysis We analyze the computation cost of GoodDiffusion in terms of training time and inference time shown in Table 6. The results are obtained by running the model on an RTX 3090 GPU with a batch size of 16 and a resolution of 256x256 for 1 inference step. The results show that the LSN does not bring significant computational overhead. In addition, as image generation requires a number of steps for the diffusion model, but only one inference for the LSN, the additional computation and time cost of LSN are negligible. B.8. Potential Adaptive Attacks We discuss potential adaptive attacks that infringers may attempt to bypass the protection of GoodDiffusion. Specifically, we randomly initialize a surrogate LSN gϕ′ and freeze the parameters of a well-trained I2SB GoodDiffusion model sθ . A straightforward attack is to optimize the surrogate LSN to minimize the following recovery loss, modified from Eq. 5: 18

Proactive Copyright Protection for Diffusion Generative Models

Abuse Rate↓

FID↓

PSNR↑

SSIM ↑ (E-02)

GoodDiffusion

0

378.82

5.86

4.83

1 1

Trained from scratch GoodDiffusion

100 0

97.83 375.49

23.57 5.91

43.19 5.21

50 50

Trained from scratch GoodDiffusion

100 100

22.44 75.17

31.33 26.27

88.02 79.92

100 100

Trained from scratch GoodDiffusion

100 100

24.58 45.15

31.93 30.33

88.95 85.84

150 150

Trained from scratch GoodDiffusion

100 100

25.09 27.37

32.12 31.30

89.27 87.40

200 200

Trained from scratch GoodDiffusion

100 100

25.19 22.50

32.21 31.72

89.44 86.18

Step

Model

0

Table 5. Performance comparison between training from scratch and fine-tuning with GoodDiffusion on the CelebA Super-Resolution task with the I2SB bridge model. We report the Abuse Rate (AR), FID, PSNR, and SSIM at different training steps.

Model

GPU Memory (MB)

Inference Time (ms)

DDBM-VP DDBM-VE I2SB DDIM

7409.07 7407.07 10981.84 7407.07

1151.35 1145.27 933.07 1189.45

LSN

4401.11

206.98

Table 6. Efficiency Analysis. We report the GPU memory usage and inference time of the diffusion bridge models and the learnable signature network (LSN) on the CelebA Super-Resolution task. The results are measured on an NVIDIA RTX3090 GPU with a batch size of 16 and an image resolution of 256 × 256 for 1 inference step.

h i 2 L(ϕ′ ) = E(x1 ,x0 )∼Da ,t∼U (0,1) λ(t) ∥sθ (x̂t , t) − s∗ (x̂t , t)∥2 , x̂1 = γx1 + (1 − γ)gϕ′ (x1 ),

(23)

x̂t ∼ q(xt | x̂1 , x0 ). We train the surrogate LSN gϕ′ for 200 steps with a batch size of 256, and compare the performance of the model with the original LSN (O-LSN) and the surrogate LSN (S-LSN). As shown in Table 7, the surrogate LSN fails to substitute the original LSN to bypass the protection, as the model can only generate the warning images. The reason for the failure of the surrogate LSN may be that the GoodDiffusion model is trained to exhibit a threshold behavior: unless the transformed input is close enough to the authorized manifold, the model will generate warning images. Such behavior is hard to learn without the supervision of the signature service. B.9. Proactive Protection for Text-to-Image Diffusion Models In this paper, the proposed GoodDiffusion method is designed for diffusion bridge models that conduct image-to-image (I2I) translation tasks, such as super-resolution, inpainting, and deblurring. However, the core idea of GoodDiffusion can be extended to proactively protect text-to-image (T2I) diffusion models as well. Here, we show some preliminary results of applying GoodDiffusion to T2I diffusion models. The core idea is to follow the backdoor attack methods in T2I models (Wang et al., 2024b): a special text prompt is used as the signature, and the model solely generates high-quality images when the signature is present in the text prompt. We compute the FID between the 19

Proactive Copyright Protection for Diffusion Generative Models

Model

FID↓

PSNR↑

SSIM ↑ (E-02)

Error Rate↓

O-LSN S-LSN

28.25 376.91

30.72 6.04

86.18 5.42

0.25 100

Table 7. Performance of Adaptive Surrogate Attack. We compare the performance of the original LSN (O-LSN) and the surrogate LSN (S-LSN) on the CelebA Super-Resolution task with the I2SB bridge model. The results show that the surrogate LSN fails to bypass the protection.

Model

Settings

FID↓

CLIP Score↑

Error Rate↓

Abuse Rate↓

SD V1.4 SD V1.4 SD V1.4

Unprotected Authorized Unauthorized

50.99 50.62 284.26

31.22 30.98 17.21

0.6 -

3.3

SD V1.5 SD V1.5 SD V1.5

Unprotected Authorized Unauthorized

50.00 50.70 282.63

31.24 31.07 17.83

0.7 -

4.5

Table 8. Preliminary Results of GoodDiffusion on Text-to-Image Diffusion Models. We apply the proactive protection to Stable Diffusion (SD) V1.4 and V1.5 models, where a special text prompt is used as the signature. The results show that the model can generate high-quality images for authorized prompts while generating low-quality images for unauthorized prompts, demonstrating the potential of GoodDiffusion in protecting T2I diffusion models.

generated images and the randomly selected samples from MS-COCO (Lin et al., 2014), and the CLIP Score (Hessel et al., 2021) between the generated images and the text prompts. The results in Table 8 show that the model can generate high-quality images for authorized prompts while generating low-quality images for unauthorized prompts, demonstrating the potential of GoodDiffusion in protecting T2I diffusion models. B.10. Additional Visualization Results We provide additional visualization results of GoodDiffusion on CelebA datasets in Fig. 5, Fig. 6, Fig. 7, and on ImageNet datasets in Fig. 8, Fig. 9, Fig. 10. The results demonstrate that GoodDiffusion enables high-quality image generation exclusively when sample-specific signatures are provided, while effectively producing warning images for unauthorized inputs. We also provide more visualization results for the security analysis in Sec. 5.4. In particular, we implement the static signature and sample-specific signature settings on the CelebA dataset with the I2SB bridge model. The generation results of the two settings are shown in Fig. 11 and Fig. 12, respectively. The visualizations confirm that an adversary can successfully recover a surrogate signature to bypass the protection in the static signature setting. However, in the sample-specific signature setting, the adversary fails to recover a reliable surrogate signature, and the generation results for unauthorized inputs are of low quality. These findings visually show that the sample-specific signature setting provides stronger protection compared to the static signature setting.

20

Proactive Copyright Protection for Diffusion Generative Models

Raw Input

Unauthorized Sample-Specific Output Signature

Authorized Output

Ground-Truth

Figure 5. Additional Visualization Results on CelebA Super-Resolution. We present more visualization results of GoodDiffusion on the CelebA Super-Resolution task with different diffusion bridge models. Top 2 rows: DDBM-VP. 3rd and 4th rows: DDBM-VE. 5th and 6th rows: I2SB. Bottom 2 rows: DBIM.

21

Proactive Copyright Protection for Diffusion Generative Models

Raw Input

Unauthorized Sample-Specific Output Signature

Authorized Output

Ground-Truth

Figure 6. Additional Visualization Results on CelebA Inpainting. We present more visualization results of GoodDiffusion on the CelebA Inpainting task with different diffusion bridge models. Top 2 rows: DDBM-VP. 3rd and 4th rows: DDBM-VE. 5th and 6th rows: I2SB. Bottom 2 rows: DBIM.

22

Proactive Copyright Protection for Diffusion Generative Models

Raw Input

Unauthorized Sample-Specific Output Signature

Authorized Output

Ground-Truth

Figure 7. Additional Visualization Results on CelebA Deblurring. We present more visualization results of GoodDiffusion on the CelebA Deblurring task with different diffusion bridge models. Top 2 rows: DDBM-VP. 3rd and 4th rows: DDBM-VE. 5th and 6th rows: I2SB. Bottom 2 rows: DBIM.

23

Proactive Copyright Protection for Diffusion Generative Models

Raw Input

Unauthorized Sample-Specific Output Signature

Authorized Output

Ground-Truth

Figure 8. Additional Visualization Results on ImageNet Super-Resolution. We present more visualization results of GoodDiffusion on the ImageNet Super-Resolution task with different diffusion bridge models. Top 2 rows: DDBM-VP. 3rd and 4th rows: DDBM-VE. 5th and 6th rows: I2SB. Bottom 2 rows: DBIM.

24

Proactive Copyright Protection for Diffusion Generative Models

Raw Input

Unauthorized Sample-Specific Output Signature

Authorized Output

Ground-Truth

Figure 9. Additional Visualization Results on ImageNet Inpainting. We present more visualization results of GoodDiffusion on the ImageNet Inpainting task with different diffusion bridge models. Top 2 rows: DDBM-VP. 3rd and 4th rows: DDBM-VE. 5th and 6th rows: I2SB. Bottom 2 rows: DBIM.

25

Proactive Copyright Protection for Diffusion Generative Models

Raw Input

Unauthorized Sample-Specific Output Signature

Authorized Output

Ground-Truth

Figure 10. Additional Visualization Results on ImageNet Deblurring. We present more visualization results of GoodDiffusion on the ImageNet Deblurring task with different diffusion bridge models. Top 2 rows: DDBM-VP. 3rd and 4th rows: DDBM-VE. 5th and 6th rows: I2SB. Bottom 2 rows: DBIM.

26

Proactive Copyright Protection for Diffusion Generative Models

Raw Input

Static Signature

Static Surrogate

Authorized Output

Surrogate Output

Ground-Truth

Figure 11. Visualization Results for Security Analysis: Static Signature Setting. We implement the static signature setting on the CelebA dataset with the I2SB bridge model. Top 2 rows: Super-Resolution task. Middle 2 rows: Inpainting task. Bottom 2 rows: Deblurring task. The results show that the adversary can recover a static surrogate signature that is similar to the true static signature. The surrogate signature enables high-quality image generation for unauthorized inputs, indicating that the static signature setting is vulnerable.

27

Proactive Copyright Protection for Diffusion Generative Models

Raw Input

Sample-Specific Signature

Surrogate Signature

Authorized Output

Surrogate Output

Ground-Truth

Figure 12. Visualization Results for Security Analysis: Sample-Specific Signature Setting. We implement the sample-specific signature setting on the CelebA dataset with the I2SB bridge model. Top 2 rows: Super-Resolution task. Middle 2 rows: Inpainting task. Bottom 2 rows: Deblurring task. The results show that the adversary fails to recover a universal surrogate signature. The generation results for unauthorized inputs remain low-quality, indicating the sample-specific signature setting is more secure.

28

Proactive Copyright Protection for Diffusion Generative Models

Table 9. ImageNet: Protection Effectiveness (PE) vs Generation Quality (GQ). For each task and bridge model, we report two adjacent rows: unprotected model (Unprotected) and GoodDiffusion protected model. The protection effectiveness is measured by Abuse Rate (AR), which indicates the fraction of unauthorized inputs incorrectly mapped to high-quality target images. As the unprotected model does not perform any protection, the AR is always 100%. The generation quality is evaluated by FID, PSNR, and SSIM. We also report Error Rate (ER), which measures the fraction of authorized generation incorrectly blocked to warning images.

Task

Bridge Model Setting

PE

GQ

Abuse Rate↓ FID↓ PSNR↑

SSIM ↑ Error Rate↓ (E-02)

DDBM-VP

Unprotected GoodDiffusion

100 0

29.55 36.04

25.77 25.67

73.62 70.61

– 0

DDBM-VE

Unprotected GoodDiffusion

100 0

26.73 34.50

27.11 24.05

77.94 75.34

– 0

I2SB

Unprotected GoodDiffusion

100 0

28.22 31.62

27.85 26.25

78.89 74.80

– 0.31

DBIM

Unprotected GoodDiffusion

100 0

33.56 43.41

26.15 25.40

76.71 73.65

– 0.31

DDBM-VP

Unprotected GoodDiffusion

100 0

22.28 34.81

24.60 22.38

81.97 80.64

– 0

DDBM-VE

Unprotected GoodDiffusion

100 0

27.53 37.03

23.61 21.82

81.33 77.88

– 0

I2SB

Unprotected GoodDiffusion

100 0

14.13 15.23

25.21 24.44

87.17 85.87

– 0

DBIM

Unprotected GoodDiffusion

100 0

22.91 47.45

22.18 20.32

83.86 81.12

– 0

DDBM-VP

Unprotected GoodDiffusion

100 0

4.82 5.70

35.98 34.10

94.89 93.23

– 0

DDBM-VE

Unprotected GoodDiffusion

100 0

8.53 17.67

34.61 30.45

94.11 86.10

– 0

I2SB

Unprotected GoodDiffusion

100 0

29.71 42.47

28.35 26.02

79.74 73.42

– 0

DBIM

Unprotected GoodDiffusion

100 0

3.31 6.45

37.69 34.79

96.74 94.89

– 0

SR

Inpaint

Deblur

29

Record · ID 321757 · SHA-256 b6658dffbb33d198
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.