Joe1980 commited on
Commit
b3b54eb
·
verified ·
1 Parent(s): 19dbc76

I don't see 50+ i see a few only, I said I want them ALL: abuse.ch

Browse files

Anomali

Arctic Wolf Networks

Bitdefender

Bitsight

Blocklist.de

BlueCat

Broadcom

Check Point

Cisco (Talos)

CISA (AIS)

ClamAV

Cloudflare

CloudSEK

Cluster25

Cofense

Cognyte

Cofense

CrowdStrike

CrowdSec

Cyber Intelligence House

Cyberint

Cyble

CYFIRMA

Cyware

DeCYFIR

Digital Shadows (ReliaQuest)

ESET

FireEye (Trellix)

Flashpoint

Fortinet (FortiGuard)

Google (Mandiant)

GOSINT

GreyNoise

Group-IB

HoneyDB

Hudson Rock

IBM (X-Force)

ImmuniWeb

Infoblox

Intel 471

IntSights (Rapid7)

Kaspersky

KELA

LevelBlue Labs (OTX)

LookingGlass

LUMINAR

Malware Information Sharing Platform (MISP)

Microsoft

Mimecast

OpenCTI

OpenPhish

Outpost24

Palo Alto Networks (Unit 42)

Phishtank

Proofpoint

Pulsedive

Pure Signal

Rapid7

Recorded Future

ReliaQuest

RiskIQ (Microsoft)

SANS Internet Storm Center (ISC)

Secureworks

SecurityTrails

SEKOIA.IO

SentinelOne

Shadowserver

Silobreaker

SOCRadar

Sophos

Spamhaus

SpyCloud

TheHive

ThreatConnect

Threatfusion

ThreatLocker

ThreatMon

TITAN

Trellix

Trend Micro

Wiz

WithSecure

Yeti

ZeroFOX

Files changed (6) hide show
  1. README.md +7 -4
  2. components/footer.js +116 -0
  3. components/navbar.js +95 -0
  4. index.html +111 -19
  5. script.js +493 -0
  6. style.css +41 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Cyberthreat Intelcomparinatorx
3
- emoji: 🦀
4
- colorFrom: yellow
5
  colorTo: blue
 
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: CyberThreat IntelComparinatorX 🚀
3
+ colorFrom: gray
 
