Vulnerabilities > CVE-1999-0502

047910
CVSS 7.5 - HIGH
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
PARTIAL
Integrity impact
PARTIAL
Availability impact
PARTIAL
network
low complexity
sun
hp
redhat
nessus
exploit available
metasploit

Summary

A Unix account has a default, null, blank, or missing password.

Vulnerable Configurations

Part Description Count
OS
Sun
4
OS
Hp
2
OS
Redhat
1

Exploit-Db

idEDB-ID:41694
last seen2018-11-30
modified1999-01-01
published1999-01-01
reporterExploit-DB
sourcehttps://www.exploit-db.com/download/41694
titleSSH - User Code Execution (Metasploit)

Metasploit

Nessus

  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_XC3511.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94400
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94400
    titleDefault Password 'xc3511' for 'root' Account
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    account = "root";
    password = "xc3511";
    
    include("compat.inc");
    
    if (description)
    {
      script_id(94400);
      script_version("1.13");
      script_cvs_date("Date: 2019/11/14");
    
      script_cve_id("CVE-1999-0502", "CVE-2016-1000245");
    
      script_name(english:"Default Password 'xc3511' for 'root' Account");
      script_summary(english:"Attempts to log into the remote host.");
    
      script_set_attribute(attribute:"synopsis", value:
    "An administrative account on the remote host uses a known default
    password.");
      script_set_attribute(attribute:"description", value:
    "The account 'root' on the remote host has the default password
    'xc3511'. A remote attacker can exploit this issue to gain
    administrative access to the affected system.");
      script_set_attribute(attribute:"solution", value:
    "Change the password or disable the account.");
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
      script_set_cvss_temporal_vector("CVSS2#E:POC/RL:TF/RC:C");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
      script_set_cvss3_temporal_vector("CVSS:3.0/E:P/RL:T/RC:C");
      script_set_attribute(attribute:"cvss_score_source", value:"CVE-1999-0502");
    
      script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
      script_set_attribute(attribute:"exploit_available", value:"true");
      script_set_attribute(attribute:"metasploit_name", value:'SSH User Code Execution');
      script_set_attribute(attribute:"exploit_framework_metasploit", value:"true");
    
      script_set_attribute(attribute:"plugin_publication_date", value:"2016/10/28");
    
      script_set_attribute(attribute:"plugin_type", value:"remote");
      script_set_attribute(attribute:"default_account", value:"true");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"Default Unix Accounts");
    
      script_copyright(english:"This script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
    
      script_dependencies("find_service1.nasl", "ssh_detect.nasl", "account_check.nasl");
      script_exclude_keys("global_settings/supplied_logins_only");
      script_require_ports("Services/telnet", 23, "Services/ssh", 22);
    
      exit(0);
    }
    
    include("audit.inc");
    include("default_account.inc");
    include("global_settings.inc");
    
    if (supplied_logins_only) audit(AUDIT_SUPPLIED_LOGINS_ONLY);
    
    if (! thorough_tests && ! get_kb_item("Settings/test_all_accounts"))
     exit(0, "Neither thorough_tests nor 'Settings/test_all_accounts' is set.");
    
    affected = FALSE;
    ssh_ports = get_service_port_list(svc: "ssh", default:22);
    foreach port (ssh_ports)
    {
      port = check_account(login:account, password:password, port:port, svc:"ssh");
      if (port)
      {
        affected = TRUE;
        security_report_v4(port:port, severity:SECURITY_HOLE, extra:default_account_report());
      }
    }
    if(affected) exit(0);
    
    telnet_ports = get_service_port_list(svc: "telnet", default:23);
    foreach port (telnet_ports)
    {
      port = check_account(login:account, password:password, port:port, svc:"telnet");
      if (port)
      {
        affected = TRUE;
        security_report_v4(port:port, severity:SECURITY_HOLE, extra:default_account_report());
      }
    }
    if(!affected) audit(AUDIT_HOST_NOT, "affected");
    
    
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ADMIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id40355
    published2009-07-23
    reporterThis script is Copyright (C) 2009-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/40355
    titleDefault Password (admin) for 'root' Account
    code
    #
    # (C) Tenable Network Security, Inc.
    #
    
    
    account = "root";
    password = "admin";
    
    
    include("compat.inc");
    
    
    if (description)
    {
      script_id(40355);
      script_version("$Revision: 1.13 $");
      script_cvs_date("$Date: 2017/11/20 15:13:56 $");
    
      script_cve_id("CVE-1999-0502");
     
      script_name(english:"Default Password (admin) for 'root' Account");
      script_summary(english:"Attempts to log in to the remote host.");
         
      script_set_attribute(attribute:"synopsis", value:
    "The remote system can be accessed with a default administrator
    account.");
      script_set_attribute(attribute:"description", value:
    "The account 'root' on the remote host has the password 'admin'.
    An attacker may leverage this issue to gain access, likely as an
    administrator, to the affected system.
    
    Note that DD-WRT, an open source Linux-based firmware popular on
    small routers and embedded systems, is known to use these
    credentials by default.");
      script_set_attribute(
        attribute:"solution", 
        value:"Change the password for this account or disable it."
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C");
      script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
      script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
      script_set_attribute(attribute:"exploit_available", value:"true");
      script_set_attribute(attribute:"metasploit_name", value:'SSH User Code Execution');
      script_set_attribute(attribute:"exploit_framework_metasploit", value:"true");
    
      script_set_attribute(attribute:"plugin_publication_date", value:"2009/07/23");
    
      script_set_attribute(attribute:"plugin_type", value:"remote");
      script_set_attribute(attribute:"default_account", value:"true");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_family(english:"Default Unix Accounts");
    
      script_copyright(english:"This script is Copyright (C) 2009-2017 Tenable Network Security, Inc.");
    
      script_dependencie("find_service1.nasl", "ssh_detect.nasl", "account_check.nasl");
      script_require_ports("Services/telnet", 23, "Services/ssh", 22);
      script_exclude_keys("global_settings/supplied_logins_only");
    
      exit(0);
    }
    
    include("audit.inc");
    include("default_account.inc");
    include("global_settings.inc");
    
    if (supplied_logins_only) audit(AUDIT_SUPPLIED_LOGINS_ONLY);
    
    if (! thorough_tests && ! get_kb_item("Settings/test_all_accounts"))
     exit(0, "Neither thorough_tests nor 'Settings/test_all_accounts' is set.");
    
    affected = FALSE;
    ssh_ports = get_service_port_list(svc: "ssh", default:22);
    foreach port (ssh_ports)
    {
      port = check_account(login:account, password:password, port:port, svc:"ssh");
      if (port)
      {
        affected = TRUE;
        security_report_v4(port:port, severity:SECURITY_HOLE, extra:default_account_report());
      }
    }
    if(affected) exit(0);
    
    telnet_ports = get_service_port_list(svc: "telnet", default:23);
    foreach port (telnet_ports)
    {
      port = check_account(login:account, password:password, port:port, svc:"telnet");
      if (port)
      {
        affected = TRUE;
        security_report_v4(port:port, severity:SECURITY_HOLE, extra:default_account_report());
      }
    }
    if(!affected) audit(AUDIT_HOST_NOT, "affected");
    
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_NSROOT_NSROOT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id66393
    published2013-05-13
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/66393
    titleDefault Password (nsroot) for 'nsroot' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_GUEST.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11240
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11240
    titleUnpassworded 'guest' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_DASDEC1.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id68959
    published2013-07-18
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/68959
    titleDefault password (dasdec1) for 'root' account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11245
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11245
    titleUnpassworded 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_CHANGEMENOW.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id81168
    published2015-02-04
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/81168
    titleDefault Password (changemenow) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_IRONPORT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id73298
    published2014-04-02
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/73298
    titleDefault Password (ironport) for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_7UJMKO0ADMIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94383
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94383
    titleDefault Password '7ujMko0admin' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DBADMIN_SQUS3R.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id42147
    published2009-10-15
    reporterThis script is Copyright (C) 2009-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/42147
    titleDefault Password (sq!us3r) for 'dbadmin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_PUBLIC_PUBLIC.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id17290
    published2005-03-08
    reporterThis script is Copyright (C) 2005-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/17290
    titleDefault Password (public) for 'public' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_12345.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94363
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94363
    titleDefault Password '12345' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_ABC123.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id80190
    published2014-12-22
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/80190
    titleDefault Password (abc123) for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_OPENVPNAS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id66693
    published2013-05-30
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/66693
    titleDefault Password (openvpnas) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_OPERATOR_PROFENSE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id35559
    published2009-01-31
    reporterThis script is Copyright (C) 2009-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/35559
    titleDefault Password (profense) for 'operator' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DB2INST1_DB2INST1.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11862
    published2003-10-01
    reporterThis script is Copyright (C) 2003-2018 Chris Foster
    sourcehttps://www.tenable.com/plugins/nessus/11862
    titleDefault Password (db2inst) for 'db2inst1' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_M.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id50601
    published2010-11-15
    reporterThis script is Copyright (C) 2010-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/50601
    titleDefault Password (m) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_00000000.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94376
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94376
    titleDefault Password '00000000' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_ADMINIWSS85.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id99246
    published2017-04-07
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/99246
    titleDefault Password 'adminIWSS85' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_888888_888888.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94357
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94357
    titleDefault Password '888888' for '888888' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SUPERVISOR_SUPERVISOR.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94404
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94404
    titleDefault Password 'supervisor' for 'supervisor' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_888888.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94385
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94385
    titleDefault Password '888888' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_USER.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94398
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94398
    titleDefault Password 'user' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_TECH_TECH.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94406
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94406
    titleDefault Password 'tech' for 'tech' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_TANDBERG.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id79583
    published2014-11-26
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/79583
    titleDefault Password (TANDBERG) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_USER_DEBUG.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id17293
    published2005-03-08
    reporterThis script is Copyright (C) 2005-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/17293
    titleDefault Password (debug) for 'user' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_MPI.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id18527
    published2005-06-18
    reporterThis script is Copyright (C) 2005-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/18527
    titleUnpassworded 'mpi' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SUPER_DEBUG.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id17291
    published2005-03-08
    reporterThis script is Copyright (C) 2005-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/17291
    titleDefault Password (debug) for 'super' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ENABLEDIAG.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id73299
    published2014-04-02
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/73299
    titleDefault Password (ironport) for 'enablediag' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_MEINSM.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94369
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94369
    titleDefault Password 'meinsm' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ORACLE_ORACLE.NASL
    descriptionThe password for the account
    last seen2020-06-01
    modified2020-06-02
    plugin id24276
    published2007-02-06
    reporterThis script is Copyright (C) 2007-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/24276
    titleDefault Password (oracle) for 'oracle' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_GUEST_12345.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94374
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94374
    titleDefault Password '12345' for 'guest' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ARTICA.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id50322
    published2010-10-25
    reporterThis script is Copyright (C) 2010-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/50322
    titleDefault Password (artica) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_REWT_SATORI.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11265
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11265
    titleDefault Password (satori) for 'rewt' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_DREAMBOX.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94388
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94388
    titleDefault Password 'dreambox' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DB2AS_IBMDB2.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11863
    published2003-10-01
    reporterThis script is Copyright (C) 2003-2018 Chris Foster.
    sourcehttps://www.tenable.com/plugins/nessus/11863
    titleDefault Password (ibmdb2) for 'db2as' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_USER_FORGOT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id17294
    published2005-03-08
    reporterThis script is Copyright (C) 2005-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/17294
    titleDefault Password (forgot) for 'user' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_GUEST_GUEST.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11256
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11256
    titleDefault Password (guest) for 'guest' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_DOTTIE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id31800
    published2008-04-11
    reporterThis script is Copyright (C) 2008-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/31800
    titleDefault Password (dottie) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_HI3518.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94389
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94389
    titleDefault Password 'hi3518' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ROOTKIT2.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11264
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11264
    titleDefault Password (wh00t!) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_TOOR.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id35777
    published2009-03-05
    reporterThis script is Copyright (C) 2009-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/35777
    titleDefault Password (toor) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_NAGIOSXI_ROOT.NASL
    descriptionIt is possible to SSH into the remote Nagios XI virtual machine appliance by providing default credentials. A remote attacker could exploit this to gain complete control of the remote host.
    last seen2020-06-01
    modified2020-06-02
    plugin id49773
    published2010-10-06
    reporterThis script is Copyright (C) 2010-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/49773
    titleDefault Password (nagiosxi) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_CENTREON.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id80222
    published2014-12-23
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/80222
    titleDefault Password (centreon) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_2345ASDFG.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id122613
    published2019-03-06
    reporterThis script is Copyright (C) 2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/122613
    titleDefault Password ('!2345Asdfg
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_1111.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94377
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94377
    titleDefault Password '1111' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ARKEIA.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id74217
    published2014-05-28
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/74217
    titleDefault Password (arkeia) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_666666_666666.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94356
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94356
    titleDefault Password '666666' for '666666' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ROOT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11255
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11255
    titleDefault Password (root) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_1234.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94378
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94378
    titleDefault Password '1234' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_RASPI.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id64262
    published2013-01-28
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/64262
    titleDefault Password (raspi) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_EZSETUP.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11241
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11241
    titleUnpassworded 'EZsetup' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_NASADMIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id57916
    published2012-02-13
    reporterThis script is Copyright (C) 2012-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/57916
    titleDefault Password (nasadmin) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ALPINE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id42367
    published2009-11-04
    reporterThis script is Copyright (C) 2009-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/42367
    titleDefault Password (alpine) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_PASSWORD.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id24745
    published2007-03-01
    reporterThis script is Copyright (C) 2007-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/24745
    titleDefault Password (password) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_GFORGE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id34417
    published2008-10-15
    reporterThis script is Copyright (C) 2008-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/34417
    titleDefault Password (gforge) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_TOOR.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11252
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11252
    titleUnpassworded 'toor' Account
  • NASL familyBackdoors
    NASL idACCOUNT_BASH.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id15583
    published2004-10-30
    reporterThis script is Copyright (C) 2004-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/15583
    titleUnpassworded 'bash' Backdoor Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SUPPORT_SUPPORT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94405
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94405
    titleDefault Password 'support' for 'support' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_7UJMKO0VIZXV.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94384
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94384
    titleDefault Password '7ujMko0vizxv' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_4DGIFTS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11243
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11243
    titleUnpassworded '4Dgifts' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_1234.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94362
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94362
    titleDefault Password '1234' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_CMC_LEM.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id78914
    published2014-11-07
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/78914
    titleDefault Password (password) for 'cmc' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_JUANTECH.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94391
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94391
    titleDefault Password 'juantech' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ADMINIWSS85.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id99247
    published2017-04-07
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/99247
    titleDefault Password 'adminIWSS85' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_VIZXV.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94399
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94399
    titleDefault Password 'vizxv' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DEMOS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11242
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11242
    titleUnpassworded 'demos' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_NAS4FREE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id73684
    published2014-04-14
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/73684
    titleDefault Password (nas4free) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SUPER_FORGOT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id17292
    published2005-03-08
    reporterThis script is Copyright (C) 2005-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/17292
    titleDefault Password (forgot) for 'super' Account
  • NASL familyMisc.
    NASL idPIRELLI_ROUTER_DEFAULT_PASSWORD.NASL
    descriptionThe remote host is a Pirelli AGE mB (microBusiness) router with its default password set (admin/microbusiness). An attacker could telnet to it and reconfigure it to lock the owner out and to prevent him from using his Internet connection, and do bad things.
    last seen2020-06-01
    modified2020-06-02
    plugin id12641
    published2004-07-09
    reporter(C) 2004-2015 Anonymous - This script is free
    sourcehttps://www.tenable.com/plugins/nessus/12641
    titlePirelli AGE mB Router Default Password (microbusiness) for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_WANK_WANK.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11260
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11260
    titleDefault Password (wank) for 'wank' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_JILL.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11266
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11266
    titleUnpassworded 'jill' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_CLIUSER_CLIUSER.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id69920
    published2013-09-17
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/69920
    titleDefault Password (cliuser) for 'cliuser' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_PI_RASPBERRY.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id64260
    published2013-01-28
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/64260
    titleDefault Password (raspberry) for 'pi' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_FRIDAY.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11254
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11254
    titleUnpassworded 'friday' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_TESTPASS123.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id34418
    published2008-10-15
    reporterThis script is Copyright (C) 2008-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/34418
    titleDefault Password (testpass123) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_SMCADMIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94371
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94371
    titleDefault Password 'smcadmin' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_7UJMKO0ADMIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94367
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94367
    titleDefault Password '7ujMko0admin' for 'admin' Account
  • NASL familyFTP
    NASL idDDI_MPEIX_FTP_ACCOUNTS.NASL
    descriptionThe remote FTP server has one or more accounts with a blank password.
    last seen2020-06-01
    modified2020-06-02
    plugin id11000
    published2002-06-05
    reporterThis script is Copyright (C) 2002-2018 H D Moore
    sourcehttps://www.tenable.com/plugins/nessus/11000
    titleMPEi/X Default FTP Accounts
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ROOTME.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id34323
    published2008-10-01
    reporterThis script is Copyright (C) 2008-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/34323
    titleDefault Password (rootme) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_4321.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94365
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94365
    titleDefault Password '4321' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMINISTRATOR_1234.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94372
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94372
    titleDefault Password '1234' for 'administrator' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_INFOBLOX.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id42211
    published2009-10-22
    reporterThis script is Copyright (C) 2009-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/42211
    titleDefault Password (infoblox) for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_MOBILE_ALPINE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id42368
    published2009-11-04
    reporterThis script is Copyright (C) 2009-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/42368
    titleDefault Password (alpine) for 'mobile' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_QWESTM0DEM.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id104974
    published2017-12-01
    reporterThis script is Copyright (C) 2017-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/104974
    titleDefault Password 'QwestM0dem' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_INFORMIX_INFORMIX.NASL
    descriptionThe password for the account
    last seen2020-06-01
    modified2020-06-02
    plugin id24275
    published2007-02-06
    reporterThis script is Copyright (C) 2007-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/24275
    titleDefault Password (informix) for 'informix' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SYNC.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11247
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11247
    titleUnpassworded 'sync' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_666666.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94382
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94382
    titleDefault Password '666666' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN1_PASSWORD.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94359
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94359
    titleDefault Password 'password' for 'admin1' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_XMHDIPC.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94401
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94401
    titleDefault Password 'xmhdipc' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_F00BAR.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id76191
    published2014-06-23
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/76191
    titleDefault Password (f00b@r) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SYSTEM_MANAGER.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11257
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11257
    titleDefault Password (manager) for 'system' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ABC123.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id65820
    published2013-04-05
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/65820
    titleDefault Password (abc123) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_0P3NM35H.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id48274
    published2010-08-09
    reporterThis script is Copyright (C) 2010-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/48274
    titleDefault Password (0p3nm35h) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_RAIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id73371
    published2014-04-07
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/73371
    titleDefault Password (rain) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_NETOPTICS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id70565
    published2013-10-23
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/70565
    titleDefault Password (netoptics) for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMINISTRATOR_MEINSM.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94373
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94373
    titleDefault Password 'meinsm' for 'Administrator' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_TUTOR.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11251
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11251
    titleUnpassworded 'tutor' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_ADMIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id34081
    published2008-09-04
    reporterThis script is Copyright (C) 2008-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/34081
    titleDefault Password (admin) for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_PASS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94395
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94395
    titleDefault Password 'pass' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_CHRONOS_FACEPUNCH.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id65790
    published2013-04-03
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/65790
    titleDefault Password (facepunch) for 'chronos' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_LP.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11246
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11246
    titleUnpassworded 'lp' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_VMWARE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id76993
    published2014-08-04
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/76993
    titleDefault Password (vmware) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ZTE521.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94386
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94386
    titleDefault Password 'Zte521' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ALIEN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id46240
    published2010-05-06
    reporterThis script is Copyright (C) 2010-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/46240
    titleDefault Password (alien) for 'root' Account
  • NASL familyCGI abuses
    NASL idDDI_NETSCAPE_ENTERPRISE_DEFAULT_ADMINISTRATIVE_PASSWORD.NASL
    descriptionThis host is running Netscape Enterprise Server. The administrative interface for this web server is using the default username and password of
    last seen2020-06-01
    modified2020-06-02
    plugin id11208
    published2003-01-22
    reporterThis script is Copyright (C) 2003-2018 Digital Defense Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11208
    titleNetscape Enterprise Default Administrative Password
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SPLUNKADMIN_CHANGEME.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id81169
    published2015-02-04
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/81169
    titleDefault Password (changeme) for 'splunkadmin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_PATROL_PATROL.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id50426
    published2010-10-31
    reporterThis script is Copyright (C) 2010-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/50426
    titleDefault Password (patrol) for 'patrol' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_123456.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94364
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94364
    titleDefault Password '123456' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_NASADMIN_NASADMIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id57917
    published2012-02-13
    reporterThis script is Copyright (C) 2012-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/57917
    titleDefault Password (nasadmin) for 'nasadmin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_REALTEK.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94396
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94396
    titleDefault Password 'realtek' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_123456.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94380
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94380
    titleDefault Password '123456' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DATE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11248
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11248
    titleUnpassworded 'date' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94358
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94358
    titleUnprotected 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_JACK.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11249
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11249
    titleUnpassworded 'jack' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ROOTKIT1BIS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11262
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11262
    titleDefault Password (D13hh[) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_SYSTEM.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94397
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94397
    titleDefault Password 'system' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SWIFT_SWIFT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id12116
    published2004-03-24
    reporterThis script is Copyright (C) 2004-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/12116
    titleDefault Password (swift) for 'swift' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_54321.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94366
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94366
    titleDefault Password '54321' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_TRANS_TRANS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id34084
    published2008-09-04
    reporterThis script is Copyright (C) 2008-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/34084
    titleDefault Password (trans) for 'trans' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_R00T.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id34083
    published2008-09-04
    reporterThis script is Copyright (C) 2008-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/34083
    titleUnpassworded 'r00t' account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ANKO.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94387
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94387
    titleDefault Password 'anko' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_1111.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94360
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94360
    titleDefault Password '1111' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_ADMIN1234.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94368
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94368
    titleDefault Password 'admin1234' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_KLV1234.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94394
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94394
    titleDefault Password 'klv1234' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DB2INST1_IBMDB2.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11859
    published2003-10-01
    reporterThis script is Copyright (C) 2003-2018 Chris Foster.
    sourcehttps://www.tenable.com/plugins/nessus/11859
    titleDefault Password (ibmdb2) for 'db2inst1' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_PASSWORD.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id35660
    published2009-02-12
    reporterThis script is Copyright (C) 2009-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/35660
    titleDefault Password (password) for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_GLFTPD.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11258
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11258
    titleDefault Password (glftpd) for 'glftpd' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_KLV123.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94393
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94393
    titleDefault Password 'klv123' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_IKWB.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94390
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94390
    titleDefault Password 'ikwb' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_HAX0R.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11253
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11253
    titleUnpassworded 'hax0r' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_BANK_BANK.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id34082
    published2008-09-04
    reporterThis script is Copyright (C) 2008-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/34082
    titleDefault Password (bank) for 'bank' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ARCSIGHT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id69443
    published2013-08-05
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/69443
    titleDefault Password (arcsight) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_MOTHER_FUCKER.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94375
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94375
    titleDefault Password 'f****r' for 'mother' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_1111111.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94361
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94361
    titleDefault Password '1111111' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SUPERUSER_PASSW0RD.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id80964
    published2015-01-23
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/80964
    titleDefault Password (passw0rd) for 'superuser' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_DEFAULT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id76941
    published2014-07-31
    reporterThis script is Copyright (C) 2014-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/76941
    titleDefault Password (default) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_GAMEZ_LRKR0X.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11263
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11263
    titleDefault Password (lrkr0x) for 'gamez' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_PASS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94370
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94370
    titleDefault Password 'pass' for 'admin' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_UBNT_UBNT.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94407
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94407
    titleDefault Password 'ubnt' for 'ubnt' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_BACKDOOR.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11250
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11250
    titleUnpassworded 'backdoor' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_NEXTHINK_123456.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id82505
    published2015-04-01
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/82505
    titleDefault Password (123456) for 'nexthink' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_OUTOFBOX.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11244
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11244
    titleUnpassworded 'OutOfBox' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_MG3500_MERLIN.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id50602
    published2010-11-15
    reporterThis script is Copyright (C) 2010-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/50602
    titleDefault Password (merlin) for 'mg3500' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_EMCUPDATE_PASSWORD.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id83783
    published2015-05-22
    reporterThis script is Copyright (C) 2015-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/83783
    titleDefault Password (password) for 'emcupdate' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DEBUG_SYNNET.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id17289
    published2005-03-08
    reporterThis script is Copyright (C) 2005-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/17289
    titleDefault Password (synnet) for 'debug' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_USER_USER.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id62203
    published2012-09-19
    reporterThis script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/62203
    titleDefault Password (user) for 'user' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_12345.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94379
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94379
    titleDefault Password '12345' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_54321.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94381
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94381
    titleDefault Password '54321' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_OPENELEC.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id64261
    published2013-01-28
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/64261
    titleDefault Password (openelec) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ROOTKIT1.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11261
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/11261
    titleDefault Password (D13HH[) for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_SERVICE_SERVICE.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94403
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94403
    titleDefault Password 'service' for 'service' Account
  • NASL familyDefault Unix Accounts
    NASL idMACOSX_SERVER_DEFAULT_PASSWORD.NASL
    descriptionNessus was able to login to the remote host using the following credentials : Username : root Password : 12345678 On older Macintosh computers, Mac OS X server is configured with this default account (on newer computers, the serial number of the system is used instead).
    last seen2020-06-01
    modified2020-06-02
    plugin id12513
    published2004-07-07
    reporterThis script is Copyright (C) 2004-2017 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/12513
    titleDefault Password (12345678) for 'root' Account on MacOS X Server
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_HELP.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id17575
    published2005-03-19
    reporterThis script is Copyright (C) 2005-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/17575
    titleUnpassworded 'help' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_HPSUPPORT_BADG3R5.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id67005
    published2013-06-27
    reporterThis script is Copyright (C) 2013-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/67005
    titleDefault Password (badg3r5) for 'HPSupport' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DB2FENC1_DB2FENC1.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11860
    published2003-10-01
    reporterThis script is Copyright (C) 2003-2018 Chris Foster.
    sourcehttps://www.tenable.com/plugins/nessus/11860
    titleDefault Password (db2fenc1) for 'db2fenc1' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DB2AS_DB2AS.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11864
    published2003-10-01
    reporterThis script is Copyright (C) 2003-2018 Chris Foster.
    sourcehttps://www.tenable.com/plugins/nessus/11864
    titleDefault Password (db2as) for 'db2as' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_DB2FENC1_IBMDB2.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11861
    published2003-10-01
    reporterThis script is Copyright (C) 2003-2018 Chris Foster.
    sourcehttps://www.tenable.com/plugins/nessus/11861
    titleDefault Password (ibmdb2) for 'db2fenc1' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_ZLXX.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94402
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94402
    titleDefault Password 'zlxx.' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_STOOGR.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id11259
    published2003-02-20
    reporterThis script is Copyright (C) 2003-2018 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/11259
    titleUnpassworded 'StoogR' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ROOT_JVBZD.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94392
    published2016-10-28
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94392
    titleDefault Password 'jvbzd' for 'root' Account
  • NASL familyDefault Unix Accounts
    NASL idACCOUNT_ADMIN_PASSW0RD.NASL
    descriptionThe account
    last seen2020-06-01
    modified2020-06-02
    plugin id94670
    published2016-11-10
    reporterThis script is Copyright (C) 2016-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/94670
    titleDefault Password 'P@ssw0rd' for 'admin' Account

Packetstorm

Saint

descriptionSSH password weakness
idpass_guessed
titlessh_login
typeremote