Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-a7rh-r1sn-2udh
Summary
ApostropheCMS: User Enumeration via Timing Side Channel in Password Reset Endpoint
## Summary

The password reset endpoint (`/api/v1/@apostrophecms/login/reset-request`) exhibits a measurable timing side channel that allows unauthenticated attackers to enumerate valid usernames and email addresses. When a user is not found, the handler returns after a fixed 2-second artificial delay, but when a valid user is found, it performs database writes and SMTP operations with no equivalent delay normalization, producing a distinguishable timing profile.

## Details

The `resetRequest` handler in `modules/@apostrophecms/login/index.js` attempts to obscure the user-not-found path with an artificial delay, but fails to normalize the timing of the user-found path:

**User not found — fixed 2000ms delay** (`index.js:309-314`):
```javascript
if (!user) {
  await wait();  // wait = (t = 2000) => Promise.delay(t)
  self.apos.util.error(
    `Reset password request error - the user ${email} doesn\`t exist.`
  );
  return;
}
```

**User found — variable-duration DB + SMTP operations, no artificial delay** (`index.js:323-355`):
```javascript
const reset = self.apos.util.generateId();
user.passwordReset = reset;
user.passwordResetAt = new Date();
await self.apos.user.update(req, user, { permissions: false });
// ... URL construction ...
await self.email(req, 'passwordResetEmail', {
  user,
  url: parsed.toString(),
  site
}, {
  to: user.email,
  subject: req.t('apostrophe:passwordResetRequest', { site })
});
```

The user-found path includes a MongoDB `update()` call and an SMTP `email()` send, which together produce response times that differ measurably from the fixed 2000ms delay. Depending on SMTP server latency, responses for valid users will either be noticeably faster (local/fast SMTP) or slower (remote SMTP) than the constant 2-second delay for invalid users.

Additionally, the `getPasswordResetUser` method (`index.js:664-666`) accepts both username and email via an `$or` query, enabling enumeration of both identifiers:
```javascript
const criteriaOr = [
  { username: email },
  { email }
];
```

There is no rate limiting on the reset endpoint. The `checkLoginAttempts` throttle (`index.js:978`) is only applied to the login flow, allowing unlimited rapid probing of the reset endpoint.

## PoC

**Prerequisites:** An Apostrophe instance with `passwordReset: true` enabled in `@apostrophecms/login` configuration.

**Step 1 — Baseline invalid user timing:**
```bash
for i in $(seq 1 10); do
  curl -s -o /dev/null -w "%{time_total}\n" \
    -X POST http://localhost:3000/api/v1/@apostrophecms/login/reset-request \
    -H "Content-Type: application/json" \
    -d '{"email": "nonexistent-user-'$i'@example.com"}'
done
# Expected: all responses cluster tightly around 2.0xx seconds
```

**Step 2 — Test known valid user:**
```bash
for i in $(seq 1 10); do
  curl -s -o /dev/null -w "%{time_total}\n" \
    -X POST http://localhost:3000/api/v1/@apostrophecms/login/reset-request \
    -H "Content-Type: application/json" \
    -d '{"email": "admin"}'
