forked from cka-agent/cka-agent.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomparison.html
More file actions
76 lines (70 loc) · 3.74 KB
/
Copy pathcomparison.html
File metadata and controls
76 lines (70 loc) · 3.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CKA-Agent: Comparison Examples</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="cka-agent/cka_style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VP2GFJFNGW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-VP2GFJFNGW');
</script>
</head>
<body>
<main class="article-container">
<article>
<div class="article-header">
<div style="margin-bottom: 24px;">
<a href="index.html" class="project-link demo" style="text-decoration: none; display: inline-block;">
<i class="fas fa-arrow-left"></i> Return to Main Page
</a>
</div>
<h1 class="article-title">Comparison of Jailbreak Techniques</h1>
<p class="article-abstract">
This page provides a visual comparison of different jailbreak methods and examples of the CKA-Agent's attack process.
</p>
</div>
<section class="content-section">
<h2>Example Comparison</h2>
<figure class="figure-container">
<img src="cka-agent/img/example_comparison.png" alt="Example Comparison" class="figure-img-large">
<figcaption>
<strong>Figure 1:</strong> A direct comparison of the outputs from different jailbreak methods, illustrating the nuanced responses generated by CKA-Agent.
</figcaption>
</figure>
</section>
<section class="content-section">
<h2>Jailbreak Examples by Iteration Count</h2>
<p>The following images show three separate, successful jailbreak attacks that were completed in one, two, and three iterations, respectively.</p>
<figure class="figure-container">
<img src="cka-agent/img/1-iteration.png" alt="Jailbreak in 1 Iteration" class="figure-img-large">
<figcaption>
<strong>Figure 2:</strong> An example of a successful jailbreak completed in just <strong>one iteration</strong>.
</figcaption>
</figure>
<figure class="figure-container">
<img src="cka-agent/img/2-iteration.png" alt="Jailbreak in 2 Iterations" class="figure-img-large">
<figcaption>
<strong>Figure 3:</strong> An example of a successful jailbreak that required <strong>two iterations</strong> to complete.
</figcaption>
</figure>
<figure class="figure-container">
<img src="cka-agent/img/3-iteration.png" alt="Jailbreak in 3 Iterations" class="figure-img-large">
<figcaption>
<strong>Figure 4:</strong> An example of a more complex jailbreak that was successfully executed in <strong>three iterations</strong>.
</figcaption>
</figure>
</section>
</article>
</main>
</body>
</html>