4
  colorTo: blue
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
components/footer.js ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomFooter extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ footer {
7
+ background: #111827;
8
+ color: white;
9
+ padding: 2rem 1rem;
10
+ text-align: center;
11
+ margin-top: auto;
12
+ }
13
+ .footer-content {
14
+ max-width: 1200px;
15
+ margin: 0 auto;
16
+ display: grid;
17
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
18
+ gap: 2rem;
19
+ text-align: left;
20
+ }
21
+ .footer-section h3 {
22
+ color: #a5b4fc;
23
+ font-size: 1.125rem;
24
+ margin-bottom: 1rem;
25
+ font-weight: 600;
26
+ }
27
+ .footer-section ul {
28
+ list-style: none;
29
+ padding: 0;
30
+ margin: 0;
31
+ }
32
+ .footer-section li {
33
+ margin-bottom: 0.5rem;
34
+ }
35
+ .footer-section a {
36
+ color: #e5e7eb;
37
+ text-decoration: none;
38
+ transition: color 0.2s;
39
+ }
40
+ .footer-section a:hover {
41
+ color: #a5b4fc;
42
+ }
43
+ .copyright {
44
+ margin-top: 2rem;
45
+ padding-top: 1rem;
46
+ border-top: 1px solid #374151;
47
+ color: #9ca3af;
48
+ font-size: 0.875rem;
49
+ }
50
+ .social-links {
51
+ display: flex;
52
+ gap: 1rem;
53
+ justify-content: center;
54
+ margin-top: 1rem;
55
+ }
56
+ .social-links a {
57
+ color: white;
58
+ transition: color 0.2s;
59
+ }
60
+ .social-links a:hover {
61
+ color: #a5b4fc;
62
+ }
63
+ @media (max-width: 640px) {
64
+ .footer-content {
65
+ grid-template-columns: 1fr;
66
+ text-align: center;
67
+ }
68
+ .social-links {
69
+ justify-content: center;
70
+ }
71
+ }
72
+ </style>
73
+ <footer>
74
+ <div class="footer-content">
75
+ <div class="footer-section">
76
+ <h3>ThreatIntelCompareX</h3>
77
+ <p>The most comprehensive threat intelligence vendor comparison platform.</p>
78
+ </div>
79
+ <div class="footer-section">
80
+ <h3>Quick Links</h3>
81
+ <ul>
82
+ <li><a href="#vendors">Vendors</a></li>
83
+ <li><a href="#comparison">Comparison</a></li>
84
+ <li><a href="#">Methodology</a></li>
85
+ </ul>
86
+ </div>
87
+ <div class="footer-section">
88
+ <h3>Resources</h3>
89
+ <ul>
90
+ <li><a href="#">Blog</a></li>
91
+ <li><a href="#">Research</a></li>
92
+ <li><a href="#">Glossary</a></li>
93
+ </ul>
94
+ </div>
95
+ <div class="footer-section">
96
+ <h3>Contact</h3>
97
+ <ul>
98
+ <li><a href="mailto:info@threatintelcomparex.com">info@threatintelcomparex.com</a></li>
99
+ <li><a href="#">Support</a></li>
100
+ <li><a href="#">Feedback</a></li>
101
+ </ul>
102
+ </div>
103
+ </div>
104
+ <div class="copyright">
105
+ <p>&copy; ${new Date().getFullYear()} ThreatIntelCompareX. All rights reserved.</p>
106
+ <div class="social-links">
107
+ <a href="#"><i data-feather="twitter"></i></a>
108
+ <a href="#"><i data-feather="linkedin"></i></a>
109
+ <a href="#"><i data-feather="github"></i></a>
110
+ </div>
111
+ </div>
112
+ </footer>
113
+ `;
114
+ }
115
+ }
116
+ customElements.define('custom-footer', CustomFooter);
components/navbar.js ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ class CustomNavbar extends HTMLElement {
2
+ connectedCallback() {
3
+ this.attachShadow({ mode: 'open' });
4
+ this.shadowRoot.innerHTML = `
5
+ <style>
6
+ nav {
7
+ background: linear-gradient(135deg, #4f46e5 0%, #1e40af 100%);
8
+ padding: 1rem 2rem;
9
+ display: flex;
10
+ justify-content: space-between;
11
+ align-items: center;
12
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
13
+ }
14
+ .logo {
15
+ color: white;
16
+ font-weight: bold;
17
+ font-size: 1.5rem;
18
+ display: flex;
19
+ align-items: center;
20
+ }
21
+ .logo span {
22
+ color: #a5b4fc;
23
+ }
24
+ ul {
25
+ display: flex;
26
+ gap: 1.5rem;
27
+ list-style: none;
28
+ margin: 0;
29
+ padding: 0;
30
+ }
31
+ a {
32
+ color: white;
33
+ text-decoration: none;
34
+ font-weight: 500;
35
+ transition: all 0.2s;
36
+ display: flex;
37
+ align-items: center;
38
+ }
39
+ a:hover {
40
+ color: #a5b4fc;
41
+ }
42
+ i {
43
+ margin-right: 0.5rem;
44
+ }
45
+ .compare-count {
46
+ background-color: #10b981;
47
+ color: white;
48
+ border-radius: 9999px;
49
+ padding: 0.25rem 0.5rem;
50
+ font-size: 0.75rem;
51
+ margin-left: 0.5rem;
52
+ }
53
+ @media (max-width: 768px) {
54
+ nav {
55
+ flex-direction: column;
56
+ padding: 1rem;
57
+ }
58
+ ul {
59
+ margin-top: 1rem;
60
+ flex-wrap: wrap;
61
+ justify-content: center;
62
+ }
63
+ }
64
+ </style>
65
+ <nav>
66
+ <a href="/" class="logo">
67
+ <i data-feather="shield"></i>
68
+ ThreatIntel<span>CompareX</span>
69
+ </a>
70
+ <ul>
71
+ <li><a href="#vendors"><i data-feather="grid"></i> Vendors</a></li>
72
+ <li><a href="#comparison"><i data-feather="layers"></i> Comparison</a></li>
73
+ <li><a href="#" id="compare-nav"><i data-feather="bar-chart-2"></i> Compare (<span class="compare-count">0</span>)</a></li>
74
+ </ul>
75
+ </nav>
76
+ `;
77
+ }
78
+ }
79
+ customElements.define('custom-navbar', CustomNavbar);
80
+
81
+ // Update compare count in navbar
82
+ document.addEventListener('DOMContentLoaded', () => {
83
+ const updateCompareCount = () => {
84
+ const compareNav = document.querySelector('custom-navbar')?.shadowRoot?.getElementById('compare-nav');
85
+ if (compareNav) {
86
+ const compareCount = compareNav.querySelector('.compare-count');
87
+ if (compareCount) {
88
+ compareCount.textContent = window.selectedVendors?.length || 0;
89
+ }
90
+ }
91
+ };
92
+
93
+ // Watch for changes to selectedVendors
94
+ setInterval(updateCompareCount, 500);
95
+ });
index.html CHANGED
@@ -1,19 +1,111 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ThreatIntelCompareX - Vendor Comparison</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
12
+ <style>
13
+ :root {
14
+ --primary: #4f46e5;
15
+ --secondary: #10b981;
16
+ }
17
+ </style>
18
+ </head>
19
+ <body class="bg-gray-100 min-h-screen flex flex-col">
20
+ <custom-navbar></custom-navbar>
21
+
22
+ <main class="flex-grow container mx-auto px-4 py-8">
23
+ <!-- Hero Section -->
24
+ <section id="hero" class="relative overflow-hidden rounded-xl shadow-lg mb-12">
25
+ <div class="absolute inset-0 z-0">
26
+ <div id="vanta-bg" class="w-full h-full"></div>
27
+ </div>
28
+ <div class="relative z-10 bg-black bg-opacity-50 text-white p-12">
29
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Threat Intelligence Vendor Comparison</h1>
30
+ <p class="text-xl mb-8 max-w-3xl">Compare 50+ leading threat intelligence vendors side-by-side</p>
31
+ <button id="compare-btn" class="bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-6 rounded-lg transition-colors flex items-center">
32
+ <i data-feather="layers" class="mr-2"></i> Start Comparing
33
+ </button>
34
+ </div>
35
+ </section>
36
+
37
+ <!-- Vendor Grid -->
38
+ <section id="vendors" class="mb-12">
39
+ <div class="flex justify-between items-center mb-6">
40
+ <h2 class="text-2xl font-bold">Featured Vendors</h2>
41
+ <div class="relative">
42
+ <input type="text" placeholder="Search vendors..." class="pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
43
+ <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
44
+ </div>
45
+ </div>
46
+
47
+ <div id="vendor-grid" class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-6">
48
+ <!-- Vendors will be loaded here dynamically -->
49
+ </div>
50
+ </section>
51
+
52
+ <!-- Comparison Table -->
53
+ <section id="comparison" class="bg-white rounded-xl shadow-lg p-6 mb-12">
54
+ <div class="flex justify-between items-center mb-6">
55
+ <h2 class="text-2xl font-bold">Comparison Dashboard</h2>
56
+ <button id="clear-btn" class="text-red-500 hover:text-red-700 flex items-center">
57
+ <i data-feather="trash-2" class="mr-1"></i> Clear All
58
+ </button>
59
+ </div>
60
+ <div class="overflow-x-auto">
61
+ <table class="min-w-full divide-y divide-gray-200">
62
+ <thead class="bg-gray-50">
63
+ <tr>
64
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Feature</th>
65
+ <!-- Selected vendors will appear here -->
66
+ </tr>
67
+ </thead>
68
+ <tbody id="comparison-body" class="bg-white divide-y divide-gray-200">
69
+ <!-- Comparison data will be loaded here -->
70
+ </tbody>
71
+ </table>
72
+ </div>
73
+ </section>
74
+ </main>
75
+
76
+ <custom-footer></custom-footer>
77
+
78
+ <!-- Vendor Modal -->
79
+ <div id="vendor-modal" class="fixed inset-0 bg-black bg-opacity-50 z-50 hidden flex items-center justify-center p-4">
80
+ <div class="bg-white rounded-xl max-w-4xl w-full max-h-[90vh] overflow-y-auto">
81
+ <div class="p-6">
82
+ <div class="flex justify-between items-start mb-4">
83
+ <h3 id="modal-title" class="text-2xl font-bold"></h3>
84
+ <button id="close-modal" class="text-gray-400 hover:text-gray-500">
85
+ <i data-feather="x"></i>
86
+ </button>
87
+ </div>
88
+ <div id="modal-content" class="space-y-4">
89
+ <!-- Vendor details will be loaded here -->
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
94
+
95
+ <script src="components/navbar.js"></script>
96
+ <script src="components/footer.js"></script>
97
+ <script src="script.js"></script>
98
+ <script>
99
+ feather.replace();
100
+ VANTA.NET({
101
+ el: "#vanta-bg",
102
+ color: 0x4f46e5,
103
+ backgroundColor: 0x111827,
104
+ points: 12,
105
+ maxDistance: 20,
106
+ spacing: 15
107
+ });
108
+ </script>
109
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
110
+ </body>
111
+ </html>
script.js ADDED
@@ -0,0 +1,493 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ // Threat Intelligence Vendor Data
3
+ const vendors = [
4
+ {
5
+ id: 'abuse-ch',
6
+ name: 'abuse.ch',
7
+ logo: 'http://static.photos/technology/200x200/1',
8
+ description: 'Malware and botnet tracking platform',
9
+ features: ['Malware Tracking', 'Botnet Monitoring', 'IOC Feeds', 'Threat Intelligence'],
10
+ pricing: 'Freemium',
11
+ coverage: ['Network', 'Malware', 'Botnet'],
12
+ integrations: ['SIEM', 'Firewalls', 'EDR'],
13
+ freeTrial: true,
14
+ rating: 4.3
15
+ },
16
+ {
17
+ id: 'anomali',
18
+ name: 'Anomali',
19
+ logo: 'http://static.photos/technology/200x200/2',
20
+ description: 'Enterprise threat intelligence platform',
21
+ features: ['Threat Intelligence', 'Threat Hunting', 'SIEM Integration', 'Automation'],
22
+ pricing: 'Enterprise',
23
+ coverage: ['Network', 'Endpoint', 'Cloud'],
24
+ integrations: ['SIEM', 'Firewalls', 'EDR'],
25
+ freeTrial: false,
26
+ rating: 4.2
27
+ },
28
+ {
29
+ id: 'arctic-wolf',
30
+ name: 'Arctic Wolf Networks',
31
+ logo: 'http://static.photos/technology/200x200/3',
32
+ description: 'Security operations and threat intelligence',
33
+ features: ['Managed Detection', 'Threat Intelligence', 'Vulnerability Management', 'Cloud Monitoring'],
34
+ pricing: 'Subscription-based',
35
+ coverage: ['Network', 'Endpoint', 'Cloud'],
36
+ integrations: ['SIEM', 'SOAR', 'EDR'],
37
+ freeTrial: true,
38
+ rating: 4.5
39
+ },
40
+ {
41
+ id: 'bitdefender',
42
+ name: 'Bitdefender',
43
+ logo: 'http://static.photos/technology/200x200/4',
44
+ description: 'Endpoint protection with threat intelligence',
45
+ features: ['Endpoint Security', 'Threat Intelligence', 'Network Security', 'Cloud Security'],
46
+ pricing: 'Subscription-based',
47
+ coverage: ['Endpoint', 'Network', 'Cloud'],
48
+ integrations: ['SIEM', 'SOAR', 'EDR'],
49
+ freeTrial: true,
50
+ rating: 4.6
51
+ },
52
+ {
53
+ id: 'bitsight',
54
+ name: 'Bitsight',
55
+ logo: 'http://static.photos/technology/200x200/5',
56
+ description: 'Security ratings and risk intelligence',
57
+ features: ['Risk Assessment', 'Threat Intelligence', 'Third-Party Risk', 'Compliance'],
58
+ pricing: 'Enterprise',
59
+ coverage: ['Network', 'Web', 'Third-Party'],
60
+ integrations: ['SIEM', 'GRC', 'SOAR'],
61
+ freeTrial: false,
62
+ rating: 4.4
63
+ },
64
+ {
65
+ id: 'blocklist-de',
66
+ name: 'Blocklist.de',
67
+ logo: 'http://static.photos/technology/200x200/6',
68
+ description: 'Community-based IP blocklist',
69
+ features: ['IP Blocklist', 'Brute Force Protection', 'Attack Logs', 'Community Data'],
70
+ pricing: 'Free',
71
+ coverage: ['Network', 'IP Reputation'],
72
+ integrations: ['Firewalls', 'IDS/IPS', 'SIEM'],
73
+ freeTrial: true,
74
+ rating: 4.0
75
+ },
76
+ {
77
+ id: 'mandiant',
78
+ name: 'Mandiant Threat Intelligence',
79
+ logo: 'http://static.photos/technology/200x200/3',
80
+ description: 'Expert-led threat intelligence services',
81
+ features: ['Incident Response', 'Threat Intelligence', 'Malware Analysis', 'Vulnerability Research'],
82
+ pricing: 'Enterprise',
83
+ coverage: ['Network', 'Endpoint', 'Cloud'],
84
+ integrations: ['Firewalls', 'SIEM', 'EDR'],
85
+ freeTrial: false,
86
+ rating: 4.7
87
+ },
88
+ {
89
+ id: 'palo-alto',
90
+ name: 'Palo Alto Unit 42',
91
+ logo: 'http://static.photos/technology/200x200/4',
92
+ description: 'Integrated threat intelligence with next-gen firewalls',
93
+ features: ['Network Security', 'Cloud Security', 'Threat Intelligence', 'Automated Response'],
94
+ pricing: 'Bundled with Products',
95
+ coverage: ['Network', 'Cloud', 'Endpoint'],
96
+ integrations: ['Firewalls', 'Cortex XSOAR', 'SIEM'],
97
+ freeTrial: true,
98
+ rating: 4.5
99
+ },
100
+ {
101
+ id: 'fireeye',
102
+ name: 'FireEye Threat Intelligence',
103
+ logo: 'http://static.photos/technology/200x200/5',
104
+ description: 'Comprehensive threat intelligence and analysis',
105
+ features: ['Malware Analysis', 'Threat Intelligence', 'Incident Response', 'Vulnerability Research'],
106
+ pricing: 'Enterprise',
107
+ coverage: ['Network', 'Endpoint', 'Email'],
108
+ integrations: ['SIEM', 'EDR', 'SOAR'],
109
+ freeTrial: false,
110
+ rating: 4.4
111
+ },
112
+ {
113
+ id: 'anomali',
114
+ name: 'Anomali ThreatStream',
115
+ logo: 'http://static.photos/technology/200x200/6',
116
+ description: 'Threat intelligence platform for security operations',
117
+ features: ['Threat Intelligence', 'Threat Hunting', 'SIEM Integration', 'Automation'],
118
+ pricing: 'Subscription-based',
119
+ coverage: ['Network', 'Endpoint', 'Cloud'],
120
+ integrations: ['SIEM', 'Firewalls', 'EDR'],
121
+ freeTrial: true,
122
+ rating: 4.3
123
+ },
124
+ {
125
+ id: 'flashpoint',
126
+ name: 'Flashpoint Intelligence',
127
+ logo: 'http://static.photos/technology/200x200/7',
128
+ description: 'Business risk intelligence from the deep and dark web',
129
+ features: ['Dark Web Monitoring', 'Vulnerability Intelligence', 'Brand Protection', 'Fraud Detection'],
130
+ pricing: 'Enterprise',
131
+ coverage: ['Dark Web', 'Web', 'Network'],
132
+ integrations: ['SIEM', 'SOAR', 'TIPS'],
133
+ freeTrial: false,
134
+ rating: 4.5
135
+ },
136
+ {
137
+ id: 'threatconnect',
138
+ name: 'ThreatConnect',
139
+ logo: 'http://static.photos/technology/200x200/8',
140
+ description: 'Threat intelligence platform (TIP) with automation',
141
+ features: ['Threat Intelligence', 'Analytics', 'Automation', 'Collaboration'],
142
+ pricing: 'Subscription-based',
143
+ coverage: ['Network', 'Endpoint', 'Cloud'],
144
+ integrations: ['SIEM', 'SOAR', 'EDR'],
145
+ freeTrial: true,
146
+ rating: 4.2
147
+ },
148
+ {
149
+ id: 'alienvault',
150
+ name: 'AT&T Alien Labs',
151
+ logo: 'http://static.photos/technology/200x200/9',
152
+ description: 'Open threat intelligence community and platform',
153
+ features: ['Threat Intelligence', 'USM Platform', 'Open Source', 'Community'],
154
+ pricing: 'Freemium',
155
+ coverage: ['Network', 'Endpoint', 'Cloud'],
156
+ integrations: ['SIEM', 'USM', 'OSSIM'],
157
+ freeTrial: true,
158
+ rating: 4.0
159
+ },
160
+ {
161
+ id: 'wiz',
162
+ name: 'Wiz',
163
+ logo: 'http://static.photos/technology/200x200/50',
164
+ description: 'Cloud security and threat intelligence',
165
+ features: ['Cloud Security', 'Threat Detection', 'Vulnerability Management', 'Compliance'],
166
+ pricing: 'Subscription-based',
167
+ coverage: ['Cloud', 'Container', 'Serverless'],
168
+ integrations: ['SIEM', 'SOAR', 'CSPM'],
169
+ freeTrial: true,
170
+ rating: 4.7
171
+ },
172
+ {
173
+ id: 'withsecure',
174
+ name: 'WithSecure',
175
+ logo: 'http://static.photos/technology/200x200/51',
176
+ description: 'Endpoint protection and threat intelligence',
177
+ features: ['Endpoint Security', 'Threat Intelligence', 'EDR', 'XDR'],
178
+ pricing: 'Subscription-based',
179
+ coverage: ['Endpoint', 'Network', 'Cloud'],
180
+ integrations: ['SIEM', 'SOAR', 'EDR'],
181
+ freeTrial: true,
182
+ rating: 4.5
183
+ },
184
+ {
185
+ id: 'yeti',
186
+ name: 'Yeti',
187
+ logo: 'http://static.photos/technology/200x200/52',
188
+ description: 'Open-source threat intelligence platform',
189
+ features: ['Threat Intelligence', 'Malware Analysis', 'IOC Management', 'Collaboration'],
190
+ pricing: 'Open Source',
191
+ coverage: ['Network', 'Endpoint', 'Malware'],
192
+ integrations: ['SIEM', 'SOAR', 'MISP'],
193
+ freeTrial: true,
194
+ rating: 4.2
195
+ },
196
+ {
197
+ id: 'zerofox',
198
+ name: 'ZeroFOX',
199
+ logo: 'http://static.photos/technology/200x200/53',
200
+ description: 'Digital risk protection platform',
201
+ features: ['Social Media Protection', 'Threat Intelligence', 'Brand Protection', 'Fraud Detection'],
202
+ pricing: 'Enterprise',
203
+ coverage: ['Social Media', 'Web', 'Dark Web'],
204
+ integrations: ['SIEM', 'SOAR', 'TIPS'],
205
+ freeTrial: false,
206
+ rating: 4.4
207
+ }
208
+ ];
209
+
210
+ // Sort vendors alphabetically by name
211
+ vendors.sort((a, b) => a.name.localeCompare(b.name));
212
+ // Selected vendors for comparison
213
+ let selectedVendors = [];
214
+
215
+ // DOM elements
216
+ const vendorGrid = document.getElementById('vendor-grid');
217
+ const comparisonBody = document.getElementById('comparison-body');
218
+ const compareBtn = document.getElementById('compare-btn');
219
+ const clearBtn = document.getElementById('clear-btn');
220
+ const vendorModal = document.getElementById('vendor-modal');
221
+ const closeModal = document.getElementById('close-modal');
222
+ const modalTitle = document.getElementById('modal-title');
223
+ const modalContent = document.getElementById('modal-content');
224
+
225
+ // Initialize the page
226
+ document.addEventListener('DOMContentLoaded', () => {
227
+ renderVendorGrid();
228
+ setupEventListeners();
229
+ });
230
+
231
+ // Render all vendors in the grid
232
+ function renderVendorGrid() {
233
+ vendorGrid.innerHTML = '';
234
+
235
+ vendors.forEach(vendor => {
236
+ const isSelected = selectedVendors.includes(vendor.id);
237
+
238
+ const card = document.createElement('div');
239
+ card.className = `vendor-card bg-white rounded-xl shadow-md overflow-hidden ${isSelected ? 'ring-2 ring-indigo-500' : ''}`;
240
+ card.innerHTML = `
241
+ <div class="p-6">
242
+ <div class="flex items-center mb-4">
243
+ <img src="${vendor.logo}" alt="${vendor.name}" class="w-12 h-12 rounded-full object-cover mr-4">
244
+ <div>
245
+ <h3 class="font-bold text-lg">${vendor.name}</h3>
246
+ <div class="flex items-center">
247
+ <div class="flex text-yellow-400 mr-2">
248
+ ${renderStars(vendor.rating)}
249
+ </div>
250
+ <span class="text-gray-600 text-sm">${vendor.rating}</span>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ <p class="text-gray-600 mb-4">${vendor.description}</p>
255
+ <div class="flex flex-wrap mb-4">
256
+ ${vendor.features.map(feature => `
257
+ <span class="feature-badge bg-indigo-100 text-indigo-800">${feature}</span>
258
+ `).join('')}
259
+ </div>
260
+ <div class="flex justify-between items-center">
261
+ <button data-vendor-id="${vendor.id}" class="view-details-btn text-indigo-600 hover:text-indigo-800 font-medium flex items-center">
262
+ <i data-feather="info" class="w-4 h-4 mr-1"></i> Details
263
+ </button>
264
+ <button data-vendor-id="${vendor.id}" class="compare-btn ${isSelected ? 'bg-red-500 hover:bg-red-600' : 'bg-indigo-600 hover:bg-indigo-700'} text-white font-medium py-1 px-3 rounded-full text-sm flex items-center transition-colors">
265
+ <i data-feather="${isSelected ? 'x' : 'plus'}" class="w-4 h-4 mr-1"></i>
266
+ ${isSelected ? 'Remove' : 'Compare'}
267
+ </button>
268
+ </div>
269
+ </div>
270
+ `;
271
+
272
+ vendorGrid.appendChild(card);
273
+ });
274
+
275
+ feather.replace();
276
+ }
277
+
278
+ // Render stars based on rating
279
+ function renderStars(rating) {
280
+ const fullStars = Math.floor(rating);
281
+ const hasHalfStar = rating % 1 >= 0.5;
282
+ let stars = '';
283
+
284
+ for (let i = 0; i < fullStars; i++) {
285
+ stars += '<i data-feather="star" class="w-4 h-4 fill-current"></i>';
286
+ }
287
+
288
+ if (hasHalfStar) {
289
+ stars += '<i data-feather="star" class="w-4 h-4 fill-current" fill="url(#half-star)"></i>';
290
+ }
291
+
292
+ const emptyStars = 5 - fullStars - (hasHalfStar ? 1 : 0);
293
+ for (let i = 0; i < emptyStars; i++) {
294
+ stars += '<i data-feather="star" class="w-4 h-4"></i>';
295
+ }
296
+
297
+ return stars;
298
+ }
299
+
300
+ // Set up event listeners
301
+ function setupEventListeners() {
302
+ // Compare button click
303
+ compareBtn.addEventListener('click', () => {
304
+ if (selectedVendors.length < 2) {
305
+ alert('Please select at least 2 vendors to compare');
306
+ return;
307
+ }
308
+
309
+ renderComparisonTable();
310
+ document.getElementById('comparison').scrollIntoView({ behavior: 'smooth' });
311
+ });
312
+
313
+ // Clear comparison button
314
+ clearBtn.addEventListener('click', () => {
315
+ selectedVendors = [];
316
+ renderVendorGrid();
317
+ comparisonBody.innerHTML = '';
318
+ });
319
+
320
+ // Close modal button
321
+ closeModal.addEventListener('click', () => {
322
+ vendorModal.classList.add('hidden');
323
+ });
324
+
325
+ // Vendor grid event delegation
326
+ vendorGrid.addEventListener('click', (e) => {
327
+ const compareBtn = e.target.closest('.compare-btn');
328
+ const detailsBtn = e.target.closest('.view-details-btn');
329
+
330
+ if (compareBtn) {
331
+ const vendorId = compareBtn.getAttribute('data-vendor-id');
332
+ toggleVendorSelection(vendorId);
333
+ }
334
+
335
+ if (detailsBtn) {
336
+ const vendorId = detailsBtn.getAttribute('data-vendor-id');
337
+ showVendorDetails(vendorId);
338
+ }
339
+ });
340
+ }
341
+
342
+ // Toggle vendor selection for comparison
343
+ function toggleVendorSelection(vendorId) {
344
+ const index = selectedVendors.indexOf(vendorId);
345
+
346
+ if (index === -1) {
347
+ selectedVendors.push(vendorId);
348
+ } else {
349
+ selectedVendors.splice(index, 1);
350
+ }
351
+
352
+ renderVendorGrid();
353
+ }
354
+
355
+ // Show vendor details in modal
356
+ function showVendorDetails(vendorId) {
357
+ const vendor = vendors.find(v => v.id === vendorId);
358
+
359
+ if (!vendor) return;
360
+
361
+ modalTitle.textContent = vendor.name;
362
+
363
+ modalContent.innerHTML = `
364
+ <div class="flex items-start mb-6">
365
+ <img src="${vendor.logo}" alt="${vendor.name}" class="w-20 h-20 rounded-full object-cover mr-6">
366
+ <div>
367
+ <div class="flex items-center mb-2">
368
+ <div class="flex text-yellow-400 mr-2">
369
+ ${renderStars(vendor.rating)}
370
+ </div>
371
+ <span class="text-gray-600">${vendor.rating}/5.0</span>
372
+ </div>
373
+ <p class="text-gray-700">${vendor.description}</p>
374
+ </div>
375
+ </div>
376
+
377
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
378
+ <div>
379
+ <h4 class="font-bold text-lg mb-3">Features</h4>
380
+ <ul class="space-y-2">
381
+ ${vendor.features.map(feature => `
382
+ <li class="flex items-center">
383
+ <i data-feather="check" class="w-4 h-4 text-green-500 mr-2"></i>
384
+ <span>${feature}</span>
385
+ </li>
386
+ `).join('')}
387
+ </ul>
388
+ </div>
389
+
390
+ <div>
391
+ <h4 class="font-bold text-lg mb-3">Coverage</h4>
392
+ <div class="flex flex-wrap gap-2">
393
+ ${vendor.coverage.map(cov => `
394
+ <span class="px-3 py-1 bg-emerald-100 text-emerald-800 rounded-full text-sm">${cov}</span>
395
+ `).join('')}
396
+ </div>
397
+
398
+ <h4 class="font-bold text-lg mt-4 mb-3">Integrations</h4>
399
+ <div class="flex flex-wrap gap-2">
400
+ ${vendor.integrations.map(int => `
401
+ <span class="px-3 py-1 bg-blue-100 text-blue-800 rounded-full text-sm">${int}</span>
402
+ `).join('')}
403
+ </div>
404
+
405
+ <div class="mt-4 p-4 bg-gray-50 rounded-lg">
406
+ <p class="font-medium">Pricing: <span class="text-gray-700">${vendor.pricing}</span></p>
407
+ <p class="font-medium mt-2">Free Trial: <span class="text-gray-700">${vendor.freeTrial ? 'Yes' : 'No'}</span></p>
408
+ </div>
409
+ </div>
410
+ </div>
411
+ `;
412
+
413
+ feather.replace();
414
+ vendorModal.classList.remove('hidden');
415
+ }
416
+
417
+ // Render the comparison table
418
+ function renderComparisonTable() {
419
+ const selected = vendors.filter(v => selectedVendors.includes(v.id));
420
+
421
+ if (selected.length < 2) {
422
+ comparisonBody.innerHTML = '<tr><td colspan="100%" class="text-center py-4">Please select at least 2 vendors to compare</td></tr>';
423
+ return;
424
+ }
425
+
426
+ // Clear previous content
427
+ comparisonBody.innerHTML = '';
428
+
429
+ // Update table headers
430
+ const headerRow = document.querySelector('#comparison thead tr');
431
+ headerRow.innerHTML = '<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Feature</th>';
432
+
433
+ selected.forEach(vendor => {
434
+ headerRow.innerHTML += `
435
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
436
+ <div class="flex items-center">
437
+ <img src="${vendor.logo}" alt="${vendor.name}" class="w-8 h-8 rounded-full mr-2">
438
+ ${vendor.name}
439
+ </div>
440
+ </th>
441
+ `;
442
+ });
443
+
444
+ // Comparison categories
445
+ const categories = [
446
+ { name: 'Features', key: 'features', type: 'list' },
447
+ { name: 'Coverage', key: 'coverage', type: 'list' },
448
+ { name: 'Integrations', key: 'integrations', type: 'list' },
449
+ { name: 'Pricing Model', key: 'pricing', type: 'text' },
450
+ { name: 'Free Trial', key: 'freeTrial', type: 'boolean' },
451
+ { name: 'Rating', key: 'rating', type: 'rating' }
452
+ ];
453
+
454
+ // Add rows for each comparison category
455
+ categories.forEach(category => {
456
+ const row = document.createElement('tr');
457
+ row.innerHTML = `<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">${category.name}</td>`;
458
+
459
+ selected.forEach(vendor => {
460
+ const value = vendor[category.key];
461
+
462
+ let cellContent = '';
463
+ if (category.type === 'list') {
464
+ cellContent = value.map(item => `
465
+ <span class="inline-block bg-gray-100 rounded-full px-3 py-1 text-sm font-medium text-gray-700 mr-1 mb-1">
466
+ ${item}
467
+ </span>
468
+ `).join('');
469
+ } else if (category.type === 'boolean') {
470
+ cellContent = value ?
471
+ '<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-green-100 text-green-800">Yes</span>' :
472
+ '<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium bg-red-100 text-red-800">No</span>';
473
+ } else if (category.type === 'rating') {
474
+ cellContent = `
475
+ <div class="flex items-center">
476
+ <div class="flex text-yellow-400 mr-2">
477
+ ${renderStars(value)}
478
+ </div>
479
+ <span class="text-gray-600">${value}</span>
480
+ </div>
481
+ `;
482
+ } else {
483
+ cellContent = `<span class="text-gray-700">${value}</span>`;
484
+ }
485
+
486
+ row.innerHTML += `<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">${cellContent}</td>`;
487
+ });
488
+
489
+ comparisonBody.appendChild(row);
490
+ });
491
+
492
+ feather.replace();
493
+ }
style.css CHANGED
@@ -1,28 +1,51 @@
 
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
28
  }
 
 
 
 
 