done
# Expected: response times differ from 2.0s baseline (faster with local SMTP, slower with remote SMTP)
```

**Step 3 — Statistical comparison:**
The two distributions will show a measurable divergence. With a local mail server, valid-user responses typically complete in <500ms. With a remote SMTP server, valid-user responses may take 3-5+ seconds. Either way, the timing is distinguishable from the fixed 2000ms invalid-user delay.

## Impact

- **Account enumeration:** An unauthenticated attacker can determine whether a given username or email address has an account in the Apostrophe instance.
- **Credential stuffing preparation:** Confirmed valid accounts can be targeted with credential stuffing attacks using breached password databases.
- **Phishing targeting:** Knowledge of valid accounts enables targeted phishing campaigns against confirmed users.
- **No rate limiting:** The absence of throttling on the reset endpoint allows high-speed automated enumeration.
- **Mitigating factor:** The `passwordReset` option defaults to `false` (`index.js:62`), so only instances that explicitly enable password reset are affected.

## Recommended Fix

Normalize all code paths to a constant minimum duration, ensuring the response time does not leak whether a user was found:

```javascript
async resetRequest(req) {
  const MIN_RESPONSE_TIME = 2000;
  const startTime = Date.now();
  const site = (req.headers.host || '').replace(/:\d+$/, '');
  const email = self.apos.launder.string(req.body.email);
  if (!email.length) {
    throw self.apos.error('invalid', req.t('apostrophe:loginResetEmailRequired'));
  }
  let user;
  try {
    user = await self.getPasswordResetUser(req.body.email);
  } catch (e) {
    self.apos.util.error(e);
  }
  if (!user) {
    self.apos.util.error(
      `Reset password request error - the user ${email} doesn\`t exist.`
    );
  } else if (!user.email) {
    self.apos.util.error(
      `Reset password request error - the user ${user.username} doesn\`t have an email.`
    );
  } else {
    const reset = self.apos.util.generateId();
    user.passwordReset = reset;
    user.passwordResetAt = new Date();
    await self.apos.user.update(req, user, { permissions: false });
    let port = (req.headers.host || '').split(':')[1];
    if (!port || [ '80', '443' ].includes(port)) {
      port = '';
    } else {
      port = `:${port}`;
    }
    const parsed = new URL(
      req.absoluteUrl,
      self.apos.baseUrl
        ? undefined
        : `${req.protocol}://${req.hostname}${port}`
    );
    parsed.pathname = self.login();
    parsed.search = '?';
    parsed.searchParams.append('reset', reset);
    parsed.searchParams.append('email', user.email);
    try {
      await self.email(req, 'passwordResetEmail', {
        user,
        url: parsed.toString(),
        site
      }, {
        to: user.email,
        subject: req.t('apostrophe:passwordResetRequest', { site })
      });
    } catch (err) {
      self.apos.util.error(`Error while sending email to ${user.email}`, err);
    }
  }
  // Pad all paths to a constant minimum duration
  const elapsed = Date.now() - startTime;
  if (elapsed < MIN_RESPONSE_TIME) {
    await Promise.delay(MIN_RESPONSE_TIME - elapsed);
  }
},
```

Additionally, consider applying rate limiting to the `reset-request` endpoint to prevent high-speed enumeration attempts.
Aliases
0
alias CVE-2026-33877
1
alias GHSA-mj7r-x3h3-7rmr
Fixed_packages
0
url pkg:npm/apostrophe@4.29.0
purl pkg:npm/apostrophe@4.29.0
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.29.0
Affected_packages
0
url pkg:npm/apostrophe@0.3.3
purl pkg:npm/apostrophe@0.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.3
1
url pkg:npm/apostrophe@0.3.4
purl pkg:npm/apostrophe@0.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.4
2
url pkg:npm/apostrophe@0.3.5
purl pkg:npm/apostrophe@0.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.5
3
url pkg:npm/apostrophe@0.3.6
purl pkg:npm/apostrophe@0.3.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.6
4
url pkg:npm/apostrophe@0.3.7
purl pkg:npm/apostrophe@0.3.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.7
5
url pkg:npm/apostrophe@0.3.8
purl pkg:npm/apostrophe@0.3.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.8
6
url pkg:npm/apostrophe@0.3.9
purl pkg:npm/apostrophe@0.3.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.9
7
url pkg:npm/apostrophe@0.3.10
purl pkg:npm/apostrophe@0.3.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.10
8
url pkg:npm/apostrophe@0.3.11
purl pkg:npm/apostrophe@0.3.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.11
9
url pkg:npm/apostrophe@0.3.12
purl pkg:npm/apostrophe@0.3.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.12
10
url pkg:npm/apostrophe@0.3.13
purl pkg:npm/apostrophe@0.3.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.13
11
url pkg:npm/apostrophe@0.3.14
purl pkg:npm/apostrophe@0.3.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.14
12
url pkg:npm/apostrophe@0.3.16
purl pkg:npm/apostrophe@0.3.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.16
13
url pkg:npm/apostrophe@0.3.18
purl pkg:npm/apostrophe@0.3.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.18
14
url pkg:npm/apostrophe@0.3.19
purl pkg:npm/apostrophe@0.3.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.3.19
15
url pkg:npm/apostrophe@0.4.0
purl pkg:npm/apostrophe@0.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.0
16
url pkg:npm/apostrophe@0.4.1
purl pkg:npm/apostrophe@0.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.1
17
url pkg:npm/apostrophe@0.4.2
purl pkg:npm/apostrophe@0.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.2
18
url pkg:npm/apostrophe@0.4.3
purl pkg:npm/apostrophe@0.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.3
19
url pkg:npm/apostrophe@0.4.4
purl pkg:npm/apostrophe@0.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.4
20
url pkg:npm/apostrophe@0.4.5
purl pkg:npm/apostrophe@0.4.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.5
21
url pkg:npm/apostrophe@0.4.6
purl pkg:npm/apostrophe@0.4.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.6
22
url pkg:npm/apostrophe@0.4.7
purl pkg:npm/apostrophe@0.4.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.7
23
url pkg:npm/apostrophe@0.4.8
purl pkg:npm/apostrophe@0.4.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.8
24
url pkg:npm/apostrophe@0.4.9
purl pkg:npm/apostrophe@0.4.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.9
25
url pkg:npm/apostrophe@0.4.10
purl pkg:npm/apostrophe@0.4.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.10
26
url pkg:npm/apostrophe@0.4.11
purl pkg:npm/apostrophe@0.4.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.11
27
url pkg:npm/apostrophe@0.4.12
purl pkg:npm/apostrophe@0.4.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.12
28
url pkg:npm/apostrophe@0.4.13
purl pkg:npm/apostrophe@0.4.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.13
29
url pkg:npm/apostrophe@0.4.14
purl pkg:npm/apostrophe@0.4.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.14
30
url pkg:npm/apostrophe@0.4.15
purl pkg:npm/apostrophe@0.4.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.15
31
url pkg:npm/apostrophe@0.4.16
purl pkg:npm/apostrophe@0.4.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.16
32
url pkg:npm/apostrophe@0.4.17
purl pkg:npm/apostrophe@0.4.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.17
33
url pkg:npm/apostrophe@0.4.18
purl pkg:npm/apostrophe@0.4.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.18
34
url pkg:npm/apostrophe@0.4.19
purl pkg:npm/apostrophe@0.4.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.19
35
url pkg:npm/apostrophe@0.4.20
purl pkg:npm/apostrophe@0.4.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.20
36
url pkg:npm/apostrophe@0.4.21
purl pkg:npm/apostrophe@0.4.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.21
37
url pkg:npm/apostrophe@0.4.22
purl pkg:npm/apostrophe@0.4.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.22
38
url pkg:npm/apostrophe@0.4.23
purl pkg:npm/apostrophe@0.4.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.23
39
url pkg:npm/apostrophe@0.4.24
purl pkg:npm/apostrophe@0.4.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.24
40
url pkg:npm/apostrophe@0.4.25
purl pkg:npm/apostrophe@0.4.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.25
41
url pkg:npm/apostrophe@0.4.26
purl pkg:npm/apostrophe@0.4.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.26
42
url pkg:npm/apostrophe@0.4.27
purl pkg:npm/apostrophe@0.4.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.27
43
url pkg:npm/apostrophe@0.4.28
purl pkg:npm/apostrophe@0.4.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.28
44
url pkg:npm/apostrophe@0.4.29
purl pkg:npm/apostrophe@0.4.29
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.29
45
url pkg:npm/apostrophe@0.4.30
purl pkg:npm/apostrophe@0.4.30
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.30
46
url pkg:npm/apostrophe@0.4.31
purl pkg:npm/apostrophe@0.4.31
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.31
47
url pkg:npm/apostrophe@0.4.32
purl pkg:npm/apostrophe@0.4.32
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.32
48
url pkg:npm/apostrophe@0.4.33
purl pkg:npm/apostrophe@0.4.33
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.33
49
url pkg:npm/apostrophe@0.4.34
purl pkg:npm/apostrophe@0.4.34
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.34
50
url pkg:npm/apostrophe@0.4.35
purl pkg:npm/apostrophe@0.4.35
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.35
51
url pkg:npm/apostrophe@0.4.36
purl pkg:npm/apostrophe@0.4.36
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.36
52
url pkg:npm/apostrophe@0.4.37
purl pkg:npm/apostrophe@0.4.37
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.37
53
url pkg:npm/apostrophe@0.4.38
purl pkg:npm/apostrophe@0.4.38
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.38
54
url pkg:npm/apostrophe@0.4.39
purl pkg:npm/apostrophe@0.4.39
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.39
55
url pkg:npm/apostrophe@0.4.40
purl pkg:npm/apostrophe@0.4.40
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.40
56
url pkg:npm/apostrophe@0.4.41
purl pkg:npm/apostrophe@0.4.41
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.41
57
url pkg:npm/apostrophe@0.4.42
purl pkg:npm/apostrophe@0.4.42
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.42
58
url pkg:npm/apostrophe@0.4.43
purl pkg:npm/apostrophe@0.4.43
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.43
59
url pkg:npm/apostrophe@0.4.44
purl pkg:npm/apostrophe@0.4.44
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.44
60
url pkg:npm/apostrophe@0.4.45
purl pkg:npm/apostrophe@0.4.45
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.45
61
url pkg:npm/apostrophe@0.4.46
purl pkg:npm/apostrophe@0.4.46
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.46
62
url pkg:npm/apostrophe@0.4.47
purl pkg:npm/apostrophe@0.4.47
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.47
63
url pkg:npm/apostrophe@0.4.48
purl pkg:npm/apostrophe@0.4.48
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.48
64
url pkg:npm/apostrophe@0.4.49
purl pkg:npm/apostrophe@0.4.49
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.49
65
url pkg:npm/apostrophe@0.4.50
purl pkg:npm/apostrophe@0.4.50
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.50
66
url pkg:npm/apostrophe@0.4.51
purl pkg:npm/apostrophe@0.4.51
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.51
67
url pkg:npm/apostrophe@0.4.52
purl pkg:npm/apostrophe@0.4.52
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.52
68
url pkg:npm/apostrophe@0.4.53
purl pkg:npm/apostrophe@0.4.53
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.53
69
url pkg:npm/apostrophe@0.4.54
purl pkg:npm/apostrophe@0.4.54
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.54
70
url pkg:npm/apostrophe@0.4.55
purl pkg:npm/apostrophe@0.4.55
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.55
71
url pkg:npm/apostrophe@0.4.56
purl pkg:npm/apostrophe@0.4.56
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.56
72
url pkg:npm/apostrophe@0.4.57
purl pkg:npm/apostrophe@0.4.57
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.57
73
url pkg:npm/apostrophe@0.4.58
purl pkg:npm/apostrophe@0.4.58
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.58
74
url pkg:npm/apostrophe@0.4.59
purl pkg:npm/apostrophe@0.4.59
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.59
75
url pkg:npm/apostrophe@0.4.60
purl pkg:npm/apostrophe@0.4.60
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.60
76
url pkg:npm/apostrophe@0.4.61
purl pkg:npm/apostrophe@0.4.61
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.61
77
url pkg:npm/apostrophe@0.4.62
purl pkg:npm/apostrophe@0.4.62
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.62
78
url pkg:npm/apostrophe@0.4.63
purl pkg:npm/apostrophe@0.4.63
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.63
79
url pkg:npm/apostrophe@0.4.64
purl pkg:npm/apostrophe@0.4.64
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.64
80
url pkg:npm/apostrophe@0.4.65
purl pkg:npm/apostrophe@0.4.65
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.65
81
url pkg:npm/apostrophe@0.4.66
purl pkg:npm/apostrophe@0.4.66
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.66
82
url pkg:npm/apostrophe@0.4.67
purl pkg:npm/apostrophe@0.4.67
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.67
83
url pkg:npm/apostrophe@0.4.68
purl pkg:npm/apostrophe@0.4.68
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.68
84
url pkg:npm/apostrophe@0.4.69
purl pkg:npm/apostrophe@0.4.69
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.69
85
url pkg:npm/apostrophe@0.4.70
purl pkg:npm/apostrophe@0.4.70
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.70
86
url pkg:npm/apostrophe@0.4.71
purl pkg:npm/apostrophe@0.4.71
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.71
87
url pkg:npm/apostrophe@0.4.72
purl pkg:npm/apostrophe@0.4.72
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.72
88
url pkg:npm/apostrophe@0.4.73
purl pkg:npm/apostrophe@0.4.73
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.73
89
url pkg:npm/apostrophe@0.4.74
purl pkg:npm/apostrophe@0.4.74
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.74
90
url pkg:npm/apostrophe@0.4.75
purl pkg:npm/apostrophe@0.4.75
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.75
91
url pkg:npm/apostrophe@0.4.76
purl pkg:npm/apostrophe@0.4.76
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.76
92
url pkg:npm/apostrophe@0.4.77
purl pkg:npm/apostrophe@0.4.77
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.77
93
url pkg:npm/apostrophe@0.4.78
purl pkg:npm/apostrophe@0.4.78
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.78
94
url pkg:npm/apostrophe@0.4.79
purl pkg:npm/apostrophe@0.4.79
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.79
95
url pkg:npm/apostrophe@0.4.80
purl pkg:npm/apostrophe@0.4.80
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.80
96
url pkg:npm/apostrophe@0.4.81
purl pkg:npm/apostrophe@0.4.81
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.81
97
url pkg:npm/apostrophe@0.4.82
purl pkg:npm/apostrophe@0.4.82
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.82
98
url pkg:npm/apostrophe@0.4.83
purl pkg:npm/apostrophe@0.4.83
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.83
99
url pkg:npm/apostrophe@0.4.84
purl pkg:npm/apostrophe@0.4.84
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.84
100
url pkg:npm/apostrophe@0.4.85
purl pkg:npm/apostrophe@0.4.85
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.85
101
url pkg:npm/apostrophe@0.4.86
purl pkg:npm/apostrophe@0.4.86
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.86
102
url pkg:npm/apostrophe@0.4.87
purl pkg:npm/apostrophe@0.4.87
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.87
103
url pkg:npm/apostrophe@0.4.88
purl pkg:npm/apostrophe@0.4.88
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.88
104
url pkg:npm/apostrophe@0.4.89
purl pkg:npm/apostrophe@0.4.89
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.89
105
url pkg:npm/apostrophe@0.4.90
purl pkg:npm/apostrophe@0.4.90
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.90
106
url pkg:npm/apostrophe@0.4.91
purl pkg:npm/apostrophe@0.4.91
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.91
107
url pkg:npm/apostrophe@0.4.92
purl pkg:npm/apostrophe@0.4.92
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.92
108
url pkg:npm/apostrophe@0.4.93
purl pkg:npm/apostrophe@0.4.93
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.93
109
url pkg:npm/apostrophe@0.4.94
purl pkg:npm/apostrophe@0.4.94
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.94
110
url pkg:npm/apostrophe@0.4.95
purl pkg:npm/apostrophe@0.4.95
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.95
111
url pkg:npm/apostrophe@0.4.96
purl pkg:npm/apostrophe@0.4.96
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.96
112
url pkg:npm/apostrophe@0.4.97
purl pkg:npm/apostrophe@0.4.97
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.97
113
url pkg:npm/apostrophe@0.4.98
purl pkg:npm/apostrophe@0.4.98
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.98
114
url pkg:npm/apostrophe@0.4.99
purl pkg:npm/apostrophe@0.4.99
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.99
115
url pkg:npm/apostrophe@0.4.100
purl pkg:npm/apostrophe@0.4.100
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.100
116
url pkg:npm/apostrophe@0.4.101
purl pkg:npm/apostrophe@0.4.101
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.101
117
url pkg:npm/apostrophe@0.4.102
purl pkg:npm/apostrophe@0.4.102
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.102
118
url pkg:npm/apostrophe@0.4.103
purl pkg:npm/apostrophe@0.4.103
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.103
119
url pkg:npm/apostrophe@0.4.104
purl pkg:npm/apostrophe@0.4.104
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.104
120
url pkg:npm/apostrophe@0.4.105
purl pkg:npm/apostrophe@0.4.105
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.105
121
url pkg:npm/apostrophe@0.4.106
purl pkg:npm/apostrophe@0.4.106
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.106
122
url pkg:npm/apostrophe@0.4.107
purl pkg:npm/apostrophe@0.4.107
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.107
123
url pkg:npm/apostrophe@0.4.108
purl pkg:npm/apostrophe@0.4.108
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.108
124
url pkg:npm/apostrophe@0.4.109
purl pkg:npm/apostrophe@0.4.109
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.109
125
url pkg:npm/apostrophe@0.4.110
purl pkg:npm/apostrophe@0.4.110
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.110
126
url pkg:npm/apostrophe@0.4.111
purl pkg:npm/apostrophe@0.4.111
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.111
127
url pkg:npm/apostrophe@0.4.112
purl pkg:npm/apostrophe@0.4.112
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.112
128
url pkg:npm/apostrophe@0.4.113
purl pkg:npm/apostrophe@0.4.113
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.113
129
url pkg:npm/apostrophe@0.4.114
purl pkg:npm/apostrophe@0.4.114
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.114
130
url pkg:npm/apostrophe@0.4.115
purl pkg:npm/apostrophe@0.4.115
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.115
131
url pkg:npm/apostrophe@0.4.116
purl pkg:npm/apostrophe@0.4.116
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.116
132
url pkg:npm/apostrophe@0.4.117
purl pkg:npm/apostrophe@0.4.117
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.117
133
url pkg:npm/apostrophe@0.4.118
purl pkg:npm/apostrophe@0.4.118
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.118
134
url pkg:npm/apostrophe@0.4.119
purl pkg:npm/apostrophe@0.4.119
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.119
135
url pkg:npm/apostrophe@0.4.120
purl pkg:npm/apostrophe@0.4.120
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.120
136
url pkg:npm/apostrophe@0.4.121
purl pkg:npm/apostrophe@0.4.121
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.121
137
url pkg:npm/apostrophe@0.4.122
purl pkg:npm/apostrophe@0.4.122
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.122
138
url pkg:npm/apostrophe@0.4.123
purl pkg:npm/apostrophe@0.4.123
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.123
139
url pkg:npm/apostrophe@0.4.124
purl pkg:npm/apostrophe@0.4.124
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.124
140
url pkg:npm/apostrophe@0.4.125
purl pkg:npm/apostrophe@0.4.125
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.125
141
url pkg:npm/apostrophe@0.4.126
purl pkg:npm/apostrophe@0.4.126
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.126
142
url pkg:npm/apostrophe@0.4.127
purl pkg:npm/apostrophe@0.4.127
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.127
143
url pkg:npm/apostrophe@0.4.128
purl pkg:npm/apostrophe@0.4.128
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.128
144
url pkg:npm/apostrophe@0.4.129
purl pkg:npm/apostrophe@0.4.129
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.129
145
url pkg:npm/apostrophe@0.4.130
purl pkg:npm/apostrophe@0.4.130
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.130
146
url pkg:npm/apostrophe@0.4.131
purl pkg:npm/apostrophe@0.4.131
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.131
147
url pkg:npm/apostrophe@0.4.132
purl pkg:npm/apostrophe@0.4.132
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.132
148
url pkg:npm/apostrophe@0.4.133
purl pkg:npm/apostrophe@0.4.133
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.133
149
url pkg:npm/apostrophe@0.4.134
purl pkg:npm/apostrophe@0.4.134
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.134
150
url pkg:npm/apostrophe@0.4.135
purl pkg:npm/apostrophe@0.4.135
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.135
151
url pkg:npm/apostrophe@0.4.136
purl pkg:npm/apostrophe@0.4.136
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.136
152
url pkg:npm/apostrophe@0.4.137
purl pkg:npm/apostrophe@0.4.137
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.137
153
url pkg:npm/apostrophe@0.4.138
purl pkg:npm/apostrophe@0.4.138
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.138
154
url pkg:npm/apostrophe@0.4.139
purl pkg:npm/apostrophe@0.4.139
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.139
155
url pkg:npm/apostrophe@0.4.140
purl pkg:npm/apostrophe@0.4.140
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.140
156
url pkg:npm/apostrophe@0.4.142
purl pkg:npm/apostrophe@0.4.142
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.142
157
url pkg:npm/apostrophe@0.4.143
purl pkg:npm/apostrophe@0.4.143
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.143
158
url pkg:npm/apostrophe@0.4.144
purl pkg:npm/apostrophe@0.4.144
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.144
159
url pkg:npm/apostrophe@0.4.145
purl pkg:npm/apostrophe@0.4.145
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.145
160
url pkg:npm/apostrophe@0.4.146
purl pkg:npm/apostrophe@0.4.146
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.146
161
url pkg:npm/apostrophe@0.4.147
purl pkg:npm/apostrophe@0.4.147
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.147
162
url pkg:npm/apostrophe@0.4.148
purl pkg:npm/apostrophe@0.4.148
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.148
163
url pkg:npm/apostrophe@0.4.149
purl pkg:npm/apostrophe@0.4.149
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.149
164
url pkg:npm/apostrophe@0.4.152
purl pkg:npm/apostrophe@0.4.152
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.152
165
url pkg:npm/apostrophe@0.4.154
purl pkg:npm/apostrophe@0.4.154
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.154
166
url pkg:npm/apostrophe@0.4.155
purl pkg:npm/apostrophe@0.4.155
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.155
167
url pkg:npm/apostrophe@0.4.156
purl pkg:npm/apostrophe@0.4.156
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.156
168
url pkg:npm/apostrophe@0.4.157
purl pkg:npm/apostrophe@0.4.157
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.157
169
url pkg:npm/apostrophe@0.4.158
purl pkg:npm/apostrophe@0.4.158
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.158
170
url pkg:npm/apostrophe@0.4.159
purl pkg:npm/apostrophe@0.4.159
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.159
171
url pkg:npm/apostrophe@0.4.160
purl pkg:npm/apostrophe@0.4.160
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.160
172
url pkg:npm/apostrophe@0.4.161
purl pkg:npm/apostrophe@0.4.161
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.161
173
url pkg:npm/apostrophe@0.4.162
purl pkg:npm/apostrophe@0.4.162
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.162
174
url pkg:npm/apostrophe@0.4.163
purl pkg:npm/apostrophe@0.4.163
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.163
175
url pkg:npm/apostrophe@0.4.164
purl pkg:npm/apostrophe@0.4.164
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.164
176
url pkg:npm/apostrophe@0.4.165
purl pkg:npm/apostrophe@0.4.165
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.165
177
url pkg:npm/apostrophe@0.4.166
purl pkg:npm/apostrophe@0.4.166
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.166
178
url pkg:npm/apostrophe@0.4.167
purl pkg:npm/apostrophe@0.4.167
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.167
179
url pkg:npm/apostrophe@0.4.168
purl pkg:npm/apostrophe@0.4.168
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.168
180
url pkg:npm/apostrophe@0.4.169
purl pkg:npm/apostrophe@0.4.169
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.169
181
url pkg:npm/apostrophe@0.4.170
purl pkg:npm/apostrophe@0.4.170
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.170
182
url pkg:npm/apostrophe@0.4.171
purl pkg:npm/apostrophe@0.4.171
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.171
183
url pkg:npm/apostrophe@0.4.172
purl pkg:npm/apostrophe@0.4.172
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.172
184
url pkg:npm/apostrophe@0.4.173
purl pkg:npm/apostrophe@0.4.173
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.173
185
url pkg:npm/apostrophe@0.4.174
purl pkg:npm/apostrophe@0.4.174
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.174
186
url pkg:npm/apostrophe@0.4.175
purl pkg:npm/apostrophe@0.4.175
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.175
187
url pkg:npm/apostrophe@0.4.176
purl pkg:npm/apostrophe@0.4.176
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.176
188
url pkg:npm/apostrophe@0.4.177
purl pkg:npm/apostrophe@0.4.177
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.177
189
url pkg:npm/apostrophe@0.4.179
purl pkg:npm/apostrophe@0.4.179
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.179
190
url pkg:npm/apostrophe@0.4.180
purl pkg:npm/apostrophe@0.4.180
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.180
191
url pkg:npm/apostrophe@0.4.181
purl pkg:npm/apostrophe@0.4.181
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.181
192
url pkg:npm/apostrophe@0.4.182
purl pkg:npm/apostrophe@0.4.182
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.182
193
url pkg:npm/apostrophe@0.4.183
purl pkg:npm/apostrophe@0.4.183
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.183
194
url pkg:npm/apostrophe@0.4.184
purl pkg:npm/apostrophe@0.4.184
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.184
195
url pkg:npm/apostrophe@0.4.185
purl pkg:npm/apostrophe@0.4.185
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.185
196
url pkg:npm/apostrophe@0.4.186
purl pkg:npm/apostrophe@0.4.186
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.186
197
url pkg:npm/apostrophe@0.4.187
purl pkg:npm/apostrophe@0.4.187
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.187
198
url pkg:npm/apostrophe@0.4.188
purl pkg:npm/apostrophe@0.4.188
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.188
199
url pkg:npm/apostrophe@0.4.189
purl pkg:npm/apostrophe@0.4.189
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.189
200
url pkg:npm/apostrophe@0.4.190
purl pkg:npm/apostrophe@0.4.190
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.190
201
url pkg:npm/apostrophe@0.4.191
purl pkg:npm/apostrophe@0.4.191
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.191
202
url pkg:npm/apostrophe@0.4.192
purl pkg:npm/apostrophe@0.4.192
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.192
203
url pkg:npm/apostrophe@0.4.194
purl pkg:npm/apostrophe@0.4.194
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.194
204
url pkg:npm/apostrophe@0.4.195
purl pkg:npm/apostrophe@0.4.195
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.195
205
url pkg:npm/apostrophe@0.4.196
purl pkg:npm/apostrophe@0.4.196
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.196
206
url pkg:npm/apostrophe@0.4.197
purl pkg:npm/apostrophe@0.4.197
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.197
207
url pkg:npm/apostrophe@0.4.198
purl pkg:npm/apostrophe@0.4.198
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.198
208
url pkg:npm/apostrophe@0.4.199
purl pkg:npm/apostrophe@0.4.199
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.199
209
url pkg:npm/apostrophe@0.4.200
purl pkg:npm/apostrophe@0.4.200
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.200
210
url pkg:npm/apostrophe@0.4.201
purl pkg:npm/apostrophe@0.4.201
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.201
211
url pkg:npm/apostrophe@0.4.202
purl pkg:npm/apostrophe@0.4.202
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.202
212
url pkg:npm/apostrophe@0.4.203
purl pkg:npm/apostrophe@0.4.203
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.203
213
url pkg:npm/apostrophe@0.4.204
purl pkg:npm/apostrophe@0.4.204
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.204
214
url pkg:npm/apostrophe@0.4.205
purl pkg:npm/apostrophe@0.4.205
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.205
215
url pkg:npm/apostrophe@0.4.206
purl pkg:npm/apostrophe@0.4.206
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.206
216
url pkg:npm/apostrophe@0.4.207
purl pkg:npm/apostrophe@0.4.207
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.207
217
url pkg:npm/apostrophe@0.4.208
purl pkg:npm/apostrophe@0.4.208
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.208
218
url pkg:npm/apostrophe@0.4.209
purl pkg:npm/apostrophe@0.4.209
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.209
219
url pkg:npm/apostrophe@0.4.210
purl pkg:npm/apostrophe@0.4.210
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.210
220
url pkg:npm/apostrophe@0.4.211
purl pkg:npm/apostrophe@0.4.211
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.211
221
url pkg:npm/apostrophe@0.4.212
purl pkg:npm/apostrophe@0.4.212
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.212
222
url pkg:npm/apostrophe@0.4.213
purl pkg:npm/apostrophe@0.4.213
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.213
223
url pkg:npm/apostrophe@0.4.214
purl pkg:npm/apostrophe@0.4.214
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.214
224
url pkg:npm/apostrophe@0.4.215
purl pkg:npm/apostrophe@0.4.215
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.215
225
url pkg:npm/apostrophe@0.4.216
purl pkg:npm/apostrophe@0.4.216
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.216
226
url pkg:npm/apostrophe@0.4.217
purl pkg:npm/apostrophe@0.4.217
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.217
227
url pkg:npm/apostrophe@0.4.218
purl pkg:npm/apostrophe@0.4.218
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.218
228
url pkg:npm/apostrophe@0.4.219
purl pkg:npm/apostrophe@0.4.219
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.219
229
url pkg:npm/apostrophe@0.4.220
purl pkg:npm/apostrophe@0.4.220
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.220
230
url pkg:npm/apostrophe@0.4.221
purl pkg:npm/apostrophe@0.4.221
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.221
231
url pkg:npm/apostrophe@0.4.222
purl pkg:npm/apostrophe@0.4.222
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.222
232
url pkg:npm/apostrophe@0.4.223
purl pkg:npm/apostrophe@0.4.223
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.223
233
url pkg:npm/apostrophe@0.4.224
purl pkg:npm/apostrophe@0.4.224
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.224
234
url pkg:npm/apostrophe@0.4.225
purl pkg:npm/apostrophe@0.4.225
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.225
235
url pkg:npm/apostrophe@0.4.227
purl pkg:npm/apostrophe@0.4.227
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.227
236
url pkg:npm/apostrophe@0.4.228
purl pkg:npm/apostrophe@0.4.228
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.228
237
url pkg:npm/apostrophe@0.4.229
purl pkg:npm/apostrophe@0.4.229
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.229
238
url pkg:npm/apostrophe@0.4.230
purl pkg:npm/apostrophe@0.4.230
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.230
239
url pkg:npm/apostrophe@0.4.231
purl pkg:npm/apostrophe@0.4.231
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.231
240
url pkg:npm/apostrophe@0.4.232
purl pkg:npm/apostrophe@0.4.232
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.232
241
url pkg:npm/apostrophe@0.4.233
purl pkg:npm/apostrophe@0.4.233
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.233
242
url pkg:npm/apostrophe@0.4.234
purl pkg:npm/apostrophe@0.4.234
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.234
243
url pkg:npm/apostrophe@0.4.235
purl pkg:npm/apostrophe@0.4.235
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.235
244
url pkg:npm/apostrophe@0.4.236
purl pkg:npm/apostrophe@0.4.236
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.236
245
url pkg:npm/apostrophe@0.4.237
purl pkg:npm/apostrophe@0.4.237
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.237
246
url pkg:npm/apostrophe@0.4.238
purl pkg:npm/apostrophe@0.4.238
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.238
247
url pkg:npm/apostrophe@0.4.239
purl pkg:npm/apostrophe@0.4.239
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.239
248
url pkg:npm/apostrophe@0.4.240
purl pkg:npm/apostrophe@0.4.240
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.240
249
url pkg:npm/apostrophe@0.4.241
purl pkg:npm/apostrophe@0.4.241
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.4.241
250
url pkg:npm/apostrophe@0.5.0
purl pkg:npm/apostrophe@0.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.0
251
url pkg:npm/apostrophe@0.5.1
purl pkg:npm/apostrophe@0.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.1
252
url pkg:npm/apostrophe@0.5.2
purl pkg:npm/apostrophe@0.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.2
253
url pkg:npm/apostrophe@0.5.4
purl pkg:npm/apostrophe@0.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.4
254
url pkg:npm/apostrophe@0.5.5
purl pkg:npm/apostrophe@0.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.5
255
url pkg:npm/apostrophe@0.5.6
purl pkg:npm/apostrophe@0.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.6
256
url pkg:npm/apostrophe@0.5.7
purl pkg:npm/apostrophe@0.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.7
257
url pkg:npm/apostrophe@0.5.8
purl pkg:npm/apostrophe@0.5.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.8
258
url pkg:npm/apostrophe@0.5.9
purl pkg:npm/apostrophe@0.5.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.9
259
url pkg:npm/apostrophe@0.5.10
purl pkg:npm/apostrophe@0.5.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.10
260
url pkg:npm/apostrophe@0.5.11
purl pkg:npm/apostrophe@0.5.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.11
261
url pkg:npm/apostrophe@0.5.12
purl pkg:npm/apostrophe@0.5.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.12
262
url pkg:npm/apostrophe@0.5.13
purl pkg:npm/apostrophe@0.5.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.13
263
url pkg:npm/apostrophe@0.5.14
purl pkg:npm/apostrophe@0.5.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.14
264
url pkg:npm/apostrophe@0.5.15
purl pkg:npm/apostrophe@0.5.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.15
265
url pkg:npm/apostrophe@0.5.16
purl pkg:npm/apostrophe@0.5.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.16
266
url pkg:npm/apostrophe@0.5.17
purl pkg:npm/apostrophe@0.5.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.17
267
url pkg:npm/apostrophe@0.5.18
purl pkg:npm/apostrophe@0.5.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.18
268
url pkg:npm/apostrophe@0.5.19
purl pkg:npm/apostrophe@0.5.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.19
269
url pkg:npm/apostrophe@0.5.20
purl pkg:npm/apostrophe@0.5.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.20
270
url pkg:npm/apostrophe@0.5.21
purl pkg:npm/apostrophe@0.5.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.21
271
url pkg:npm/apostrophe@0.5.22
purl pkg:npm/apostrophe@0.5.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.22
272
url pkg:npm/apostrophe@0.5.23
purl pkg:npm/apostrophe@0.5.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.23
273
url pkg:npm/apostrophe@0.5.24
purl pkg:npm/apostrophe@0.5.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.24
274
url pkg:npm/apostrophe@0.5.25
purl pkg:npm/apostrophe@0.5.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.25
275
url pkg:npm/apostrophe@0.5.26
purl pkg:npm/apostrophe@0.5.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.26
276
url pkg:npm/apostrophe@0.5.27
purl pkg:npm/apostrophe@0.5.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.27
277
url pkg:npm/apostrophe@0.5.28
purl pkg:npm/apostrophe@0.5.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.28
278
url pkg:npm/apostrophe@0.5.29
purl pkg:npm/apostrophe@0.5.29
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.29
279
url pkg:npm/apostrophe@0.5.30
purl pkg:npm/apostrophe@0.5.30
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.30
280
url pkg:npm/apostrophe@0.5.31
purl pkg:npm/apostrophe@0.5.31
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.31
281
url pkg:npm/apostrophe@0.5.32
purl pkg:npm/apostrophe@0.5.32
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.32
282
url pkg:npm/apostrophe@0.5.33
purl pkg:npm/apostrophe@0.5.33
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.33
283
url pkg:npm/apostrophe@0.5.34
purl pkg:npm/apostrophe@0.5.34
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.34
284
url pkg:npm/apostrophe@0.5.35
purl pkg:npm/apostrophe@0.5.35
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.35
285
url pkg:npm/apostrophe@0.5.36
purl pkg:npm/apostrophe@0.5.36
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.36
286
url pkg:npm/apostrophe@0.5.37
purl pkg:npm/apostrophe@0.5.37
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.37
287
url pkg:npm/apostrophe@0.5.38
purl pkg:npm/apostrophe@0.5.38
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.38
288
url pkg:npm/apostrophe@0.5.39
purl pkg:npm/apostrophe@0.5.39
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.39
289
url pkg:npm/apostrophe@0.5.40
purl pkg:npm/apostrophe@0.5.40
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.40
290
url pkg:npm/apostrophe@0.5.41
purl pkg:npm/apostrophe@0.5.41
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.41
291
url pkg:npm/apostrophe@0.5.42
purl pkg:npm/apostrophe@0.5.42
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.42
292
url pkg:npm/apostrophe@0.5.43
purl pkg:npm/apostrophe@0.5.43
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.43
293
url pkg:npm/apostrophe@0.5.44
purl pkg:npm/apostrophe@0.5.44
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.44
294
url pkg:npm/apostrophe@0.5.45
purl pkg:npm/apostrophe@0.5.45
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.45
295
url pkg:npm/apostrophe@0.5.46
purl pkg:npm/apostrophe@0.5.46
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.46
296
url pkg:npm/apostrophe@0.5.47
purl pkg:npm/apostrophe@0.5.47
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.47
297
url pkg:npm/apostrophe@0.5.48
purl pkg:npm/apostrophe@0.5.48
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.48
298
url pkg:npm/apostrophe@0.5.49
purl pkg:npm/apostrophe@0.5.49
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.49
299
url pkg:npm/apostrophe@0.5.50
purl pkg:npm/apostrophe@0.5.50
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.50
300
url pkg:npm/apostrophe@0.5.51
purl pkg:npm/apostrophe@0.5.51
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.51
301
url pkg:npm/apostrophe@0.5.52
purl pkg:npm/apostrophe@0.5.52
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.52
302
url pkg:npm/apostrophe@0.5.53
purl pkg:npm/apostrophe@0.5.53
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.53
303
url pkg:npm/apostrophe@0.5.54
purl pkg:npm/apostrophe@0.5.54
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.54
304
url pkg:npm/apostrophe@0.5.55
purl pkg:npm/apostrophe@0.5.55
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.55
305
url pkg:npm/apostrophe@0.5.56
purl pkg:npm/apostrophe@0.5.56
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.56
306
url pkg:npm/apostrophe@0.5.57
purl pkg:npm/apostrophe@0.5.57
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.57
307
url pkg:npm/apostrophe@0.5.58
purl pkg:npm/apostrophe@0.5.58
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.58
308
url pkg:npm/apostrophe@0.5.59
purl pkg:npm/apostrophe@0.5.59
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.59
309
url pkg:npm/apostrophe@0.5.60
purl pkg:npm/apostrophe@0.5.60
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.60
310
url pkg:npm/apostrophe@0.5.61
purl pkg:npm/apostrophe@0.5.61
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.61
311
url pkg:npm/apostrophe@0.5.62
purl pkg:npm/apostrophe@0.5.62
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.62
312
url pkg:npm/apostrophe@0.5.63
purl pkg:npm/apostrophe@0.5.63
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.63
313
url pkg:npm/apostrophe@0.5.64
purl pkg:npm/apostrophe@0.5.64
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.64
314
url pkg:npm/apostrophe@0.5.65
purl pkg:npm/apostrophe@0.5.65
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.65
315
url pkg:npm/apostrophe@0.5.66
purl pkg:npm/apostrophe@0.5.66
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.66
316
url pkg:npm/apostrophe@0.5.67
purl pkg:npm/apostrophe@0.5.67
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.67
317
url pkg:npm/apostrophe@0.5.69
purl pkg:npm/apostrophe@0.5.69
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.69
318
url pkg:npm/apostrophe@0.5.70
purl pkg:npm/apostrophe@0.5.70
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.70
319
url pkg:npm/apostrophe@0.5.71
purl pkg:npm/apostrophe@0.5.71
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.71
320
url pkg:npm/apostrophe@0.5.72
purl pkg:npm/apostrophe@0.5.72
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.72
321
url pkg:npm/apostrophe@0.5.73
purl pkg:npm/apostrophe@0.5.73
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.73
322
url pkg:npm/apostrophe@0.5.74
purl pkg:npm/apostrophe@0.5.74
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.74
323
url pkg:npm/apostrophe@0.5.75
purl pkg:npm/apostrophe@0.5.75
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.75
324
url pkg:npm/apostrophe@0.5.76
purl pkg:npm/apostrophe@0.5.76
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.76
325
url pkg:npm/apostrophe@0.5.77
purl pkg:npm/apostrophe@0.5.77
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.77
326
url pkg:npm/apostrophe@0.5.78
purl pkg:npm/apostrophe@0.5.78
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.78
327
url pkg:npm/apostrophe@0.5.79
purl pkg:npm/apostrophe@0.5.79
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.79
328
url pkg:npm/apostrophe@0.5.80
purl pkg:npm/apostrophe@0.5.80
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.80
329
url pkg:npm/apostrophe@0.5.81
purl pkg:npm/apostrophe@0.5.81
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.81
330
url pkg:npm/apostrophe@0.5.82
purl pkg:npm/apostrophe@0.5.82
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.82
331
url pkg:npm/apostrophe@0.5.83
purl pkg:npm/apostrophe@0.5.83
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.83
332
url pkg:npm/apostrophe@0.5.84
purl pkg:npm/apostrophe@0.5.84
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.84
333
url pkg:npm/apostrophe@0.5.85
purl pkg:npm/apostrophe@0.5.85
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.85
334
url pkg:npm/apostrophe@0.5.86
purl pkg:npm/apostrophe@0.5.86
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.86
335
url pkg:npm/apostrophe@0.5.87
purl pkg:npm/apostrophe@0.5.87
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.87
336
url pkg:npm/apostrophe@0.5.88
purl pkg:npm/apostrophe@0.5.88
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.88
337
url pkg:npm/apostrophe@0.5.89
purl pkg:npm/apostrophe@0.5.89
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.89
338
url pkg:npm/apostrophe@0.5.90
purl pkg:npm/apostrophe@0.5.90
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.90
339
url pkg:npm/apostrophe@0.5.91
purl pkg:npm/apostrophe@0.5.91
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.91
340
url pkg:npm/apostrophe@0.5.92
purl pkg:npm/apostrophe@0.5.92
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.92
341
url pkg:npm/apostrophe@0.5.93
purl pkg:npm/apostrophe@0.5.93
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.93
342
url pkg:npm/apostrophe@0.5.94
purl pkg:npm/apostrophe@0.5.94
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.94
343
url pkg:npm/apostrophe@0.5.95
purl pkg:npm/apostrophe@0.5.95
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.95
344
url pkg:npm/apostrophe@0.5.96
purl pkg:npm/apostrophe@0.5.96
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.96
345
url pkg:npm/apostrophe@0.5.97
purl pkg:npm/apostrophe@0.5.97
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.97
346
url pkg:npm/apostrophe@0.5.98
purl pkg:npm/apostrophe@0.5.98
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.98
347
url pkg:npm/apostrophe@0.5.99
purl pkg:npm/apostrophe@0.5.99
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.99
348
url pkg:npm/apostrophe@0.5.100
purl pkg:npm/apostrophe@0.5.100
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.100
349
url pkg:npm/apostrophe@0.5.101
purl pkg:npm/apostrophe@0.5.101
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.101
350
url pkg:npm/apostrophe@0.5.102
purl pkg:npm/apostrophe@0.5.102
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.102
351
url pkg:npm/apostrophe@0.5.103
purl pkg:npm/apostrophe@0.5.103
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.103
352
url pkg:npm/apostrophe@0.5.104
purl pkg:npm/apostrophe@0.5.104
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.104
353
url pkg:npm/apostrophe@0.5.105
purl pkg:npm/apostrophe@0.5.105
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.105
354
url pkg:npm/apostrophe@0.5.106
purl pkg:npm/apostrophe@0.5.106
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.106
355
url pkg:npm/apostrophe@0.5.107
purl pkg:npm/apostrophe@0.5.107
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.107
356
url pkg:npm/apostrophe@0.5.108
purl pkg:npm/apostrophe@0.5.108
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.108
357
url pkg:npm/apostrophe@0.5.109
purl pkg:npm/apostrophe@0.5.109
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.109
358
url pkg:npm/apostrophe@0.5.110
purl pkg:npm/apostrophe@0.5.110
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.110
359
url pkg:npm/apostrophe@0.5.111
purl pkg:npm/apostrophe@0.5.111
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.111
360
url pkg:npm/apostrophe@0.5.112
purl pkg:npm/apostrophe@0.5.112
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.112
361
url pkg:npm/apostrophe@0.5.113
purl pkg:npm/apostrophe@0.5.113
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.113
362
url pkg:npm/apostrophe@0.5.114
purl pkg:npm/apostrophe@0.5.114
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.114
363
url pkg:npm/apostrophe@0.5.115
purl pkg:npm/apostrophe@0.5.115
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.115
364
url pkg:npm/apostrophe@0.5.116
purl pkg:npm/apostrophe@0.5.116
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.116
365
url pkg:npm/apostrophe@0.5.117
purl pkg:npm/apostrophe@0.5.117
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.117
366
url pkg:npm/apostrophe@0.5.118
purl pkg:npm/apostrophe@0.5.118
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.118
367
url pkg:npm/apostrophe@0.5.119
purl pkg:npm/apostrophe@0.5.119
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.119
368
url pkg:npm/apostrophe@0.5.120
purl pkg:npm/apostrophe@0.5.120
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.120
369
url pkg:npm/apostrophe@0.5.121
purl pkg:npm/apostrophe@0.5.121
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.121
370
url pkg:npm/apostrophe@0.5.122
purl pkg:npm/apostrophe@0.5.122
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.122
371
url pkg:npm/apostrophe@0.5.123
purl pkg:npm/apostrophe@0.5.123
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.123
372
url pkg:npm/apostrophe@0.5.124
purl pkg:npm/apostrophe@0.5.124
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.124
373
url pkg:npm/apostrophe@0.5.125
purl pkg:npm/apostrophe@0.5.125
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.125
374
url pkg:npm/apostrophe@0.5.126
purl pkg:npm/apostrophe@0.5.126
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.126
375
url pkg:npm/apostrophe@0.5.127
purl pkg:npm/apostrophe@0.5.127
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.127
376
url pkg:npm/apostrophe@0.5.128
purl pkg:npm/apostrophe@0.5.128
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.128
377
url pkg:npm/apostrophe@0.5.129
purl pkg:npm/apostrophe@0.5.129
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.129
378
url pkg:npm/apostrophe@0.5.130
purl pkg:npm/apostrophe@0.5.130
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.130
379
url pkg:npm/apostrophe@0.5.131
purl pkg:npm/apostrophe@0.5.131
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.131
380
url pkg:npm/apostrophe@0.5.133
purl pkg:npm/apostrophe@0.5.133
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.133
381
url pkg:npm/apostrophe@0.5.134
purl pkg:npm/apostrophe@0.5.134
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.134
382
url pkg:npm/apostrophe@0.5.135
purl pkg:npm/apostrophe@0.5.135
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.135
383
url pkg:npm/apostrophe@0.5.136
purl pkg:npm/apostrophe@0.5.136
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.136
384
url pkg:npm/apostrophe@0.5.137
purl pkg:npm/apostrophe@0.5.137
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.137
385
url pkg:npm/apostrophe@0.5.138
purl pkg:npm/apostrophe@0.5.138
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.138
386
url pkg:npm/apostrophe@0.5.139
purl pkg:npm/apostrophe@0.5.139
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.139
387
url pkg:npm/apostrophe@0.5.140
purl pkg:npm/apostrophe@0.5.140
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.140
388
url pkg:npm/apostrophe@0.5.141
purl pkg:npm/apostrophe@0.5.141
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.141
389
url pkg:npm/apostrophe@0.5.142
purl pkg:npm/apostrophe@0.5.142
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.142
390
url pkg:npm/apostrophe@0.5.143
purl pkg:npm/apostrophe@0.5.143
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.143
391
url pkg:npm/apostrophe@0.5.144
purl pkg:npm/apostrophe@0.5.144
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.144
392
url pkg:npm/apostrophe@0.5.145
purl pkg:npm/apostrophe@0.5.145
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.145
393
url pkg:npm/apostrophe@0.5.146
purl pkg:npm/apostrophe@0.5.146
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.146
394
url pkg:npm/apostrophe@0.5.147
purl pkg:npm/apostrophe@0.5.147
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.147
395
url pkg:npm/apostrophe@0.5.148
purl pkg:npm/apostrophe@0.5.148
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.148
396
url pkg:npm/apostrophe@0.5.149
purl pkg:npm/apostrophe@0.5.149
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.149
397
url pkg:npm/apostrophe@0.5.150
purl pkg:npm/apostrophe@0.5.150
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.150
398
url pkg:npm/apostrophe@0.5.151
purl pkg:npm/apostrophe@0.5.151
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.151
399
url pkg:npm/apostrophe@0.5.152
purl pkg:npm/apostrophe@0.5.152
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.152
400
url pkg:npm/apostrophe@0.5.153
purl pkg:npm/apostrophe@0.5.153
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.153
401
url pkg:npm/apostrophe@0.5.155
purl pkg:npm/apostrophe@0.5.155
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.155
402
url pkg:npm/apostrophe@0.5.156
purl pkg:npm/apostrophe@0.5.156
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.156
403
url pkg:npm/apostrophe@0.5.157
purl pkg:npm/apostrophe@0.5.157
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.157
404
url pkg:npm/apostrophe@0.5.158
purl pkg:npm/apostrophe@0.5.158
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.158
405
url pkg:npm/apostrophe@0.5.159
purl pkg:npm/apostrophe@0.5.159
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.159
406
url pkg:npm/apostrophe@0.5.160
purl pkg:npm/apostrophe@0.5.160
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.160
407
url pkg:npm/apostrophe@0.5.161
purl pkg:npm/apostrophe@0.5.161
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.161
408
url pkg:npm/apostrophe@0.5.162
purl pkg:npm/apostrophe@0.5.162
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.162
409
url pkg:npm/apostrophe@0.5.163
purl pkg:npm/apostrophe@0.5.163
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.163
410
url pkg:npm/apostrophe@0.5.164
purl pkg:npm/apostrophe@0.5.164
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.164
411
url pkg:npm/apostrophe@0.5.165
purl pkg:npm/apostrophe@0.5.165
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.165
412
url pkg:npm/apostrophe@0.5.166
purl pkg:npm/apostrophe@0.5.166
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.166
413
url pkg:npm/apostrophe@0.5.167
purl pkg:npm/apostrophe@0.5.167
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.167
414
url pkg:npm/apostrophe@0.5.168
purl pkg:npm/apostrophe@0.5.168
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.168
415
url pkg:npm/apostrophe@0.5.169
purl pkg:npm/apostrophe@0.5.169
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.169
416
url pkg:npm/apostrophe@0.5.170
purl pkg:npm/apostrophe@0.5.170
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.170
417
url pkg:npm/apostrophe@0.5.171
purl pkg:npm/apostrophe@0.5.171
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.171
418
url pkg:npm/apostrophe@0.5.172
purl pkg:npm/apostrophe@0.5.172
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.172
419
url pkg:npm/apostrophe@0.5.174
purl pkg:npm/apostrophe@0.5.174
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.174
420
url pkg:npm/apostrophe@0.5.175
purl pkg:npm/apostrophe@0.5.175
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.175
421
url pkg:npm/apostrophe@0.5.176
purl pkg:npm/apostrophe@0.5.176
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.176
422
url pkg:npm/apostrophe@0.5.177
purl pkg:npm/apostrophe@0.5.177
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.177
423
url pkg:npm/apostrophe@0.5.178
purl pkg:npm/apostrophe@0.5.178
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.178
424
url pkg:npm/apostrophe@0.5.179
purl pkg:npm/apostrophe@0.5.179
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.179
425
url pkg:npm/apostrophe@0.5.181
purl pkg:npm/apostrophe@0.5.181
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.181
426
url pkg:npm/apostrophe@0.5.182
purl pkg:npm/apostrophe@0.5.182
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.182
427
url pkg:npm/apostrophe@0.5.183
purl pkg:npm/apostrophe@0.5.183
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.183
428
url pkg:npm/apostrophe@0.5.184
purl pkg:npm/apostrophe@0.5.184
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.184
429
url pkg:npm/apostrophe@0.5.185
purl pkg:npm/apostrophe@0.5.185
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.185
430
url pkg:npm/apostrophe@0.5.186
purl pkg:npm/apostrophe@0.5.186
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.186
431
url pkg:npm/apostrophe@0.5.187
purl pkg:npm/apostrophe@0.5.187
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.187
432
url pkg:npm/apostrophe@0.5.188
purl pkg:npm/apostrophe@0.5.188
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.188
433
url pkg:npm/apostrophe@0.5.189
purl pkg:npm/apostrophe@0.5.189
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.189
434
url pkg:npm/apostrophe@0.5.190
purl pkg:npm/apostrophe@0.5.190
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.190
435
url pkg:npm/apostrophe@0.5.191
purl pkg:npm/apostrophe@0.5.191
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.191
436
url pkg:npm/apostrophe@0.5.192
purl pkg:npm/apostrophe@0.5.192
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.192
437
url pkg:npm/apostrophe@0.5.193
purl pkg:npm/apostrophe@0.5.193
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.193
438
url pkg:npm/apostrophe@0.5.194
purl pkg:npm/apostrophe@0.5.194
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.194
439
url pkg:npm/apostrophe@0.5.195
purl pkg:npm/apostrophe@0.5.195
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.195
440
url pkg:npm/apostrophe@0.5.196
purl pkg:npm/apostrophe@0.5.196
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.196
441
url pkg:npm/apostrophe@0.5.197
purl pkg:npm/apostrophe@0.5.197
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.197
442
url pkg:npm/apostrophe@0.5.198
purl pkg:npm/apostrophe@0.5.198
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.198
443
url pkg:npm/apostrophe@0.5.199
purl pkg:npm/apostrophe@0.5.199
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.199
444
url pkg:npm/apostrophe@0.5.200
purl pkg:npm/apostrophe@0.5.200
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.200
445
url pkg:npm/apostrophe@0.5.201
purl pkg:npm/apostrophe@0.5.201
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.201
446
url pkg:npm/apostrophe@0.5.202
purl pkg:npm/apostrophe@0.5.202
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.202
447
url pkg:npm/apostrophe@0.5.203
purl pkg:npm/apostrophe@0.5.203
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.203
448
url pkg:npm/apostrophe@0.5.204
purl pkg:npm/apostrophe@0.5.204
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.204
449
url pkg:npm/apostrophe@0.5.205
purl pkg:npm/apostrophe@0.5.205
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.205
450
url pkg:npm/apostrophe@0.5.206
purl pkg:npm/apostrophe@0.5.206
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.206
451
url pkg:npm/apostrophe@0.5.207
purl pkg:npm/apostrophe@0.5.207
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.207
452
url pkg:npm/apostrophe@0.5.208
purl pkg:npm/apostrophe@0.5.208
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.208
453
url pkg:npm/apostrophe@0.5.209
purl pkg:npm/apostrophe@0.5.209
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.209
454
url pkg:npm/apostrophe@0.5.210
purl pkg:npm/apostrophe@0.5.210
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.210
455
url pkg:npm/apostrophe@0.5.211
purl pkg:npm/apostrophe@0.5.211
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.211
456
url pkg:npm/apostrophe@0.5.212
purl pkg:npm/apostrophe@0.5.212
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.212
457
url pkg:npm/apostrophe@0.5.213
purl pkg:npm/apostrophe@0.5.213
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.213
458
url pkg:npm/apostrophe@0.5.214
purl pkg:npm/apostrophe@0.5.214
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.214
459
url pkg:npm/apostrophe@0.5.215
purl pkg:npm/apostrophe@0.5.215
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.215
460
url pkg:npm/apostrophe@0.5.216
purl pkg:npm/apostrophe@0.5.216
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.216
461
url pkg:npm/apostrophe@0.5.217
purl pkg:npm/apostrophe@0.5.217
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.217
462
url pkg:npm/apostrophe@0.5.218
purl pkg:npm/apostrophe@0.5.218
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.218
463
url pkg:npm/apostrophe@0.5.219
purl pkg:npm/apostrophe@0.5.219
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.219
464
url pkg:npm/apostrophe@0.5.220
purl pkg:npm/apostrophe@0.5.220
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.220
465
url pkg:npm/apostrophe@0.5.221
purl pkg:npm/apostrophe@0.5.221
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.221
466
url pkg:npm/apostrophe@0.5.222
purl pkg:npm/apostrophe@0.5.222
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.222
467
url pkg:npm/apostrophe@0.5.223
purl pkg:npm/apostrophe@0.5.223
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.223
468
url pkg:npm/apostrophe@0.5.224
purl pkg:npm/apostrophe@0.5.224
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.224
469
url pkg:npm/apostrophe@0.5.225
purl pkg:npm/apostrophe@0.5.225
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.225
470
url pkg:npm/apostrophe@0.5.226
purl pkg:npm/apostrophe@0.5.226
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.226
471
url pkg:npm/apostrophe@0.5.227
purl pkg:npm/apostrophe@0.5.227
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.227
472
url pkg:npm/apostrophe@0.5.228
purl pkg:npm/apostrophe@0.5.228
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.228
473
url pkg:npm/apostrophe@0.5.229
purl pkg:npm/apostrophe@0.5.229
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.229
474
url pkg:npm/apostrophe@0.5.230
purl pkg:npm/apostrophe@0.5.230
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.230
475
url pkg:npm/apostrophe@0.5.231
purl pkg:npm/apostrophe@0.5.231
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.231
476
url pkg:npm/apostrophe@0.5.232
purl pkg:npm/apostrophe@0.5.232
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.232
477
url pkg:npm/apostrophe@0.5.233
purl pkg:npm/apostrophe@0.5.233
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.233
478
url pkg:npm/apostrophe@0.5.234
purl pkg:npm/apostrophe@0.5.234
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.234
479
url pkg:npm/apostrophe@0.5.235
purl pkg:npm/apostrophe@0.5.235
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.235
480
url pkg:npm/apostrophe@0.5.236
purl pkg:npm/apostrophe@0.5.236
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.236
481
url pkg:npm/apostrophe@0.5.237
purl pkg:npm/apostrophe@0.5.237
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.237
482
url pkg:npm/apostrophe@0.5.238
purl pkg:npm/apostrophe@0.5.238
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.238
483
url pkg:npm/apostrophe@0.5.239
purl pkg:npm/apostrophe@0.5.239
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.239
484
url pkg:npm/apostrophe@0.5.240
purl pkg:npm/apostrophe@0.5.240
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.240
485
url pkg:npm/apostrophe@0.5.241
purl pkg:npm/apostrophe@0.5.241
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.241
486
url pkg:npm/apostrophe@0.5.242
purl pkg:npm/apostrophe@0.5.242
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.242
487
url pkg:npm/apostrophe@0.5.243
purl pkg:npm/apostrophe@0.5.243
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.243
488
url pkg:npm/apostrophe@0.5.244
purl pkg:npm/apostrophe@0.5.244
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.244
489
url pkg:npm/apostrophe@0.5.245
purl pkg:npm/apostrophe@0.5.245
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.245
490
url pkg:npm/apostrophe@0.5.246
purl pkg:npm/apostrophe@0.5.246
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.246
491
url pkg:npm/apostrophe@0.5.247
purl pkg:npm/apostrophe@0.5.247
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.247
492
url pkg:npm/apostrophe@0.5.248
purl pkg:npm/apostrophe@0.5.248
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.248
493
url pkg:npm/apostrophe@0.5.249
purl pkg:npm/apostrophe@0.5.249
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.249
494
url pkg:npm/apostrophe@0.5.250
purl pkg:npm/apostrophe@0.5.250
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.250
495
url pkg:npm/apostrophe@0.5.251
purl pkg:npm/apostrophe@0.5.251
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.251
496
url pkg:npm/apostrophe@0.5.252
purl pkg:npm/apostrophe@0.5.252
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.252
497
url pkg:npm/apostrophe@0.5.253
purl pkg:npm/apostrophe@0.5.253
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.253
498
url pkg:npm/apostrophe@0.5.254
purl pkg:npm/apostrophe@0.5.254
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.254
499
url pkg:npm/apostrophe@0.5.255
purl pkg:npm/apostrophe@0.5.255
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.255
500
url pkg:npm/apostrophe@0.5.256
purl pkg:npm/apostrophe@0.5.256
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.256
501
url pkg:npm/apostrophe@0.5.257
purl pkg:npm/apostrophe@0.5.257
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.257
502
url pkg:npm/apostrophe@0.5.258
purl pkg:npm/apostrophe@0.5.258
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.258
503
url pkg:npm/apostrophe@0.5.259
purl pkg:npm/apostrophe@0.5.259
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.259
504
url pkg:npm/apostrophe@0.5.260
purl pkg:npm/apostrophe@0.5.260
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.260
505
url pkg:npm/apostrophe@0.5.261
purl pkg:npm/apostrophe@0.5.261
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.261
506
url pkg:npm/apostrophe@0.5.262
purl pkg:npm/apostrophe@0.5.262
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.262
507
url pkg:npm/apostrophe@0.5.263
purl pkg:npm/apostrophe@0.5.263
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.263
508
url pkg:npm/apostrophe@0.5.264
purl pkg:npm/apostrophe@0.5.264
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.264
509
url pkg:npm/apostrophe@0.5.265
purl pkg:npm/apostrophe@0.5.265
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.265
510
url pkg:npm/apostrophe@0.5.266
purl pkg:npm/apostrophe@0.5.266
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.266
511
url pkg:npm/apostrophe@0.5.267
purl pkg:npm/apostrophe@0.5.267
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.267
512
url pkg:npm/apostrophe@0.5.268
purl pkg:npm/apostrophe@0.5.268
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.268
513
url pkg:npm/apostrophe@0.5.269
purl pkg:npm/apostrophe@0.5.269
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.269
514
url pkg:npm/apostrophe@0.5.270
purl pkg:npm/apostrophe@0.5.270
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.270
515
url pkg:npm/apostrophe@0.5.271
purl pkg:npm/apostrophe@0.5.271
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.271
516
url pkg:npm/apostrophe@0.5.272
purl pkg:npm/apostrophe@0.5.272
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.272
517
url pkg:npm/apostrophe@0.5.273
purl pkg:npm/apostrophe@0.5.273
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.273
518
url pkg:npm/apostrophe@0.5.274
purl pkg:npm/apostrophe@0.5.274
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.274
519
url pkg:npm/apostrophe@0.5.275
purl pkg:npm/apostrophe@0.5.275
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.275
520
url pkg:npm/apostrophe@0.5.276
purl pkg:npm/apostrophe@0.5.276
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.276
521
url pkg:npm/apostrophe@0.5.277
purl pkg:npm/apostrophe@0.5.277
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.277
522
url pkg:npm/apostrophe@0.5.278
purl pkg:npm/apostrophe@0.5.278
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.278
523
url pkg:npm/apostrophe@0.5.279
purl pkg:npm/apostrophe@0.5.279
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.279
524
url pkg:npm/apostrophe@0.5.280
purl pkg:npm/apostrophe@0.5.280
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.280
525
url pkg:npm/apostrophe@0.5.281
purl pkg:npm/apostrophe@0.5.281
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.281
526
url pkg:npm/apostrophe@0.5.282
purl pkg:npm/apostrophe@0.5.282
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.282
527
url pkg:npm/apostrophe@0.5.283
purl pkg:npm/apostrophe@0.5.283
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.283
528
url pkg:npm/apostrophe@0.5.284
purl pkg:npm/apostrophe@0.5.284
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.284
529
url pkg:npm/apostrophe@0.5.285
purl pkg:npm/apostrophe@0.5.285
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.285
530
url pkg:npm/apostrophe@0.5.286
purl pkg:npm/apostrophe@0.5.286
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.286
531
url pkg:npm/apostrophe@0.5.287
purl pkg:npm/apostrophe@0.5.287
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.287
532
url pkg:npm/apostrophe@0.5.288
purl pkg:npm/apostrophe@0.5.288
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.288
533
url pkg:npm/apostrophe@0.5.289
purl pkg:npm/apostrophe@0.5.289
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.289
534
url pkg:npm/apostrophe@0.5.290
purl pkg:npm/apostrophe@0.5.290
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.290
535
url pkg:npm/apostrophe@0.5.291
purl pkg:npm/apostrophe@0.5.291
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.291
536
url pkg:npm/apostrophe@0.5.292
purl pkg:npm/apostrophe@0.5.292
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.292
537
url pkg:npm/apostrophe@0.5.293
purl pkg:npm/apostrophe@0.5.293
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.293
538
url pkg:npm/apostrophe@0.5.294
purl pkg:npm/apostrophe@0.5.294
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.294
539
url pkg:npm/apostrophe@0.5.295
purl pkg:npm/apostrophe@0.5.295
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.295
540
url pkg:npm/apostrophe@0.5.296
purl pkg:npm/apostrophe@0.5.296
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.296
541
url pkg:npm/apostrophe@0.5.297
purl pkg:npm/apostrophe@0.5.297
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.297
542
url pkg:npm/apostrophe@0.5.298
purl pkg:npm/apostrophe@0.5.298
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.298
543
url pkg:npm/apostrophe@0.5.299
purl pkg:npm/apostrophe@0.5.299
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.299
544
url pkg:npm/apostrophe@0.5.300
purl pkg:npm/apostrophe@0.5.300
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.300
545
url pkg:npm/apostrophe@0.5.301
purl pkg:npm/apostrophe@0.5.301
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.301
546
url pkg:npm/apostrophe@0.5.302
purl pkg:npm/apostrophe@0.5.302
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.302
547
url pkg:npm/apostrophe@0.5.303
purl pkg:npm/apostrophe@0.5.303
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.303
548
url pkg:npm/apostrophe@0.5.304
purl pkg:npm/apostrophe@0.5.304
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.304
549
url pkg:npm/apostrophe@0.5.305
purl pkg:npm/apostrophe@0.5.305
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.305
550
url pkg:npm/apostrophe@0.5.306
purl pkg:npm/apostrophe@0.5.306
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.306
551
url pkg:npm/apostrophe@0.5.307
purl pkg:npm/apostrophe@0.5.307
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.307
552
url pkg:npm/apostrophe@0.5.308
purl pkg:npm/apostrophe@0.5.308
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.308
553
url pkg:npm/apostrophe@0.5.309
purl pkg:npm/apostrophe@0.5.309
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.309
554
url pkg:npm/apostrophe@0.5.310
purl pkg:npm/apostrophe@0.5.310
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.310
555
url pkg:npm/apostrophe@0.5.311
purl pkg:npm/apostrophe@0.5.311
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.311
556
url pkg:npm/apostrophe@0.5.312
purl pkg:npm/apostrophe@0.5.312
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.312
557
url pkg:npm/apostrophe@0.5.313
purl pkg:npm/apostrophe@0.5.313
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.313
558
url pkg:npm/apostrophe@0.5.314
purl pkg:npm/apostrophe@0.5.314
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.314
559
url pkg:npm/apostrophe@0.5.315
purl pkg:npm/apostrophe@0.5.315
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.315
560
url pkg:npm/apostrophe@0.5.316
purl pkg:npm/apostrophe@0.5.316
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.316
561
url pkg:npm/apostrophe@0.5.317
purl pkg:npm/apostrophe@0.5.317
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.317
562
url pkg:npm/apostrophe@0.5.318
purl pkg:npm/apostrophe@0.5.318
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.318
563
url pkg:npm/apostrophe@0.5.319
purl pkg:npm/apostrophe@0.5.319
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.319
564
url pkg:npm/apostrophe@0.5.320
purl pkg:npm/apostrophe@0.5.320
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.320
565
url pkg:npm/apostrophe@0.5.321
purl pkg:npm/apostrophe@0.5.321
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.321
566
url pkg:npm/apostrophe@0.5.322
purl pkg:npm/apostrophe@0.5.322
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.322
567
url pkg:npm/apostrophe@0.5.323
purl pkg:npm/apostrophe@0.5.323
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.323
568
url pkg:npm/apostrophe@0.5.324
purl pkg:npm/apostrophe@0.5.324
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.324
569
url pkg:npm/apostrophe@0.5.325
purl pkg:npm/apostrophe@0.5.325
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.325
570
url pkg:npm/apostrophe@0.5.326
purl pkg:npm/apostrophe@0.5.326
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.326
571
url pkg:npm/apostrophe@0.5.327
purl pkg:npm/apostrophe@0.5.327
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.327
572
url pkg:npm/apostrophe@0.5.328
purl pkg:npm/apostrophe@0.5.328
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.328
573
url pkg:npm/apostrophe@0.5.329
purl pkg:npm/apostrophe@0.5.329
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.329
574
url pkg:npm/apostrophe@0.5.330
purl pkg:npm/apostrophe@0.5.330
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.330
575
url pkg:npm/apostrophe@0.5.331
purl pkg:npm/apostrophe@0.5.331
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.331
576
url pkg:npm/apostrophe@0.5.332
purl pkg:npm/apostrophe@0.5.332
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.332
577
url pkg:npm/apostrophe@0.5.333
purl pkg:npm/apostrophe@0.5.333
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.333
578
url pkg:npm/apostrophe@0.5.334
purl pkg:npm/apostrophe@0.5.334
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.334
579
url pkg:npm/apostrophe@0.5.335
purl pkg:npm/apostrophe@0.5.335
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.335
580
url pkg:npm/apostrophe@0.5.336
purl pkg:npm/apostrophe@0.5.336
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.336
581
url pkg:npm/apostrophe@0.5.337
purl pkg:npm/apostrophe@0.5.337
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.337
582
url pkg:npm/apostrophe@0.5.338
purl pkg:npm/apostrophe@0.5.338
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.338
583
url pkg:npm/apostrophe@0.5.339
purl pkg:npm/apostrophe@0.5.339
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.339
584
url pkg:npm/apostrophe@0.5.340
purl pkg:npm/apostrophe@0.5.340
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.340
585
url pkg:npm/apostrophe@0.5.341
purl pkg:npm/apostrophe@0.5.341
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.341
586
url pkg:npm/apostrophe@0.5.342
purl pkg:npm/apostrophe@0.5.342
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.342
587
url pkg:npm/apostrophe@0.5.343
purl pkg:npm/apostrophe@0.5.343
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.343
588
url pkg:npm/apostrophe@0.5.344
purl pkg:npm/apostrophe@0.5.344
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.344
589
url pkg:npm/apostrophe@0.5.345
purl pkg:npm/apostrophe@0.5.345
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.345
590
url pkg:npm/apostrophe@0.5.346
purl pkg:npm/apostrophe@0.5.346
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.346
591
url pkg:npm/apostrophe@0.5.347
purl pkg:npm/apostrophe@0.5.347
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.347
592
url pkg:npm/apostrophe@0.5.348
purl pkg:npm/apostrophe@0.5.348
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.348
593
url pkg:npm/apostrophe@0.5.349
purl pkg:npm/apostrophe@0.5.349
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.349
594
url pkg:npm/apostrophe@0.5.350
purl pkg:npm/apostrophe@0.5.350
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.350
595
url pkg:npm/apostrophe@0.5.351
purl pkg:npm/apostrophe@0.5.351
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.351
596
url pkg:npm/apostrophe@0.5.352
purl pkg:npm/apostrophe@0.5.352
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.352
597
url pkg:npm/apostrophe@0.5.353
purl pkg:npm/apostrophe@0.5.353
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.353
598
url pkg:npm/apostrophe@0.5.354
purl pkg:npm/apostrophe@0.5.354
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.354
599
url pkg:npm/apostrophe@0.5.355
purl pkg:npm/apostrophe@0.5.355
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.355
600
url pkg:npm/apostrophe@0.5.356
purl pkg:npm/apostrophe@0.5.356
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.356
601
url pkg:npm/apostrophe@0.5.357
purl pkg:npm/apostrophe@0.5.357
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.357
602
url pkg:npm/apostrophe@0.5.358
purl pkg:npm/apostrophe@0.5.358
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.358
603
url pkg:npm/apostrophe@0.5.359
purl pkg:npm/apostrophe@0.5.359
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.359
604
url pkg:npm/apostrophe@0.5.360
purl pkg:npm/apostrophe@0.5.360
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.360
605
url pkg:npm/apostrophe@0.5.361
purl pkg:npm/apostrophe@0.5.361
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.361
606
url pkg:npm/apostrophe@0.5.362
purl pkg:npm/apostrophe@0.5.362
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.362
607
url pkg:npm/apostrophe@0.5.363
purl pkg:npm/apostrophe@0.5.363
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.363
608
url pkg:npm/apostrophe@0.5.364
purl pkg:npm/apostrophe@0.5.364
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.364
609
url pkg:npm/apostrophe@0.5.367
purl pkg:npm/apostrophe@0.5.367
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.367
610
url pkg:npm/apostrophe@0.5.368
purl pkg:npm/apostrophe@0.5.368
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.368
611
url pkg:npm/apostrophe@0.5.369
purl pkg:npm/apostrophe@0.5.369
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.369
612
url pkg:npm/apostrophe@0.5.370
purl pkg:npm/apostrophe@0.5.370
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.370
613
url pkg:npm/apostrophe@0.5.371
purl pkg:npm/apostrophe@0.5.371
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.371
614
url pkg:npm/apostrophe@0.5.372
purl pkg:npm/apostrophe@0.5.372
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.372
615
url pkg:npm/apostrophe@0.5.373
purl pkg:npm/apostrophe@0.5.373
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.373
616
url pkg:npm/apostrophe@0.5.374
purl pkg:npm/apostrophe@0.5.374
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.374
617
url pkg:npm/apostrophe@0.5.375
purl pkg:npm/apostrophe@0.5.375
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.375
618
url pkg:npm/apostrophe@0.5.376
purl pkg:npm/apostrophe@0.5.376
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.376
619
url pkg:npm/apostrophe@0.5.377
purl pkg:npm/apostrophe@0.5.377
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.377
620
url pkg:npm/apostrophe@0.5.378
purl pkg:npm/apostrophe@0.5.378
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.378
621
url pkg:npm/apostrophe@0.5.379
purl pkg:npm/apostrophe@0.5.379
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.379
622
url pkg:npm/apostrophe@0.5.380
purl pkg:npm/apostrophe@0.5.380
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.380
623
url pkg:npm/apostrophe@0.5.381
purl pkg:npm/apostrophe@0.5.381
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.381
624
url pkg:npm/apostrophe@0.5.382
purl pkg:npm/apostrophe@0.5.382
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.382
625
url pkg:npm/apostrophe@0.5.383
purl pkg:npm/apostrophe@0.5.383
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.383
626
url pkg:npm/apostrophe@0.5.384
purl pkg:npm/apostrophe@0.5.384
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.384
627
url pkg:npm/apostrophe@0.5.385
purl pkg:npm/apostrophe@0.5.385
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.385
628
url pkg:npm/apostrophe@0.5.386
purl pkg:npm/apostrophe@0.5.386
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.386
629
url pkg:npm/apostrophe@0.5.387
purl pkg:npm/apostrophe@0.5.387
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.387
630
url pkg:npm/apostrophe@0.5.388
purl pkg:npm/apostrophe@0.5.388
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.388
631
url pkg:npm/apostrophe@0.5.389
purl pkg:npm/apostrophe@0.5.389
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.389
632
url pkg:npm/apostrophe@0.5.390
purl pkg:npm/apostrophe@0.5.390
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.390
633
url pkg:npm/apostrophe@0.5.391
purl pkg:npm/apostrophe@0.5.391
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.391
634
url pkg:npm/apostrophe@0.5.392
purl pkg:npm/apostrophe@0.5.392
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.392
635
url pkg:npm/apostrophe@0.5.393
purl pkg:npm/apostrophe@0.5.393
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@0.5.393
636
url pkg:npm/apostrophe@2.0.0
purl pkg:npm/apostrophe@2.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.0
637
url pkg:npm/apostrophe@2.0.1
purl pkg:npm/apostrophe@2.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.1
638
url pkg:npm/apostrophe@2.0.2
purl pkg:npm/apostrophe@2.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.2
639
url pkg:npm/apostrophe@2.0.3
purl pkg:npm/apostrophe@2.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.3
640
url pkg:npm/apostrophe@2.0.4
purl pkg:npm/apostrophe@2.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.0.4
641
url pkg:npm/apostrophe@2.1.0
purl pkg:npm/apostrophe@2.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.0
642
url pkg:npm/apostrophe@2.1.1
purl pkg:npm/apostrophe@2.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.1
643
url pkg:npm/apostrophe@2.1.2
purl pkg:npm/apostrophe@2.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.2
644
url pkg:npm/apostrophe@2.1.3
purl pkg:npm/apostrophe@2.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.3
645
url pkg:npm/apostrophe@2.1.4
purl pkg:npm/apostrophe@2.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.4
646
url pkg:npm/apostrophe@2.1.5
purl pkg:npm/apostrophe@2.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.1.5
647
url pkg:npm/apostrophe@2.2.0
purl pkg:npm/apostrophe@2.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.2.0
648
url pkg:npm/apostrophe@2.2.1
purl pkg:npm/apostrophe@2.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.2.1
649
url pkg:npm/apostrophe@2.2.2
purl pkg:npm/apostrophe@2.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.2.2
650
url pkg:npm/apostrophe@2.3.0
purl pkg:npm/apostrophe@2.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.3.0
651
url pkg:npm/apostrophe@2.3.1
purl pkg:npm/apostrophe@2.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.3.1
652
url pkg:npm/apostrophe@2.3.2
purl pkg:npm/apostrophe@2.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.3.2
653
url pkg:npm/apostrophe@2.4.0
purl pkg:npm/apostrophe@2.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.4.0
654
url pkg:npm/apostrophe@2.5.0
purl pkg:npm/apostrophe@2.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.5.0
655
url pkg:npm/apostrophe@2.5.1
purl pkg:npm/apostrophe@2.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.5.1
656
url pkg:npm/apostrophe@2.5.2
purl pkg:npm/apostrophe@2.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.5.2
657
url pkg:npm/apostrophe@2.6.0
purl pkg:npm/apostrophe@2.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.6.0
658
url pkg:npm/apostrophe@2.6.1
purl pkg:npm/apostrophe@2.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.6.1
659
url pkg:npm/apostrophe@2.6.2
purl pkg:npm/apostrophe@2.6.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.6.2
660
url pkg:npm/apostrophe@2.7.0
purl pkg:npm/apostrophe@2.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.7.0
661
url pkg:npm/apostrophe@2.8.0
purl pkg:npm/apostrophe@2.8.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.8.0
662
url pkg:npm/apostrophe@2.9.0
purl pkg:npm/apostrophe@2.9.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.9.0
663
url pkg:npm/apostrophe@2.9.1
purl pkg:npm/apostrophe@2.9.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.9.1
664
url pkg:npm/apostrophe@2.9.2
purl pkg:npm/apostrophe@2.9.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.9.2
665
url pkg:npm/apostrophe@2.10.0
purl pkg:npm/apostrophe@2.10.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.10.0
666
url pkg:npm/apostrophe@2.10.1
purl pkg:npm/apostrophe@2.10.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.10.1
667
url pkg:npm/apostrophe@2.10.2
purl pkg:npm/apostrophe@2.10.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.10.2
668
url pkg:npm/apostrophe@2.10.3
purl pkg:npm/apostrophe@2.10.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.10.3
669
url pkg:npm/apostrophe@2.11.0
purl pkg:npm/apostrophe@2.11.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.11.0
670
url pkg:npm/apostrophe@2.12.0
purl pkg:npm/apostrophe@2.12.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.12.0
671
url pkg:npm/apostrophe@2.13.0
purl pkg:npm/apostrophe@2.13.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.13.0
672
url pkg:npm/apostrophe@2.13.1
purl pkg:npm/apostrophe@2.13.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.13.1
673
url pkg:npm/apostrophe@2.13.2
purl pkg:npm/apostrophe@2.13.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.13.2
674
url pkg:npm/apostrophe@2.14.0
purl pkg:npm/apostrophe@2.14.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.14.0
675
url pkg:npm/apostrophe@2.14.1
purl pkg:npm/apostrophe@2.14.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.14.1
676
url pkg:npm/apostrophe@2.14.2
purl pkg:npm/apostrophe@2.14.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.14.2
677
url pkg:npm/apostrophe@2.15.0
purl pkg:npm/apostrophe@2.15.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.15.0
678
url pkg:npm/apostrophe@2.15.1
purl pkg:npm/apostrophe@2.15.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.15.1
679
url pkg:npm/apostrophe@2.15.2
purl pkg:npm/apostrophe@2.15.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.15.2
680
url pkg:npm/apostrophe@2.16.0
purl pkg:npm/apostrophe@2.16.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.16.0
681
url pkg:npm/apostrophe@2.16.1
purl pkg:npm/apostrophe@2.16.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.16.1
682
url pkg:npm/apostrophe@2.17.0
purl pkg:npm/apostrophe@2.17.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.17.0
683
url pkg:npm/apostrophe@2.17.1
purl pkg:npm/apostrophe@2.17.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.17.1
684
url pkg:npm/apostrophe@2.17.2
purl pkg:npm/apostrophe@2.17.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.17.2
685
url pkg:npm/apostrophe@2.18.0
purl pkg:npm/apostrophe@2.18.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.18.0
686
url pkg:npm/apostrophe@2.18.1
purl pkg:npm/apostrophe@2.18.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.18.1
687
url pkg:npm/apostrophe@2.18.2
purl pkg:npm/apostrophe@2.18.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.18.2
688
url pkg:npm/apostrophe@2.19.0
purl pkg:npm/apostrophe@2.19.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.19.0
689
url pkg:npm/apostrophe@2.19.1
purl pkg:npm/apostrophe@2.19.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.19.1
690
url pkg:npm/apostrophe@2.20.0
purl pkg:npm/apostrophe@2.20.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.20.0
691
url pkg:npm/apostrophe@2.20.1
purl pkg:npm/apostrophe@2.20.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.20.1
692
url pkg:npm/apostrophe@2.20.2
purl pkg:npm/apostrophe@2.20.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.20.2
693
url pkg:npm/apostrophe@2.20.3
purl pkg:npm/apostrophe@2.20.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.20.3
694
url pkg:npm/apostrophe@2.21.0
purl pkg:npm/apostrophe@2.21.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.21.0
695
url pkg:npm/apostrophe@2.22.0
purl pkg:npm/apostrophe@2.22.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.22.0
696
url pkg:npm/apostrophe@2.22.1
purl pkg:npm/apostrophe@2.22.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.22.1
697
url pkg:npm/apostrophe@2.23.0
purl pkg:npm/apostrophe@2.23.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.23.0
698
url pkg:npm/apostrophe@2.23.1
purl pkg:npm/apostrophe@2.23.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.23.1
699
url pkg:npm/apostrophe@2.23.2
purl pkg:npm/apostrophe@2.23.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.23.2
700
url pkg:npm/apostrophe@2.24.0
purl pkg:npm/apostrophe@2.24.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.24.0
701
url pkg:npm/apostrophe@2.25.0
purl pkg:npm/apostrophe@2.25.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.25.0
702
url pkg:npm/apostrophe@2.25.1
purl pkg:npm/apostrophe@2.25.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.25.1
703
url pkg:npm/apostrophe@2.26.0
purl pkg:npm/apostrophe@2.26.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.26.0
704
url pkg:npm/apostrophe@2.26.1
purl pkg:npm/apostrophe@2.26.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.26.1
705
url pkg:npm/apostrophe@2.27.0
purl pkg:npm/apostrophe@2.27.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.27.0
706
url pkg:npm/apostrophe@2.27.1
purl pkg:npm/apostrophe@2.27.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.27.1
707
url pkg:npm/apostrophe@2.28.0
purl pkg:npm/apostrophe@2.28.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.28.0
708
url pkg:npm/apostrophe@2.29.0
purl pkg:npm/apostrophe@2.29.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.29.0
709
url pkg:npm/apostrophe@2.29.1
purl pkg:npm/apostrophe@2.29.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.29.1
710
url pkg:npm/apostrophe@2.29.2
purl pkg:npm/apostrophe@2.29.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.29.2
711
url pkg:npm/apostrophe@2.30.0
purl pkg:npm/apostrophe@2.30.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.30.0
712
url pkg:npm/apostrophe@2.31.0
purl pkg:npm/apostrophe@2.31.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.31.0
713
url pkg:npm/apostrophe@2.32.0
purl pkg:npm/apostrophe@2.32.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.32.0
714
url pkg:npm/apostrophe@2.33.0
purl pkg:npm/apostrophe@2.33.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.33.0
715
url pkg:npm/apostrophe@2.33.1
purl pkg:npm/apostrophe@2.33.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.33.1
716
url pkg:npm/apostrophe@2.34.0
purl pkg:npm/apostrophe@2.34.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.34.0
717
url pkg:npm/apostrophe@2.34.1
purl pkg:npm/apostrophe@2.34.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.34.1
718
url pkg:npm/apostrophe@2.34.2
purl pkg:npm/apostrophe@2.34.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.34.2
719
url pkg:npm/apostrophe@2.34.3
purl pkg:npm/apostrophe@2.34.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.34.3
720
url pkg:npm/apostrophe@2.35.0
purl pkg:npm/apostrophe@2.35.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.35.0
721
url pkg:npm/apostrophe@2.35.1
purl pkg:npm/apostrophe@2.35.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.35.1
722
url pkg:npm/apostrophe@2.36.0
purl pkg:npm/apostrophe@2.36.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.36.0
723
url pkg:npm/apostrophe@2.36.1
purl pkg:npm/apostrophe@2.36.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.36.1
724
url pkg:npm/apostrophe@2.36.2
purl pkg:npm/apostrophe@2.36.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.36.2
725
url pkg:npm/apostrophe@2.36.3
purl pkg:npm/apostrophe@2.36.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.36.3
726
url pkg:npm/apostrophe@2.37.0
purl pkg:npm/apostrophe@2.37.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.37.0
727
url pkg:npm/apostrophe@2.37.1
purl pkg:npm/apostrophe@2.37.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.37.1
728
url pkg:npm/apostrophe@2.37.2
purl pkg:npm/apostrophe@2.37.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.37.2
729
url pkg:npm/apostrophe@2.38.0
purl pkg:npm/apostrophe@2.38.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.38.0
730
url pkg:npm/apostrophe@2.39.0
purl pkg:npm/apostrophe@2.39.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.39.0
731
url pkg:npm/apostrophe@2.39.1
purl pkg:npm/apostrophe@2.39.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.39.1
732
url pkg:npm/apostrophe@2.39.2
purl pkg:npm/apostrophe@2.39.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.39.2
733
url pkg:npm/apostrophe@2.40.0
purl pkg:npm/apostrophe@2.40.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.40.0
734
url pkg:npm/apostrophe@2.41.0
purl pkg:npm/apostrophe@2.41.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.41.0
735
url pkg:npm/apostrophe@2.42.0
purl pkg:npm/apostrophe@2.42.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.42.0
736
url pkg:npm/apostrophe@2.42.1
purl pkg:npm/apostrophe@2.42.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.42.1
737
url pkg:npm/apostrophe@2.43.0
purl pkg:npm/apostrophe@2.43.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.43.0
738
url pkg:npm/apostrophe@2.44.0
purl pkg:npm/apostrophe@2.44.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.44.0
739
url pkg:npm/apostrophe@2.45.0
purl pkg:npm/apostrophe@2.45.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.45.0
740
url pkg:npm/apostrophe@2.46.0
purl pkg:npm/apostrophe@2.46.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.46.0
741
url pkg:npm/apostrophe@2.46.1
purl pkg:npm/apostrophe@2.46.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.46.1
742
url pkg:npm/apostrophe@2.47.0
purl pkg:npm/apostrophe@2.47.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.47.0
743
url pkg:npm/apostrophe@2.48.0
purl pkg:npm/apostrophe@2.48.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.48.0
744
url pkg:npm/apostrophe@2.49.0
purl pkg:npm/apostrophe@2.49.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.49.0
745
url pkg:npm/apostrophe@2.50.0
purl pkg:npm/apostrophe@2.50.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.50.0
746
url pkg:npm/apostrophe@2.51.0
purl pkg:npm/apostrophe@2.51.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.51.0
747
url pkg:npm/apostrophe@2.51.1
purl pkg:npm/apostrophe@2.51.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.51.1
748
url pkg:npm/apostrophe@2.52.0
purl pkg:npm/apostrophe@2.52.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.52.0
749
url pkg:npm/apostrophe@2.53.0
purl pkg:npm/apostrophe@2.53.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.53.0
750
url pkg:npm/apostrophe@2.54.0
purl pkg:npm/apostrophe@2.54.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.54.0
751
url pkg:npm/apostrophe@2.54.1
purl pkg:npm/apostrophe@2.54.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.54.1
752
url pkg:npm/apostrophe@2.54.2
purl pkg:npm/apostrophe@2.54.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.54.2
753
url pkg:npm/apostrophe@2.54.3
purl pkg:npm/apostrophe@2.54.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.54.3
754
url pkg:npm/apostrophe@2.55.0
purl pkg:npm/apostrophe@2.55.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.55.0
755
url pkg:npm/apostrophe@2.55.1
purl pkg:npm/apostrophe@2.55.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.55.1
756
url pkg:npm/apostrophe@2.55.2
purl pkg:npm/apostrophe@2.55.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.55.2
757
url pkg:npm/apostrophe@2.56.0
purl pkg:npm/apostrophe@2.56.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.56.0
758
url pkg:npm/apostrophe@2.57.0
purl pkg:npm/apostrophe@2.57.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.57.0
759
url pkg:npm/apostrophe@2.57.1
purl pkg:npm/apostrophe@2.57.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.57.1
760
url pkg:npm/apostrophe@2.57.2
purl pkg:npm/apostrophe@2.57.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.57.2
761
url pkg:npm/apostrophe@2.58.0
purl pkg:npm/apostrophe@2.58.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.58.0
762
url pkg:npm/apostrophe@2.59.0
purl pkg:npm/apostrophe@2.59.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.59.0
763
url pkg:npm/apostrophe@2.59.1
purl pkg:npm/apostrophe@2.59.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.59.1
764
url pkg:npm/apostrophe@2.60.0
purl pkg:npm/apostrophe@2.60.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.0
765
url pkg:npm/apostrophe@2.60.1
purl pkg:npm/apostrophe@2.60.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.1
766
url pkg:npm/apostrophe@2.60.2
purl pkg:npm/apostrophe@2.60.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.2
767
url pkg:npm/apostrophe@2.60.3
purl pkg:npm/apostrophe@2.60.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.3
768
url pkg:npm/apostrophe@2.60.4
purl pkg:npm/apostrophe@2.60.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.60.4
769
url pkg:npm/apostrophe@2.61.0
purl pkg:npm/apostrophe@2.61.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.61.0
770
url pkg:npm/apostrophe@2.62.0
purl pkg:npm/apostrophe@2.62.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-pvxq-3qsf-efc5
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.62.0
771
url pkg:npm/apostrophe@2.63.0
purl pkg:npm/apostrophe@2.63.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.63.0
772
url pkg:npm/apostrophe@2.64.0
purl pkg:npm/apostrophe@2.64.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.64.0
773
url pkg:npm/apostrophe@2.64.1
purl pkg:npm/apostrophe@2.64.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.64.1
774
url pkg:npm/apostrophe@2.65.0
purl pkg:npm/apostrophe@2.65.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.65.0
775
url pkg:npm/apostrophe@2.66.0
purl pkg:npm/apostrophe@2.66.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.66.0
776
url pkg:npm/apostrophe@2.67.0
purl pkg:npm/apostrophe@2.67.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.67.0
777
url pkg:npm/apostrophe@2.68.0
purl pkg:npm/apostrophe@2.68.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.68.0
778
url pkg:npm/apostrophe@2.68.1
purl pkg:npm/apostrophe@2.68.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.68.1
779
url pkg:npm/apostrophe@2.69.0
purl pkg:npm/apostrophe@2.69.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.69.0
780
url pkg:npm/apostrophe@2.69.1
purl pkg:npm/apostrophe@2.69.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.69.1
781
url pkg:npm/apostrophe@2.70.0
purl pkg:npm/apostrophe@2.70.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.70.0
782
url pkg:npm/apostrophe@2.70.1
purl pkg:npm/apostrophe@2.70.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.70.1
783
url pkg:npm/apostrophe@2.71.0
purl pkg:npm/apostrophe@2.71.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.71.0
784
url pkg:npm/apostrophe@2.71.1
purl pkg:npm/apostrophe@2.71.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.71.1
785
url pkg:npm/apostrophe@2.72.0
purl pkg:npm/apostrophe@2.72.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.72.0
786
url pkg:npm/apostrophe@2.72.1
purl pkg:npm/apostrophe@2.72.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.72.1
787
url pkg:npm/apostrophe@2.72.2
purl pkg:npm/apostrophe@2.72.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.72.2
788
url pkg:npm/apostrophe@2.72.3
purl pkg:npm/apostrophe@2.72.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.72.3
789
url pkg:npm/apostrophe@2.73.0
purl pkg:npm/apostrophe@2.73.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.73.0
790
url pkg:npm/apostrophe@2.74.0
purl pkg:npm/apostrophe@2.74.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.74.0
791
url pkg:npm/apostrophe@2.75.0
purl pkg:npm/apostrophe@2.75.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.75.0
792
url pkg:npm/apostrophe@2.75.1
purl pkg:npm/apostrophe@2.75.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.75.1
793
url pkg:npm/apostrophe@2.76.0
purl pkg:npm/apostrophe@2.76.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.76.0
794
url pkg:npm/apostrophe@2.76.1
purl pkg:npm/apostrophe@2.76.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.76.1
795
url pkg:npm/apostrophe@2.77.0
purl pkg:npm/apostrophe@2.77.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.77.0
796
url pkg:npm/apostrophe@2.77.1
purl pkg:npm/apostrophe@2.77.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.77.1
797
url pkg:npm/apostrophe@2.77.2
purl pkg:npm/apostrophe@2.77.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.77.2
798
url pkg:npm/apostrophe@2.78.0
purl pkg:npm/apostrophe@2.78.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.78.0
799
url pkg:npm/apostrophe@2.79.0
purl pkg:npm/apostrophe@2.79.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.79.0
800
url pkg:npm/apostrophe@2.80.0
purl pkg:npm/apostrophe@2.80.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.80.0
801
url pkg:npm/apostrophe@2.81.0
purl pkg:npm/apostrophe@2.81.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.81.0
802
url pkg:npm/apostrophe@2.81.1
purl pkg:npm/apostrophe@2.81.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.81.1
803
url pkg:npm/apostrophe@2.81.2
purl pkg:npm/apostrophe@2.81.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.81.2
804
url pkg:npm/apostrophe@2.82.0
purl pkg:npm/apostrophe@2.82.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.82.0
805
url pkg:npm/apostrophe@2.83.0
purl pkg:npm/apostrophe@2.83.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.83.0
806
url pkg:npm/apostrophe@2.83.1
purl pkg:npm/apostrophe@2.83.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.83.1
807
url pkg:npm/apostrophe@2.84.0
purl pkg:npm/apostrophe@2.84.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.84.0
808
url pkg:npm/apostrophe@2.84.1
purl pkg:npm/apostrophe@2.84.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.84.1
809
url pkg:npm/apostrophe@2.85.0
purl pkg:npm/apostrophe@2.85.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.85.0
810
url pkg:npm/apostrophe@2.86.0
purl pkg:npm/apostrophe@2.86.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.86.0
811
url pkg:npm/apostrophe@2.87.0
purl pkg:npm/apostrophe@2.87.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.87.0
812
url pkg:npm/apostrophe@2.88.0
purl pkg:npm/apostrophe@2.88.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.88.0
813
url pkg:npm/apostrophe@2.88.1
purl pkg:npm/apostrophe@2.88.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.88.1
814
url pkg:npm/apostrophe@2.89.0
purl pkg:npm/apostrophe@2.89.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.89.0
815
url pkg:npm/apostrophe@2.89.1
purl pkg:npm/apostrophe@2.89.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.89.1
816
url pkg:npm/apostrophe@2.90.0
purl pkg:npm/apostrophe@2.90.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.90.0
817
url pkg:npm/apostrophe@2.91.0
purl pkg:npm/apostrophe@2.91.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.91.0
818
url pkg:npm/apostrophe@2.91.1
purl pkg:npm/apostrophe@2.91.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-pvxq-3qsf-efc5
9
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.91.1
819
url pkg:npm/apostrophe@2.92.0
purl pkg:npm/apostrophe@2.92.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.92.0
820
url pkg:npm/apostrophe@2.92.1
purl pkg:npm/apostrophe@2.92.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.92.1
821
url pkg:npm/apostrophe@2.93.0
purl pkg:npm/apostrophe@2.93.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.93.0
822
url pkg:npm/apostrophe@2.94.0
purl pkg:npm/apostrophe@2.94.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.94.0
823
url pkg:npm/apostrophe@2.94.1
purl pkg:npm/apostrophe@2.94.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.94.1
824
url pkg:npm/apostrophe@2.95.0
purl pkg:npm/apostrophe@2.95.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.95.0
825
url pkg:npm/apostrophe@2.95.1
purl pkg:npm/apostrophe@2.95.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.95.1
826
url pkg:npm/apostrophe@2.96.0
purl pkg:npm/apostrophe@2.96.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.96.0
827
url pkg:npm/apostrophe@2.96.1
purl pkg:npm/apostrophe@2.96.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.96.1
828
url pkg:npm/apostrophe@2.96.2
purl pkg:npm/apostrophe@2.96.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.96.2
829
url pkg:npm/apostrophe@2.97.0
purl pkg:npm/apostrophe@2.97.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-5v79-remg-7ub4
3
vulnerability VCID-82j4-a56g-3kbq
4
vulnerability VCID-a7rh-r1sn-2udh
5
vulnerability VCID-dsd6-hfud-ekfs
6
vulnerability VCID-ewtn-suju-dyeb
7
vulnerability VCID-h7q4-v6us-9ye4
8
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.97.0
830
url pkg:npm/apostrophe@2.97.1
purl pkg:npm/apostrophe@2.97.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.97.1
831
url pkg:npm/apostrophe@2.97.2
purl pkg:npm/apostrophe@2.97.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.97.2
832
url pkg:npm/apostrophe@2.98.0
purl pkg:npm/apostrophe@2.98.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.98.0
833
url pkg:npm/apostrophe@2.98.1
purl pkg:npm/apostrophe@2.98.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.98.1
834
url pkg:npm/apostrophe@2.99.0
purl pkg:npm/apostrophe@2.99.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.99.0
835
url pkg:npm/apostrophe@2.100.0
purl pkg:npm/apostrophe@2.100.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.100.0
836
url pkg:npm/apostrophe@2.100.1
purl pkg:npm/apostrophe@2.100.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.100.1
837
url pkg:npm/apostrophe@2.100.2
purl pkg:npm/apostrophe@2.100.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.100.2
838
url pkg:npm/apostrophe@2.101.0
purl pkg:npm/apostrophe@2.101.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.101.0
839
url pkg:npm/apostrophe@2.101.1
purl pkg:npm/apostrophe@2.101.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.101.1
840
url pkg:npm/apostrophe@2.102.0
purl pkg:npm/apostrophe@2.102.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.0
841
url pkg:npm/apostrophe@2.102.1
purl pkg:npm/apostrophe@2.102.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.1
842
url pkg:npm/apostrophe@2.102.2
purl pkg:npm/apostrophe@2.102.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.2
843
url pkg:npm/apostrophe@2.102.3
purl pkg:npm/apostrophe@2.102.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.3
844
url pkg:npm/apostrophe@2.102.4
purl pkg:npm/apostrophe@2.102.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.4
845
url pkg:npm/apostrophe@2.102.5
purl pkg:npm/apostrophe@2.102.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.102.5
846
url pkg:npm/apostrophe@2.103.0
purl pkg:npm/apostrophe@2.103.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.103.0
847
url pkg:npm/apostrophe@2.103.1
purl pkg:npm/apostrophe@2.103.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.103.1
848
url pkg:npm/apostrophe@2.104.0
purl pkg:npm/apostrophe@2.104.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.104.0
849
url pkg:npm/apostrophe@2.105.0
purl pkg:npm/apostrophe@2.105.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.105.0
850
url pkg:npm/apostrophe@2.105.1
purl pkg:npm/apostrophe@2.105.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.105.1
851
url pkg:npm/apostrophe@2.105.2
purl pkg:npm/apostrophe@2.105.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.105.2
852
url pkg:npm/apostrophe@2.106.0
purl pkg:npm/apostrophe@2.106.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.106.0
853
url pkg:npm/apostrophe@2.106.1
purl pkg:npm/apostrophe@2.106.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.106.1
854
url pkg:npm/apostrophe@2.106.2
purl pkg:npm/apostrophe@2.106.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.106.2
855
url pkg:npm/apostrophe@2.106.3
purl pkg:npm/apostrophe@2.106.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.106.3
856
url pkg:npm/apostrophe@2.107.0
purl pkg:npm/apostrophe@2.107.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.107.0
857
url pkg:npm/apostrophe@2.107.1
purl pkg:npm/apostrophe@2.107.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.107.1
858
url pkg:npm/apostrophe@2.107.2
purl pkg:npm/apostrophe@2.107.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.107.2
859
url pkg:npm/apostrophe@2.108.0
purl pkg:npm/apostrophe@2.108.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.108.0
860
url pkg:npm/apostrophe@2.108.1
purl pkg:npm/apostrophe@2.108.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.108.1
861
url pkg:npm/apostrophe@2.109.0
purl pkg:npm/apostrophe@2.109.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.109.0
862
url pkg:npm/apostrophe@2.110.0
purl pkg:npm/apostrophe@2.110.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.110.0
863
url pkg:npm/apostrophe@2.111.0
purl pkg:npm/apostrophe@2.111.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.0
864
url pkg:npm/apostrophe@2.111.1
purl pkg:npm/apostrophe@2.111.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.1
865
url pkg:npm/apostrophe@2.111.2
purl pkg:npm/apostrophe@2.111.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.2
866
url pkg:npm/apostrophe@2.111.3
purl pkg:npm/apostrophe@2.111.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.3
867
url pkg:npm/apostrophe@2.111.4
purl pkg:npm/apostrophe@2.111.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.4
868
url pkg:npm/apostrophe@2.111.5-alpha.1
purl pkg:npm/apostrophe@2.111.5-alpha.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.111.5-alpha.1
869
url pkg:npm/apostrophe@2.112.0
purl pkg:npm/apostrophe@2.112.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.112.0
870
url pkg:npm/apostrophe@2.112.1
purl pkg:npm/apostrophe@2.112.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.112.1
871
url pkg:npm/apostrophe@2.113.0
purl pkg:npm/apostrophe@2.113.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.113.0
872
url pkg:npm/apostrophe@2.113.1
purl pkg:npm/apostrophe@2.113.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.113.1
873
url pkg:npm/apostrophe@2.113.2
purl pkg:npm/apostrophe@2.113.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.113.2
874
url pkg:npm/apostrophe@2.113.3
purl pkg:npm/apostrophe@2.113.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.113.3
875
url pkg:npm/apostrophe@2.114.0
purl pkg:npm/apostrophe@2.114.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.114.0
876
url pkg:npm/apostrophe@2.115.0
purl pkg:npm/apostrophe@2.115.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.115.0
877
url pkg:npm/apostrophe@2.115.1
purl pkg:npm/apostrophe@2.115.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.115.1
878
url pkg:npm/apostrophe@2.116.0
purl pkg:npm/apostrophe@2.116.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.116.0
879
url pkg:npm/apostrophe@2.116.1
purl pkg:npm/apostrophe@2.116.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.116.1
880
url pkg:npm/apostrophe@2.117.0
purl pkg:npm/apostrophe@2.117.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.117.0
881
url pkg:npm/apostrophe@2.117.1
purl pkg:npm/apostrophe@2.117.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.117.1
882
url pkg:npm/apostrophe@2.118.0
purl pkg:npm/apostrophe@2.118.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.118.0
883
url pkg:npm/apostrophe@2.119.0
purl pkg:npm/apostrophe@2.119.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.119.0
884
url pkg:npm/apostrophe@2.119.1
purl pkg:npm/apostrophe@2.119.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.119.1
885
url pkg:npm/apostrophe@2.220.0
purl pkg:npm/apostrophe@2.220.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.0
886
url pkg:npm/apostrophe@2.220.1
purl pkg:npm/apostrophe@2.220.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.1
887
url pkg:npm/apostrophe@2.220.2
purl pkg:npm/apostrophe@2.220.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.2
888
url pkg:npm/apostrophe@2.220.3
purl pkg:npm/apostrophe@2.220.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.3
889
url pkg:npm/apostrophe@2.220.4
purl pkg:npm/apostrophe@2.220.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.4
890
url pkg:npm/apostrophe@2.220.5
purl pkg:npm/apostrophe@2.220.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.5
891
url pkg:npm/apostrophe@2.220.6
purl pkg:npm/apostrophe@2.220.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.6
892
url pkg:npm/apostrophe@2.220.7
purl pkg:npm/apostrophe@2.220.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.7
893
url pkg:npm/apostrophe@2.220.9
purl pkg:npm/apostrophe@2.220.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.220.9
894
url pkg:npm/apostrophe@2.221.0
purl pkg:npm/apostrophe@2.221.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.221.0
895
url pkg:npm/apostrophe@2.221.2
purl pkg:npm/apostrophe@2.221.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.221.2
896
url pkg:npm/apostrophe@2.222.0
purl pkg:npm/apostrophe@2.222.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.222.0
897
url pkg:npm/apostrophe@2.223.0
purl pkg:npm/apostrophe@2.223.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.223.0
898
url pkg:npm/apostrophe@2.223.1
purl pkg:npm/apostrophe@2.223.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.223.1
899
url pkg:npm/apostrophe@2.224.0
purl pkg:npm/apostrophe@2.224.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.224.0
900
url pkg:npm/apostrophe@2.225.0-alpha
purl pkg:npm/apostrophe@2.225.0-alpha
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.225.0-alpha
901
url pkg:npm/apostrophe@2.225.0
purl pkg:npm/apostrophe@2.225.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.225.0
902
url pkg:npm/apostrophe@2.226.0
purl pkg:npm/apostrophe@2.226.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.226.0
903
url pkg:npm/apostrophe@2.227.0
purl pkg:npm/apostrophe@2.227.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.0
904
url pkg:npm/apostrophe@2.227.1
purl pkg:npm/apostrophe@2.227.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.1
905
url pkg:npm/apostrophe@2.227.2
purl pkg:npm/apostrophe@2.227.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.2
906
url pkg:npm/apostrophe@2.227.3
purl pkg:npm/apostrophe@2.227.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.3
907
url pkg:npm/apostrophe@2.227.4
purl pkg:npm/apostrophe@2.227.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.4
908
url pkg:npm/apostrophe@2.227.5
purl pkg:npm/apostrophe@2.227.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.5
909
url pkg:npm/apostrophe@2.227.6
purl pkg:npm/apostrophe@2.227.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.6
910
url pkg:npm/apostrophe@2.227.7
purl pkg:npm/apostrophe@2.227.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.7
911
url pkg:npm/apostrophe@2.227.8
purl pkg:npm/apostrophe@2.227.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.8
912
url pkg:npm/apostrophe@2.227.9
purl pkg:npm/apostrophe@2.227.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.9
913
url pkg:npm/apostrophe@2.227.10-beta.1
purl pkg:npm/apostrophe@2.227.10-beta.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.10-beta.1
914
url pkg:npm/apostrophe@2.227.10
purl pkg:npm/apostrophe@2.227.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.10
915
url pkg:npm/apostrophe@2.227.11
purl pkg:npm/apostrophe@2.227.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.11
916
url pkg:npm/apostrophe@2.227.12
purl pkg:npm/apostrophe@2.227.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@2.227.12
917
url pkg:npm/apostrophe@3.0.0-alpha.1
purl pkg:npm/apostrophe@3.0.0-alpha.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.1
918
url pkg:npm/apostrophe@3.0.0-alpha.2
purl pkg:npm/apostrophe@3.0.0-alpha.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.2
919
url pkg:npm/apostrophe@3.0.0-alpha.3
purl pkg:npm/apostrophe@3.0.0-alpha.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.3
920
url pkg:npm/apostrophe@3.0.0-alpha.4
purl pkg:npm/apostrophe@3.0.0-alpha.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.4
921
url pkg:npm/apostrophe@3.0.0-alpha.4.1
purl pkg:npm/apostrophe@3.0.0-alpha.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.4.1
922
url pkg:npm/apostrophe@3.0.0-alpha.4.2
purl pkg:npm/apostrophe@3.0.0-alpha.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.4.2
923
url pkg:npm/apostrophe@3.0.0-alpha.5
purl pkg:npm/apostrophe@3.0.0-alpha.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.5
924
url pkg:npm/apostrophe@3.0.0-alpha.6
purl pkg:npm/apostrophe@3.0.0-alpha.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.6
925
url pkg:npm/apostrophe@3.0.0-alpha.6.1
purl pkg:npm/apostrophe@3.0.0-alpha.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.6.1
926
url pkg:npm/apostrophe@3.0.0-alpha.7
purl pkg:npm/apostrophe@3.0.0-alpha.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-alpha.7
927
url pkg:npm/apostrophe@3.0.0-beta.1
purl pkg:npm/apostrophe@3.0.0-beta.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.1
928
url pkg:npm/apostrophe@3.0.0-beta.1.1
purl pkg:npm/apostrophe@3.0.0-beta.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.1.1
929
url pkg:npm/apostrophe@3.0.0-beta.1.2
purl pkg:npm/apostrophe@3.0.0-beta.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.1.2
930
url pkg:npm/apostrophe@3.0.0-beta.2
purl pkg:npm/apostrophe@3.0.0-beta.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.2
931
url pkg:npm/apostrophe@3.0.0-beta.3
purl pkg:npm/apostrophe@3.0.0-beta.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.3
932
url pkg:npm/apostrophe@3.0.0-beta.3.1
purl pkg:npm/apostrophe@3.0.0-beta.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0-beta.3.1
933
url pkg:npm/apostrophe@3.0.0
purl pkg:npm/apostrophe@3.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.0
934
url pkg:npm/apostrophe@3.0.1
purl pkg:npm/apostrophe@3.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.0.1
935
url pkg:npm/apostrophe@3.1.0
purl pkg:npm/apostrophe@3.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.1.0
936
url pkg:npm/apostrophe@3.1.1
purl pkg:npm/apostrophe@3.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.1.1
937
url pkg:npm/apostrophe@3.1.2
purl pkg:npm/apostrophe@3.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.1.2
938
url pkg:npm/apostrophe@3.1.3
purl pkg:npm/apostrophe@3.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.1.3
939
url pkg:npm/apostrophe@3.2.0
purl pkg:npm/apostrophe@3.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.2.0
940
url pkg:npm/apostrophe@3.3.0
purl pkg:npm/apostrophe@3.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-82j4-a56g-3kbq
3
vulnerability VCID-a7rh-r1sn-2udh
4
vulnerability VCID-dsd6-hfud-ekfs
5
vulnerability VCID-ewtn-suju-dyeb
6
vulnerability VCID-h7q4-v6us-9ye4
7
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.3.0
941
url pkg:npm/apostrophe@3.3.1
purl pkg:npm/apostrophe@3.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-dsd6-hfud-ekfs
4
vulnerability VCID-ewtn-suju-dyeb
5
vulnerability VCID-h7q4-v6us-9ye4
6
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.3.1
942
url pkg:npm/apostrophe@3.4.0
purl pkg:npm/apostrophe@3.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.4.0
943
url pkg:npm/apostrophe@3.4.1
purl pkg:npm/apostrophe@3.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.4.1
944
url pkg:npm/apostrophe@3.5.0
purl pkg:npm/apostrophe@3.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.5.0
945
url pkg:npm/apostrophe@3.6.0
purl pkg:npm/apostrophe@3.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.6.0
946
url pkg:npm/apostrophe@3.7.0
purl pkg:npm/apostrophe@3.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.7.0
947
url pkg:npm/apostrophe@3.8.0
purl pkg:npm/apostrophe@3.8.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.8.0
948
url pkg:npm/apostrophe@3.8.1
purl pkg:npm/apostrophe@3.8.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.8.1
949
url pkg:npm/apostrophe@3.9.0-prerelease-2021-12-22-001
purl pkg:npm/apostrophe@3.9.0-prerelease-2021-12-22-001
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.9.0-prerelease-2021-12-22-001
950
url pkg:npm/apostrophe@3.9.0
purl pkg:npm/apostrophe@3.9.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.9.0
951
url pkg:npm/apostrophe@3.10.0
purl pkg:npm/apostrophe@3.10.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.10.0
952
url pkg:npm/apostrophe@3.11.0-alpha.2022-01-20-001
purl pkg:npm/apostrophe@3.11.0-alpha.2022-01-20-001
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.11.0-alpha.2022-01-20-001
953
url pkg:npm/apostrophe@3.11.0
purl pkg:npm/apostrophe@3.11.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.11.0
954
url pkg:npm/apostrophe@3.12.0
purl pkg:npm/apostrophe@3.12.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.12.0
955
url pkg:npm/apostrophe@3.13.0-alpha.2022-02-04-001
purl pkg:npm/apostrophe@3.13.0-alpha.2022-02-04-001
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.13.0-alpha.2022-02-04-001
956
url pkg:npm/apostrophe@3.13.0
purl pkg:npm/apostrophe@3.13.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.13.0
957
url pkg:npm/apostrophe@3.14.0
purl pkg:npm/apostrophe@3.14.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.14.0
958
url pkg:npm/apostrophe@3.14.1
purl pkg:npm/apostrophe@3.14.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.14.1
959
url pkg:npm/apostrophe@3.14.2-alpha.20220401
purl pkg:npm/apostrophe@3.14.2-alpha.20220401
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.14.2-alpha.20220401
960
url pkg:npm/apostrophe@3.14.2
purl pkg:npm/apostrophe@3.14.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.14.2
961
url pkg:npm/apostrophe@3.15.0-alpha.20220317
purl pkg:npm/apostrophe@3.15.0-alpha.20220317
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.15.0-alpha.20220317
962
url pkg:npm/apostrophe@3.15.0
purl pkg:npm/apostrophe@3.15.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.15.0
963
url pkg:npm/apostrophe@3.16.0
purl pkg:npm/apostrophe@3.16.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.16.0
964
url pkg:npm/apostrophe@3.16.1-alpha.20210331
purl pkg:npm/apostrophe@3.16.1-alpha.20210331
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.16.1-alpha.20210331
965
url pkg:npm/apostrophe@3.16.1
purl pkg:npm/apostrophe@3.16.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
6
vulnerability VCID-y2wc-ug1j-27cx
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.16.1
966
url pkg:npm/apostrophe@3.17.0-alpha.2022050201
purl pkg:npm/apostrophe@3.17.0-alpha.2022050201
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.17.0-alpha.2022050201
967
url pkg:npm/apostrophe@3.17.0-alpha.2022-04-18-01
purl pkg:npm/apostrophe@3.17.0-alpha.2022-04-18-01
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.17.0-alpha.2022-04-18-01
968
url pkg:npm/apostrophe@3.17.0
purl pkg:npm/apostrophe@3.17.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.17.0
969
url pkg:npm/apostrophe@3.18.0
purl pkg:npm/apostrophe@3.18.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.18.0
970
url pkg:npm/apostrophe@3.18.1-alpha.2022051001
purl pkg:npm/apostrophe@3.18.1-alpha.2022051001
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.18.1-alpha.2022051001
971
url pkg:npm/apostrophe@3.18.1
purl pkg:npm/apostrophe@3.18.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.18.1
972
url pkg:npm/apostrophe@3.19.0
purl pkg:npm/apostrophe@3.19.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.19.0
973
url pkg:npm/apostrophe@3.20.0
purl pkg:npm/apostrophe@3.20.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.20.0
974
url pkg:npm/apostrophe@3.20.1
purl pkg:npm/apostrophe@3.20.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.20.1
975
url pkg:npm/apostrophe@3.21.0
purl pkg:npm/apostrophe@3.21.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.21.0
976
url pkg:npm/apostrophe@3.21.1-alpha.2022060701
purl pkg:npm/apostrophe@3.21.1-alpha.2022060701
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.21.1-alpha.2022060701
977
url pkg:npm/apostrophe@3.21.1
purl pkg:npm/apostrophe@3.21.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.21.1
978
url pkg:npm/apostrophe@3.22.0
purl pkg:npm/apostrophe@3.22.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.22.0
979
url pkg:npm/apostrophe@3.22.1-alpha.2022062101
purl pkg:npm/apostrophe@3.22.1-alpha.2022062101
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.22.1-alpha.2022062101
980
url pkg:npm/apostrophe@3.22.1
purl pkg:npm/apostrophe@3.22.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.22.1
981
url pkg:npm/apostrophe@3.23.0-alpha.2022070601
purl pkg:npm/apostrophe@3.23.0-alpha.2022070601
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.23.0-alpha.2022070601
982
url pkg:npm/apostrophe@3.23.0
purl pkg:npm/apostrophe@3.23.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.23.0
983
url pkg:npm/apostrophe@3.24.0-alpha.2022071801
purl pkg:npm/apostrophe@3.24.0-alpha.2022071801
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.24.0-alpha.2022071801
984
url pkg:npm/apostrophe@3.24.0-alpha.2022072001
purl pkg:npm/apostrophe@3.24.0-alpha.2022072001
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.24.0-alpha.2022072001
985
url pkg:npm/apostrophe@3.24.0
purl pkg:npm/apostrophe@3.24.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.24.0
986
url pkg:npm/apostrophe@3.25.0-alpha.2022080101
purl pkg:npm/apostrophe@3.25.0-alpha.2022080101
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.25.0-alpha.2022080101
987
url pkg:npm/apostrophe@3.25.0
purl pkg:npm/apostrophe@3.25.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.25.0
988
url pkg:npm/apostrophe@3.26.0
purl pkg:npm/apostrophe@3.26.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.26.0
989
url pkg:npm/apostrophe@3.26.1-alpha.2022081201
purl pkg:npm/apostrophe@3.26.1-alpha.2022081201
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.26.1-alpha.2022081201
990
url pkg:npm/apostrophe@3.26.1
purl pkg:npm/apostrophe@3.26.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.26.1
991
url pkg:npm/apostrophe@3.27.0
purl pkg:npm/apostrophe@3.27.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.27.0
992
url pkg:npm/apostrophe@3.28.0
purl pkg:npm/apostrophe@3.28.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.28.0
993
url pkg:npm/apostrophe@3.28.1
purl pkg:npm/apostrophe@3.28.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.28.1
994
url pkg:npm/apostrophe@3.29.0
purl pkg:npm/apostrophe@3.29.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.29.0
995
url pkg:npm/apostrophe@3.29.1
purl pkg:npm/apostrophe@3.29.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.29.1
996
url pkg:npm/apostrophe@3.30.0
purl pkg:npm/apostrophe@3.30.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.30.0
997
url pkg:npm/apostrophe@3.31.0
purl pkg:npm/apostrophe@3.31.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.31.0
998
url pkg:npm/apostrophe@3.32.0
purl pkg:npm/apostrophe@3.32.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.32.0
999
url pkg:npm/apostrophe@3.33.0
purl pkg:npm/apostrophe@3.33.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.33.0
1000
url pkg:npm/apostrophe@3.34.0
purl pkg:npm/apostrophe@3.34.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.34.0
1001
url pkg:npm/apostrophe@3.35.0
purl pkg:npm/apostrophe@3.35.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.35.0
1002
url pkg:npm/apostrophe@3.36.0
purl pkg:npm/apostrophe@3.36.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.36.0
1003
url pkg:npm/apostrophe@3.37.0
purl pkg:npm/apostrophe@3.37.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.37.0
1004
url pkg:npm/apostrophe@3.38.0
purl pkg:npm/apostrophe@3.38.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.38.0
1005
url pkg:npm/apostrophe@3.38.1
purl pkg:npm/apostrophe@3.38.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.38.1
1006
url pkg:npm/apostrophe@3.39.0
purl pkg:npm/apostrophe@3.39.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.39.0
1007
url pkg:npm/apostrophe@3.39.1
purl pkg:npm/apostrophe@3.39.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.39.1
1008
url pkg:npm/apostrophe@3.39.2
purl pkg:npm/apostrophe@3.39.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.39.2
1009
url pkg:npm/apostrophe@3.40.0-alpha
purl pkg:npm/apostrophe@3.40.0-alpha
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.40.0-alpha
1010
url pkg:npm/apostrophe@3.40.0
purl pkg:npm/apostrophe@3.40.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.40.0
1011
url pkg:npm/apostrophe@3.40.1
purl pkg:npm/apostrophe@3.40.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.40.1
1012
url pkg:npm/apostrophe@3.40.2-alpha
purl pkg:npm/apostrophe@3.40.2-alpha
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.40.2-alpha
1013
url pkg:npm/apostrophe@3.41.0
purl pkg:npm/apostrophe@3.41.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.41.0
1014
url pkg:npm/apostrophe@3.41.1
purl pkg:npm/apostrophe@3.41.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.41.1
1015
url pkg:npm/apostrophe@3.42.0
purl pkg:npm/apostrophe@3.42.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.42.0
1016
url pkg:npm/apostrophe@3.43.0
purl pkg:npm/apostrophe@3.43.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.43.0
1017
url pkg:npm/apostrophe@3.44.0
purl pkg:npm/apostrophe@3.44.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.44.0
1018
url pkg:npm/apostrophe@3.45.0
purl pkg:npm/apostrophe@3.45.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.45.0
1019
url pkg:npm/apostrophe@3.45.1
purl pkg:npm/apostrophe@3.45.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.45.1
1020
url pkg:npm/apostrophe@3.46.0
purl pkg:npm/apostrophe@3.46.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.46.0
1021
url pkg:npm/apostrophe@3.47.0
purl pkg:npm/apostrophe@3.47.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.47.0
1022
url pkg:npm/apostrophe@3.48.0
purl pkg:npm/apostrophe@3.48.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.48.0
1023
url pkg:npm/apostrophe@3.49.0
purl pkg:npm/apostrophe@3.49.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.49.0
1024
url pkg:npm/apostrophe@3.50.0
purl pkg:npm/apostrophe@3.50.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.50.0
1025
url pkg:npm/apostrophe@3.51.0
purl pkg:npm/apostrophe@3.51.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.51.0
1026
url pkg:npm/apostrophe@3.51.1
purl pkg:npm/apostrophe@3.51.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.51.1
1027
url pkg:npm/apostrophe@3.52.0
purl pkg:npm/apostrophe@3.52.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.52.0
1028
url pkg:npm/apostrophe@3.53.0
purl pkg:npm/apostrophe@3.53.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.53.0
1029
url pkg:npm/apostrophe@3.54.0
purl pkg:npm/apostrophe@3.54.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.54.0
1030
url pkg:npm/apostrophe@3.55.0
purl pkg:npm/apostrophe@3.55.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.55.0
1031
url pkg:npm/apostrophe@3.55.1
purl pkg:npm/apostrophe@3.55.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.55.1
1032
url pkg:npm/apostrophe@3.56.0
purl pkg:npm/apostrophe@3.56.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.56.0
1033
url pkg:npm/apostrophe@3.57.0
purl pkg:npm/apostrophe@3.57.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.57.0
1034
url pkg:npm/apostrophe@3.58.0
purl pkg:npm/apostrophe@3.58.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.58.0
1035
url pkg:npm/apostrophe@3.58.1
purl pkg:npm/apostrophe@3.58.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.58.1
1036
url pkg:npm/apostrophe@3.59.0
purl pkg:npm/apostrophe@3.59.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.59.0
1037
url pkg:npm/apostrophe@3.59.1
purl pkg:npm/apostrophe@3.59.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.59.1
1038
url pkg:npm/apostrophe@3.60.0
purl pkg:npm/apostrophe@3.60.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.60.0
1039
url pkg:npm/apostrophe@3.60.1
purl pkg:npm/apostrophe@3.60.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.60.1
1040
url pkg:npm/apostrophe@3.61.0
purl pkg:npm/apostrophe@3.61.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.61.0
1041
url pkg:npm/apostrophe@3.61.1
purl pkg:npm/apostrophe@3.61.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.61.1
1042
url pkg:npm/apostrophe@3.62.0
purl pkg:npm/apostrophe@3.62.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.62.0
1043
url pkg:npm/apostrophe@3.63.0
purl pkg:npm/apostrophe@3.63.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.63.0
1044
url pkg:npm/apostrophe@3.63.1
purl pkg:npm/apostrophe@3.63.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.63.1
1045
url pkg:npm/apostrophe@3.63.2
purl pkg:npm/apostrophe@3.63.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.63.2
1046
url pkg:npm/apostrophe@3.63.3
purl pkg:npm/apostrophe@3.63.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.63.3
1047
url pkg:npm/apostrophe@3.64.0
purl pkg:npm/apostrophe@3.64.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.64.0
1048
url pkg:npm/apostrophe@3.65.0
purl pkg:npm/apostrophe@3.65.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.65.0
1049
url pkg:npm/apostrophe@3.66.0
purl pkg:npm/apostrophe@3.66.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.66.0
1050
url pkg:npm/apostrophe@3.67.0
purl pkg:npm/apostrophe@3.67.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.67.0
1051
url pkg:npm/apostrophe@3.67.1
purl pkg:npm/apostrophe@3.67.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.67.1
1052
url pkg:npm/apostrophe@3.67.2
purl pkg:npm/apostrophe@3.67.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.67.2
1053
url pkg:npm/apostrophe@3.67.3
purl pkg:npm/apostrophe@3.67.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@3.67.3
1054
url pkg:npm/apostrophe@4.0.0
purl pkg:npm/apostrophe@4.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.0.0
1055
url pkg:npm/apostrophe@4.1.0
purl pkg:npm/apostrophe@4.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.1.0
1056
url pkg:npm/apostrophe@4.1.1
purl pkg:npm/apostrophe@4.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.1.1
1057
url pkg:npm/apostrophe@4.2.0
purl pkg:npm/apostrophe@4.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.2.0
1058
url pkg:npm/apostrophe@4.2.1
purl pkg:npm/apostrophe@4.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.2.1
1059
url pkg:npm/apostrophe@4.2.2
purl pkg:npm/apostrophe@4.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.2.2
1060
url pkg:npm/apostrophe@4.2.3
purl pkg:npm/apostrophe@4.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.2.3
1061
url pkg:npm/apostrophe@4.3.0
purl pkg:npm/apostrophe@4.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.3.0
1062
url pkg:npm/apostrophe@4.3.1
purl pkg:npm/apostrophe@4.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.3.1
1063
url pkg:npm/apostrophe@4.3.2
purl pkg:npm/apostrophe@4.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.3.2
1064
url pkg:npm/apostrophe@4.3.3
purl pkg:npm/apostrophe@4.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.3.3
1065
url pkg:npm/apostrophe@4.4.0
purl pkg:npm/apostrophe@4.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.4.0
1066
url pkg:npm/apostrophe@4.4.1
purl pkg:npm/apostrophe@4.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.4.1
1067
url pkg:npm/apostrophe@4.4.2
purl pkg:npm/apostrophe@4.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.4.2
1068
url pkg:npm/apostrophe@4.4.3
purl pkg:npm/apostrophe@4.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.4.3
1069
url pkg:npm/apostrophe@4.5.0
purl pkg:npm/apostrophe@4.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.0
1070
url pkg:npm/apostrophe@4.5.1
purl pkg:npm/apostrophe@4.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.1
1071
url pkg:npm/apostrophe@4.5.2
purl pkg:npm/apostrophe@4.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.2
1072
url pkg:npm/apostrophe@4.5.3
purl pkg:npm/apostrophe@4.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.3
1073
url pkg:npm/apostrophe@4.5.4
purl pkg:npm/apostrophe@4.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.5.4
1074
url pkg:npm/apostrophe@4.6.0
purl pkg:npm/apostrophe@4.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.6.0
1075
url pkg:npm/apostrophe@4.6.1
purl pkg:npm/apostrophe@4.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.6.1
1076
url pkg:npm/apostrophe@4.7.0
purl pkg:npm/apostrophe@4.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.7.0
1077
url pkg:npm/apostrophe@4.7.1
purl pkg:npm/apostrophe@4.7.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.7.1
1078
url pkg:npm/apostrophe@4.7.2
purl pkg:npm/apostrophe@4.7.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.7.2
1079
url pkg:npm/apostrophe@4.8.0
purl pkg:npm/apostrophe@4.8.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.8.0
1080
url pkg:npm/apostrophe@4.8.1
purl pkg:npm/apostrophe@4.8.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.8.1
1081
url pkg:npm/apostrophe@4.9.0
purl pkg:npm/apostrophe@4.9.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.9.0
1082
url pkg:npm/apostrophe@4.10.0
purl pkg:npm/apostrophe@4.10.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.10.0
1083
url pkg:npm/apostrophe@4.11.0
purl pkg:npm/apostrophe@4.11.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.11.0
1084
url pkg:npm/apostrophe@4.11.1
purl pkg:npm/apostrophe@4.11.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.11.1
1085
url pkg:npm/apostrophe@4.11.2
purl pkg:npm/apostrophe@4.11.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.11.2
1086
url pkg:npm/apostrophe@4.12.0
purl pkg:npm/apostrophe@4.12.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.12.0
1087
url pkg:npm/apostrophe@4.13.0
purl pkg:npm/apostrophe@4.13.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.13.0
1088
url pkg:npm/apostrophe@4.14.0
purl pkg:npm/apostrophe@4.14.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.14.0
1089
url pkg:npm/apostrophe@4.14.1-beta.0
purl pkg:npm/apostrophe@4.14.1-beta.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.14.1-beta.0
1090
url pkg:npm/apostrophe@4.14.1
purl pkg:npm/apostrophe@4.14.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.14.1
1091
url pkg:npm/apostrophe@4.14.2
purl pkg:npm/apostrophe@4.14.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.14.2
1092
url pkg:npm/apostrophe@4.15.0
purl pkg:npm/apostrophe@4.15.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.15.0
1093
url pkg:npm/apostrophe@4.15.1
purl pkg:npm/apostrophe@4.15.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.15.1
1094
url pkg:npm/apostrophe@4.15.2
purl pkg:npm/apostrophe@4.15.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.15.2
1095
url pkg:npm/apostrophe@4.16.0
purl pkg:npm/apostrophe@4.16.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.16.0
1096
url pkg:npm/apostrophe@4.17.0
purl pkg:npm/apostrophe@4.17.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.0
1097
url pkg:npm/apostrophe@4.17.1-alpha.1
purl pkg:npm/apostrophe@4.17.1-alpha.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.1-alpha.1
1098
url pkg:npm/apostrophe@4.17.1-alpha.2
purl pkg:npm/apostrophe@4.17.1-alpha.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.1-alpha.2
1099
url pkg:npm/apostrophe@4.17.1-alpha.3
purl pkg:npm/apostrophe@4.17.1-alpha.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.1-alpha.3
1100
url pkg:npm/apostrophe@4.17.1
purl pkg:npm/apostrophe@4.17.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.17.1
1101
url pkg:npm/apostrophe@4.18.0
purl pkg:npm/apostrophe@4.18.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.18.0
1102
url pkg:npm/apostrophe@4.19.0
purl pkg:npm/apostrophe@4.19.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.19.0
1103
url pkg:npm/apostrophe@4.20.0
purl pkg:npm/apostrophe@4.20.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.20.0
1104
url pkg:npm/apostrophe@4.21.0
purl pkg:npm/apostrophe@4.21.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.21.0
1105
url pkg:npm/apostrophe@4.21.1
purl pkg:npm/apostrophe@4.21.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.21.1
1106
url pkg:npm/apostrophe@4.22.0
purl pkg:npm/apostrophe@4.22.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.22.0
1107
url pkg:npm/apostrophe@4.23.0
purl pkg:npm/apostrophe@4.23.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.23.0
1108
url pkg:npm/apostrophe@4.23.1-alpha.1
purl pkg:npm/apostrophe@4.23.1-alpha.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.23.1-alpha.1
1109
url pkg:npm/apostrophe@4.24.0
purl pkg:npm/apostrophe@4.24.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.24.0
1110
url pkg:npm/apostrophe@4.24.1
purl pkg:npm/apostrophe@4.24.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.24.1
1111
url pkg:npm/apostrophe@4.25.0
purl pkg:npm/apostrophe@4.25.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.25.0
1112
url pkg:npm/apostrophe@4.26.0
purl pkg:npm/apostrophe@4.26.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.26.0
1113
url pkg:npm/apostrophe@4.26.1-alpha.1
purl pkg:npm/apostrophe@4.26.1-alpha.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.26.1-alpha.1
1114
url pkg:npm/apostrophe@4.26.1
purl pkg:npm/apostrophe@4.26.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.26.1
1115
url pkg:npm/apostrophe@4.26.2
purl pkg:npm/apostrophe@4.26.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.26.2
1116
url pkg:npm/apostrophe@4.27.0-alpha.1
purl pkg:npm/apostrophe@4.27.0-alpha.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.0-alpha.1
1117
url pkg:npm/apostrophe@4.27.0-alpha.2
purl pkg:npm/apostrophe@4.27.0-alpha.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.0-alpha.2
1118
url pkg:npm/apostrophe@4.27.0
purl pkg:npm/apostrophe@4.27.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.0
1119
url pkg:npm/apostrophe@4.27.1-alpha.1
purl pkg:npm/apostrophe@4.27.1-alpha.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.1-alpha.1
1120
url pkg:npm/apostrophe@4.27.1
purl pkg:npm/apostrophe@4.27.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
5
vulnerability VCID-tm23-2xhx-87hc
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.27.1
1121
url pkg:npm/apostrophe@4.28.0
purl pkg:npm/apostrophe@4.28.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.28.0
1122
url pkg:npm/apostrophe@4.28.1
purl pkg:npm/apostrophe@4.28.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-4twt-e5vw-m3em
1
vulnerability VCID-5tyh-bvgy-nuhe
2
vulnerability VCID-a7rh-r1sn-2udh
3
vulnerability VCID-ewtn-suju-dyeb
4
vulnerability VCID-h7q4-v6us-9ye4
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/apostrophe@4.28.1
References
0
reference_url https://api.first.org/data/v1/epss?cve=CVE-2026-33877
reference_id
reference_type
scores
0
value 0.00029
scoring_system epss
scoring_elements 0.08858
published_at 2026-06-07T12:55:00Z
1
value 0.00029
scoring_system epss
scoring_elements 0.08877
published_at 2026-06-06T12:55:00Z
2
value 0.00029
scoring_system epss
scoring_elements 0.08861
published_at 2026-06-05T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2026-33877
1
reference_url https://github.com/apostrophecms/apostrophe
reference_id
reference_type
scores
0
value 3.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
1
value LOW
scoring_system generic_textual
scoring_elements
url https://github.com/apostrophecms/apostrophe
2
reference_url https://github.com/apostrophecms/apostrophe/commit/e266cffd8c0d331a9b05c92bf11616556efcdc77
reference_id
reference_type
scores
0
value 3.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
1
value LOW
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2026-04-15T19:30:48Z/
url https://github.com/apostrophecms/apostrophe/commit/e266cffd8c0d331a9b05c92bf11616556efcdc77
3
reference_url https://github.com/apostrophecms/apostrophe/security/advisories/GHSA-mj7r-x3h3-7rmr
reference_id
reference_type
scores
0
value 3.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
1
value LOW
scoring_system cvssv3.1_qr
scoring_elements
2
value LOW
scoring_system generic_textual
scoring_elements
3
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:P/P:M/B:A/M:M/D:T/2026-04-15T19:30:48Z/
url https://github.com/apostrophecms/apostrophe/security/advisories/GHSA-mj7r-x3h3-7rmr
4
reference_url https://nvd.nist.gov/vuln/detail/CVE-2026-33877
reference_id
reference_type
scores
0
value 3.7
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
1
value LOW
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2026-33877
5
reference_url https://github.com/advisories/GHSA-mj7r-x3h3-7rmr
reference_id GHSA-mj7r-x3h3-7rmr
reference_type
scores
0
value LOW
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-mj7r-x3h3-7rmr
Weaknesses
0
cwe_id 208
name Observable Timing Discrepancy
description Two separate operations in a product require different amounts of time to complete, in a way that is observable to an actor and reveals security-relevant information about the state of the product, such as whether a particular operation was successful or not.
1
cwe_id 937
name OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013.
2
cwe_id 1035
name OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017.
Exploits
Severity_range_score0.1 - 3.7
Exploitability0.5
Weighted_severity3.3
Risk_score1.6
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-a7rh-r1sn-2udh