← Back to Feed CACHED · 2026-09-09 06:50:18 · CACHE_KEY tenable:198765
tenable:198765

404 Error

ASSESSED — NOISGATE V0.5
Vendor
Reassessed
Verdict:
Do you agree?
01 · The Real Story

Your scanner is barking at a ghost that Tenable already exorcised

Tenable plugin 198765 has been deprecated by Tenable and is no longer functional. The plugin page at tenable.com/plugins/nessus/198765 returns a 404 with the explicit notice: *"This plugin has been deprecated and is no longer functional."* There is no active CVE, no vulnerability description, and no affected software tied to this plugin ID in any public source. The "HIGH" severity tag you're seeing is a stale artifact carried forward in your scan policy or historical findings — it does not represent a current, actionable risk.

The apparent HIGH severity is meaningless in this context. Deprecated plugins are removed from Tenable's active feed because they were either superseded by a newer check, found to produce false positives, or covered a vulnerability that was reclassified. Your vulnerability management platform may retain historical findings from prior scans when this plugin was still active, but no new detections should fire. If you're still seeing new hits, your Nessus feed may be stale or your scan policy is pinning an old plugin set.

"Deprecated Tenable plugin — no real vulnerability here, just scanner noise."
02 · The Attack Path

1 steps from start to impact.

STEP 01

No attack path exists

This plugin has been deprecated by Tenable. There is no associated CVE, no described vulnerability, and no exploit chain to model. The finding is scanner metadata noise, not an exploitable condition.
Conditions required:
  • N/A — no vulnerability exists
Where this breaks in practice:
  • Plugin is non-functional and produces no valid detection
03 · Intelligence Metadata

The supporting signals.

Plugin StatusDeprecated — Tenable has removed this plugin from the active feed
Associated CVE(s)None found — no CVE is publicly mapped to plugin 198765
In-the-Wild ExploitationN/A — no vulnerability to exploit
PoC AvailabilityN/A
EPSS ScoreN/A
KEV StatusNot listed (no CVE exists)
Affected SoftwareUnknown — plugin page returns 404 with no metadata
Tenable Plugin Pagetenable.com/plugins/nessus/198765 — returns 404 / deprecated notice
Superseding PluginUnknown — check your Tenable.sc or Tenable.io console for a replacement plugin ID if one exists
04 · The Call

noisgate verdict.

Final Verdict
DOWNGRADED to IGNORE (0.0/10)

The plugin has been deprecated by Tenable and maps to no known CVE or vulnerability. The single decisive factor is that no exploitable condition exists — the finding is scanner artifact noise, not a security risk.

HIGH Plugin is deprecated and non-functional
MEDIUM No CVE or vulnerability is associated with this plugin ID

Why this verdict

  • Deprecated plugin: Tenable's own site confirms plugin 198765 is deprecated and no longer functional — it cannot produce valid detections
  • No CVE mapping: No CVE identifier is publicly associated with this plugin ID in NVD, MITRE, or Tenable's CVE cross-reference pages
  • No blast radius: With no underlying vulnerability, there is no attack path, no affected software, and no role-multiplier analysis to perform — the risk is zero

Why not higher?

There is literally no vulnerability here. A deprecated plugin with no CVE, no description, and no functional detection logic cannot represent any security risk to any deployment role. Assigning any severity above IGNORE would be manufacturing risk from noise.

Why not lower?

IGNORE is already the lowest possible verdict. There is nothing below it.

05 · Compensating Control

What to do — in priority order.

  1. Suppress or close findings from plugin 198765 in your vulnerability management platform — Mark all existing findings from this plugin as accepted risk or false positive. This eliminates noise from your patch queue and prevents analysts from wasting cycles triaging ghost findings.
  2. Verify your Nessus plugin feed is current — If this plugin is still firing in new scans, your feed may be stale. Confirm your Nessus installation is pulling the latest plugin set from Tenable. Run nessuscli update --plugins-only on your scanner.
  3. Check for a superseding plugin — In Tenable.sc or Tenable.io, search for the original plugin name or related CVE to determine if a replacement plugin exists that covers the same check with updated logic.
What doesn't work
  • Patching anything — there is no vulnerability and no patch to apply
  • Firewall rules or network segmentation — there is no attack vector to block
06 · Verification

Crowdsourced verification payload.

Run this on your Nessus scanner host as a user with access to nessuscli. Example: bash check_plugin_198765.sh

noisgate-verify.sh
BASHREAD-ONLYSAFE
#!/usr/bin/env bash
# check_plugin_198765.sh
# Checks whether deprecated Tenable plugin 198765 is still present/active
# Run on: Nessus scanner host
# Privileges: user with access to nessuscli or plugin directory

PLUGIN_ID="198765"
PLUGIN_DIR="/opt/nessus/lib/nessus/plugins"

# Method 1: Check plugin directory
if ls "${PLUGIN_DIR}"/*"${PLUGIN_ID}"* 2>/dev/null; then
  echo "WARNING: Plugin file for ${PLUGIN_ID} found on disk."
  echo "Your plugin feed may be stale. Run: nessuscli update --plugins-only"
  echo "VULNERABLE"
  exit 1
fi

# Method 2: Check if nessuscli can list it
if command -v /opt/nessus/sbin/nessuscli &>/dev/null; then
  FEED_DATE=$(/opt/nessus/sbin/nessuscli fix --list 2>/dev/null | grep -i 'feed_date' | head -1)
  echo "Nessus feed info: ${FEED_DATE:-unknown}"
fi

echo "Plugin ${PLUGIN_ID} is not present in the active plugin set."
echo "PATCHED"
exit 0
07 · Bottom Line

If you remember one thing.

TL;DR
No action required. Tenable plugin 198765 is deprecated and maps to no real vulnerability. Close or suppress all findings associated with this plugin ID in your vulnerability management console. Per the noisgate remediation SLA for IGNORE-class findings, no mitigation or remediation deadline applies — document the rationale (deprecated plugin, no CVE) and move on. If you are still seeing new scan hits from this plugin, update your Nessus plugin feed immediately (nessuscli update --plugins-only) to clear the stale check. Spend your time on real risks.

Sources

  1. Tenable Plugin 198765 (Deprecated)
  2. Tenable Plugin Database
  3. Tenable Plugin Release Notes
  4. Tenable Recently Updated Plugins
  5. Tenable Developer - Plugin Attributes
  6. Tenable Plugins Pipeline
Peer Review

What defenders are saying.

Submit a review attribution: handle + country only
0 flags selected · stored anonymously
Validation Results

Crowdsourced verification outputs.

Results submitted by users who ran the verification payload against their environment.