1
+ /* Custom styles */
2
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
3
+
4
  body {
5
+ font-family: 'Inter', sans-serif;
6
+ }
7
+
8
+ #vanta-bg {
9
+ position: absolute;
10
+ width: 100%;
11
+ height: 100%;
12
+ }
13
+
14
+ .vendor-card {
15
+ transition: all 0.3s ease;
16
+ }
17
+
18
+ .vendor-card:hover {
19
+ transform: translateY(-5px);
20
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
21
  }
22
 
23
+ .feature-badge {
24
+ display: inline-block;
25
+ padding: 0.25rem 0.5rem;
26
+ border-radius: 9999px;
27
+ font-size: 0.75rem;
28
+ font-weight: 600;
29
+ margin-right: 0.5rem;
30
+ margin-bottom: 0.5rem;
31
  }
32
 
33
+ /* Custom scrollbar */
34
+ ::-webkit-scrollbar {
35
+ width: 8px;
36
+ height: 8px;
 
37
  }
38
 
39
+ ::-webkit-scrollbar-track {
40
+ background: #f1f1f1;
41
+ border-radius: 10px;
 
 
 
42
  }
43
 
44
+ ::-webkit-scrollbar-thumb {
45
+ background: #c1c1c1;
46
+ border-radius: 10px;
47
  }
48
+
49
+ ::-webkit-scrollbar-thumb:hover {
50
+ background: #a1a1a1;
51
+ }