ID REDHAT-RHSA-2011-1301.NASL Type nessus Reporter This script is Copyright (C) 2013-2021 and is owned by Tenable, Inc. or an Affiliate thereof. Modified 2013-01-24T00:00:00
Description
An updated jbossws-common package that fixes one security issue is now
available for JBoss Enterprise Application Platform 5.1.1 for Red Hat
Enterprise Linux 4, 5, and 6.
The Red Hat Security Response Team has rated this update as having
important security impact. A Common Vulnerability Scoring System
(CVSS) base score, which gives a detailed severity rating, is
available from the CVE link in the References section.
The jbossws-common package provides JBoss Web Services Native, a web
service framework included as part of JBoss Enterprise Application
Platform. It implements the JAX-WS specification.
It was found that JBoss Web Services Native did not properly protect
against recursive entity resolution when processing Document Type
Definitions (DTD). A remote attacker could exploit this flaw by
sending a specially crafted HTTP POST request to a deployed web
service, causing excessive CPU and memory consumption on the system
hosting that service. If the attack is repeated to consume all
available network sockets, the server will become unavailable. This
flaw did not affect systems using JBoss Web Services CXF (provided by
jbossas-ws-cxf). (CVE-2011-1483)
Warning: Before applying this update, please back up your JBoss
Enterprise Application Platform's 'jboss-as/server/[PROFILE]/deploy/'
directory, along with all other customized configuration files.
Users of JBoss Web Services Native should upgrade to this updated
package, which corrects this issue. The JBoss server process must be
restarted for this update to take effect.
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
# The descriptive text and package checks in this plugin were
# extracted from Red Hat Security Advisory RHSA-2011:1301. The text
# itself is copyright (C) Red Hat, Inc.
#
include('deprecated_nasl_level.inc');
include('compat.inc');
if (description)
{
script_id(64000);
script_version("1.24");
script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/14");
script_cve_id("CVE-2011-1483");
script_bugtraq_id(49654);
script_xref(name:"RHSA", value:"2011:1301");
script_xref(name:"IAVB", value:"2011-B-0119");
script_name(english:"RHEL 4 / 5 / 6 : jbossws-common (RHSA-2011:1301)");
script_summary(english:"Checks the rpm output for the updated package");
script_set_attribute(
attribute:"synopsis",
value:"The remote Red Hat host is missing a security update."
);
script_set_attribute(
attribute:"description",
value:
"An updated jbossws-common package that fixes one security issue is now
available for JBoss Enterprise Application Platform 5.1.1 for Red Hat
Enterprise Linux 4, 5, and 6.
The Red Hat Security Response Team has rated this update as having
important security impact. A Common Vulnerability Scoring System
(CVSS) base score, which gives a detailed severity rating, is
available from the CVE link in the References section.
The jbossws-common package provides JBoss Web Services Native, a web
service framework included as part of JBoss Enterprise Application
Platform. It implements the JAX-WS specification.
It was found that JBoss Web Services Native did not properly protect
against recursive entity resolution when processing Document Type
Definitions (DTD). A remote attacker could exploit this flaw by
sending a specially crafted HTTP POST request to a deployed web
service, causing excessive CPU and memory consumption on the system
hosting that service. If the attack is repeated to consume all
available network sockets, the server will become unavailable. This
flaw did not affect systems using JBoss Web Services CXF (provided by
jbossas-ws-cxf). (CVE-2011-1483)
Warning: Before applying this update, please back up your JBoss
Enterprise Application Platform's 'jboss-as/server/[PROFILE]/deploy/'
directory, along with all other customized configuration files.
Users of JBoss Web Services Native should upgrade to this updated
package, which corrects this issue. The JBoss server process must be
restarted for this update to take effect."
);
script_set_attribute(
attribute:"see_also",
value:"https://access.redhat.com/security/cve/cve-2011-1483"
);
script_set_attribute(
attribute:"see_also",
value:"https://access.redhat.com/errata/RHSA-2011:1301"
);
script_set_attribute(
attribute:"solution",
value:"Update the affected jbossws-common package."
);
script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P");
script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
script_set_attribute(attribute:"exploit_available", value:"true");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"p-cpe:/a:redhat:enterprise_linux:jbossws-common");
script_set_attribute(attribute:"cpe", value:"cpe:/o:redhat:enterprise_linux:4");
script_set_attribute(attribute:"cpe", value:"cpe:/o:redhat:enterprise_linux:5");
script_set_attribute(attribute:"cpe", value:"cpe:/o:redhat:enterprise_linux:6");
script_set_attribute(attribute:"vuln_publication_date", value:"2013/07/29");
script_set_attribute(attribute:"patch_publication_date", value:"2011/09/15");
script_set_attribute(attribute:"plugin_publication_date", value:"2013/01/24");
script_set_attribute(attribute:"generated_plugin", value:"current");
script_set_attribute(attribute:"stig_severity", value:"II");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_copyright(english:"This script is Copyright (C) 2013-2021 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_family(english:"Red Hat Local Security Checks");
script_dependencies("ssh_get_info.nasl");
script_require_keys("Host/local_checks_enabled", "Host/RedHat/release", "Host/RedHat/rpm-list", "Host/cpu");
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("rpm.inc");
if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
release = get_kb_item("Host/RedHat/release");
if (isnull(release) || "Red Hat" >!< release) audit(AUDIT_OS_NOT, "Red Hat");
os_ver = pregmatch(pattern: "Red Hat Enterprise Linux.*release ([0-9]+(\.[0-9]+)?)", string:release);
if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Red Hat");
os_ver = os_ver[1];
if (! preg(pattern:"^(4|5|6)([^0-9]|$)", string:os_ver)) audit(AUDIT_OS_NOT, "Red Hat 4.x / 5.x / 6.x", "Red Hat " + os_ver);
if (!get_kb_item("Host/RedHat/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
cpu = get_kb_item("Host/cpu");
if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$" && "s390" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Red Hat", cpu);
yum_updateinfo = get_kb_item("Host/RedHat/yum-updateinfo");
if (!empty_or_null(yum_updateinfo))
{
rhsa = "RHSA-2011:1301";
yum_report = redhat_generate_yum_updateinfo_report(rhsa:rhsa);
if (!empty_or_null(yum_report))
{
security_report_v4(
port : 0,
severity : SECURITY_WARNING,
extra : yum_report
);
exit(0);
}
else
{
audit_message = "affected by Red Hat security advisory " + rhsa;
audit(AUDIT_OS_NOT, audit_message);
}
}
else
{
flag = 0;
if (rpm_check(release:"RHEL4", reference:"jbossws-common-1.1.0-4.SP7_patch_02.1.ep5.el4")) flag++;
if (rpm_check(release:"RHEL5", reference:"jbossws-common-1.1.0-4.SP7_patch_02.1.ep5.el5")) flag++;
if (rpm_check(release:"RHEL6", reference:"jbossws-common-1.1.0-4.SP7_patch_02.1.ep5.el6")) flag++;
if (flag)
{
security_report_v4(
port : 0,
severity : SECURITY_WARNING,
extra : rpm_report_get() + redhat_report_package_caveat()
);
exit(0);
}
else
{
tested = pkg_tests_get();
if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
else audit(AUDIT_PACKAGE_NOT_INSTALLED, "jbossws-common");
}
}
{"id": "REDHAT-RHSA-2011-1301.NASL", "bulletinFamily": "scanner", "title": "RHEL 4 / 5 / 6 : jbossws-common (RHSA-2011:1301)", "description": "An updated jbossws-common package that fixes one security issue is now\navailable for JBoss Enterprise Application Platform 5.1.1 for Red Hat\nEnterprise Linux 4, 5, and 6.\n\nThe Red Hat Security Response Team has rated this update as having\nimportant security impact. A Common Vulnerability Scoring System\n(CVSS) base score, which gives a detailed severity rating, is\navailable from the CVE link in the References section.\n\nThe jbossws-common package provides JBoss Web Services Native, a web\nservice framework included as part of JBoss Enterprise Application\nPlatform. It implements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by\nsending a specially crafted HTTP POST request to a deployed web\nservice, causing excessive CPU and memory consumption on the system\nhosting that service. If the attack is repeated to consume all\navailable network sockets, the server will become unavailable. This\nflaw did not affect systems using JBoss Web Services CXF (provided by\njbossas-ws-cxf). (CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss\nEnterprise Application Platform's 'jboss-as/server/[PROFILE]/deploy/'\ndirectory, along with all other customized configuration files.\n\nUsers of JBoss Web Services Native should upgrade to this updated\npackage, which corrects this issue. The JBoss server process must be\nrestarted for this update to take effect.", "published": "2013-01-24T00:00:00", "modified": "2013-01-24T00:00:00", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}, "href": "https://www.tenable.com/plugins/nessus/64000", "reporter": "This script is Copyright (C) 2013-2021 and is owned by Tenable, Inc. or an Affiliate thereof.", "references": ["https://access.redhat.com/security/cve/cve-2011-1483", "https://access.redhat.com/errata/RHSA-2011:1301"], "cvelist": ["CVE-2011-1483"], "type": "nessus", "lastseen": "2021-01-17T13:09:46", "edition": 28, "viewCount": 7, "enchantments": {"dependencies": {"references": [{"type": "cve", "idList": ["CVE-2011-1483"]}, {"type": "redhat", "idList": ["RHSA-2011:1302", "RHSA-2011:1301", "RHSA-2011:1303", "RHSA-2011:1306", "RHSA-2011:1312", "RHSA-2011:1310"]}, {"type": "nessus", "idList": ["REDHAT-RHSA-2011-1309.NASL", "REDHAT-RHSA-2011-1306.NASL"]}, {"type": "securityvulns", "idList": ["SECURITYVULNS:DOC:29650", "SECURITYVULNS:VULN:13207"]}], "modified": "2021-01-17T13:09:46", "rev": 2}, "score": {"value": 4.9, "vector": "NONE", "modified": "2021-01-17T13:09:46", "rev": 2}, "vulnersScore": 4.9}, "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were \n# extracted from Red Hat Security Advisory RHSA-2011:1301. The text \n# itself is copyright (C) Red Hat, Inc.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(64000);\n script_version(\"1.24\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/14\");\n\n script_cve_id(\"CVE-2011-1483\");\n script_bugtraq_id(49654);\n script_xref(name:\"RHSA\", value:\"2011:1301\");\n script_xref(name:\"IAVB\", value:\"2011-B-0119\");\n\n script_name(english:\"RHEL 4 / 5 / 6 : jbossws-common (RHSA-2011:1301)\");\n script_summary(english:\"Checks the rpm output for the updated package\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Red Hat host is missing a security update.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"An updated jbossws-common package that fixes one security issue is now\navailable for JBoss Enterprise Application Platform 5.1.1 for Red Hat\nEnterprise Linux 4, 5, and 6.\n\nThe Red Hat Security Response Team has rated this update as having\nimportant security impact. A Common Vulnerability Scoring System\n(CVSS) base score, which gives a detailed severity rating, is\navailable from the CVE link in the References section.\n\nThe jbossws-common package provides JBoss Web Services Native, a web\nservice framework included as part of JBoss Enterprise Application\nPlatform. It implements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by\nsending a specially crafted HTTP POST request to a deployed web\nservice, causing excessive CPU and memory consumption on the system\nhosting that service. If the attack is repeated to consume all\navailable network sockets, the server will become unavailable. This\nflaw did not affect systems using JBoss Web Services CXF (provided by\njbossas-ws-cxf). (CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss\nEnterprise Application Platform's 'jboss-as/server/[PROFILE]/deploy/'\ndirectory, along with all other customized configuration files.\n\nUsers of JBoss Web Services Native should upgrade to this updated\npackage, which corrects this issue. The JBoss server process must be\nrestarted for this update to take effect.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2011-1483\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/errata/RHSA-2011:1301\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected jbossws-common package.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:F/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:redhat:enterprise_linux:jbossws-common\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:4\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:5\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:6\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2013/07/29\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/09/15\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2013/01/24\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_set_attribute(attribute:\"stig_severity\", value:\"II\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2013-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Red Hat Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/RedHat/release\", \"Host/RedHat/rpm-list\", \"Host/cpu\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/RedHat/release\");\nif (isnull(release) || \"Red Hat\" >!< release) audit(AUDIT_OS_NOT, \"Red Hat\");\nos_ver = pregmatch(pattern: \"Red Hat Enterprise Linux.*release ([0-9]+(\\.[0-9]+)?)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"Red Hat\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^(4|5|6)([^0-9]|$)\", string:os_ver)) audit(AUDIT_OS_NOT, \"Red Hat 4.x / 5.x / 6.x\", \"Red Hat \" + os_ver);\n\nif (!get_kb_item(\"Host/RedHat/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\" && \"s390\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"Red Hat\", cpu);\n\nyum_updateinfo = get_kb_item(\"Host/RedHat/yum-updateinfo\");\nif (!empty_or_null(yum_updateinfo)) \n{\n rhsa = \"RHSA-2011:1301\";\n yum_report = redhat_generate_yum_updateinfo_report(rhsa:rhsa);\n if (!empty_or_null(yum_report))\n {\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : yum_report \n );\n exit(0);\n }\n else\n {\n audit_message = \"affected by Red Hat security advisory \" + rhsa;\n audit(AUDIT_OS_NOT, audit_message);\n }\n}\nelse\n{\n flag = 0;\n if (rpm_check(release:\"RHEL4\", reference:\"jbossws-common-1.1.0-4.SP7_patch_02.1.ep5.el4\")) flag++;\n\n if (rpm_check(release:\"RHEL5\", reference:\"jbossws-common-1.1.0-4.SP7_patch_02.1.ep5.el5\")) flag++;\n\n if (rpm_check(release:\"RHEL6\", reference:\"jbossws-common-1.1.0-4.SP7_patch_02.1.ep5.el6\")) flag++;\n\n if (flag)\n {\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : rpm_report_get() + redhat_report_package_caveat()\n );\n exit(0);\n }\n else\n {\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"jbossws-common\");\n }\n}\n", "naslFamily": "Red Hat Local Security Checks", "pluginID": "64000", "cpe": ["cpe:/o:redhat:enterprise_linux:4", "cpe:/o:redhat:enterprise_linux:5", "p-cpe:/a:redhat:enterprise_linux:jbossws-common", "cpe:/o:redhat:enterprise_linux:6"], "scheme": null}
{"cve": [{"lastseen": "2021-02-02T05:51:01", "description": "wsf/common/DOMUtils.java in JBossWS Native in Red Hat JBoss Enterprise Application Platform 4.2.0.CP09, 4.3, and 5.1.1; JBoss Enterprise Portal Platform 4.3.CP06 and 5.1.1; JBoss Enterprise SOA Platform 4.2.CP05, 4.3.CP05, and 5.1.0; JBoss Communications Platform 1.2.11 and 5.1.1; JBoss Enterprise BRMS Platform 5.1.0; and JBoss Enterprise Web Platform 5.1.1 does not properly handle recursion during entity expansion, which allows remote attackers to cause a denial of service (memory and CPU consumption) via a crafted request containing an XML document with a DOCTYPE declaration and a large number of nested entity references, a similar issue to CVE-2003-1564.", "edition": 5, "cvss3": {}, "published": "2013-07-29T13:59:00", "title": "CVE-2011-1483", "type": "cve", "cwe": ["NVD-CWE-noinfo"], "bulletinFamily": "NVD", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 10.0, "obtainAllPrivilege": false, "userInteractionRequired": false, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "LOW", "confidentialityImpact": "NONE", "availabilityImpact": "PARTIAL", "integrityImpact": "NONE", "baseScore": 5.0, "vectorString": "AV:N/AC:L/Au:N/C:N/I:N/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 2.9, "obtainUserPrivilege": false}, "cvelist": ["CVE-2011-1483"], "modified": "2019-10-09T23:02:00", "cpe": ["cpe:/a:hp:network_node_manager_i:9.10", "cpe:/a:redhat:jboss_enterprise_application_platform:4.3.0", "cpe:/a:redhat:jboss_enterprise_soa_platform:4.2.0", "cpe:/a:redhat:jboss_enterprise_portal_platform:5.1.1", "cpe:/a:redhat:jboss_enterprise_brms_platform:5.1.0", "cpe:/a:hp:network_node_manager_i:9.0", "cpe:/a:redhat:jboss_communications_platform:1.2.11", "cpe:/a:redhat:jboss_enterprise_soa_platform:4.3.0", "cpe:/a:redhat:jboss_enterprise_web_platform:5.1.1", "cpe:/a:redhat:jboss_communications_platform:5.1.1", "cpe:/a:hp:network_node_manager_i:9.02", "cpe:/a:hp:network_node_manager_i:9.01", "cpe:/a:hp:network_node_manager_i:9.03", "cpe:/a:redhat:jboss_enterprise_portal_platform:4.3.0", "cpe:/a:redhat:jboss_enterprise_application_platform:5.1.1", "cpe:/a:redhat:jboss_enterprise_soa_platform:5.1.0", "cpe:/a:redhat:jboss_enterprise_application_platform:4.2.0"], "id": "CVE-2011-1483", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-1483", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}, "cpe23": ["cpe:2.3:a:hp:network_node_manager_i:9.0:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_application_platform:4.3.0:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_application_platform:4.2.0:cp09:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_portal_platform:5.1.1:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_communications_platform:1.2.11:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_soa_platform:5.1.0:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_soa_platform:4.2.0:cp05:*:*:*:*:*:*", "cpe:2.3:a:hp:network_node_manager_i:9.10:*:*:*:*:*:*:*", "cpe:2.3:a:hp:network_node_manager_i:9.03:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_application_platform:5.1.1:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_portal_platform:4.3.0:cp06:*:*:*:*:*:*", "cpe:2.3:a:hp:network_node_manager_i:9.01:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_web_platform:5.1.1:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_communications_platform:5.1.1:*:*:*:*:*:*:*", "cpe:2.3:a:hp:network_node_manager_i:9.02:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_brms_platform:5.1.0:*:*:*:*:*:*:*", "cpe:2.3:a:redhat:jboss_enterprise_soa_platform:4.3.0:cp05:*:*:*:*:*:*"]}], "redhat": [{"lastseen": "2019-08-13T18:46:15", "bulletinFamily": "unix", "cvelist": ["CVE-2011-1483"], "description": "The jbossws-common package provides JBoss Web Services Native, a web\nservice framework included as part of JBoss Enterprise Application\nPlatform. It implements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by sending a\nspecially-crafted HTTP POST request to a deployed web service, causing\nexcessive CPU and memory consumption on the system hosting that service. If\nthe attack is repeated to consume all available network sockets, the server\nwill become unavailable. (CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss Enterprise\nApplication Platform's \"jboss-as/server/[PROFILE]/deploy/\" directory, along\nwith all other customized configuration files.\n\nUsers of JBoss Enterprise Application Platform 4.3 for Red Hat Enterprise\nLinux 4 and 5 should upgrade to this updated package, which corrects this\nissue. The JBoss server process must be restarted for this update to take\neffect.\n", "modified": "2016-04-04T18:31:11", "published": "2011-09-15T04:00:00", "id": "RHSA-2011:1306", "href": "https://access.redhat.com/errata/RHSA-2011:1306", "type": "redhat", "title": "(RHSA-2011:1306) Important: jbossws-common security update", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}}, {"lastseen": "2019-08-13T18:46:32", "bulletinFamily": "unix", "cvelist": ["CVE-2011-1483"], "description": "The jbossws-common package provides JBoss Web Services Native, a web\nservice framework included as part of JBoss Enterprise Web Platform. It\nimplements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by sending a\nspecially-crafted HTTP POST request to a deployed web service, causing\nexcessive CPU and memory consumption on the system hosting that service. If\nthe attack is repeated to consume all available network sockets, the server\nwill become unavailable. This flaw did not affect systems using JBoss Web\nServices CXF (provided by jbossas-ws-cxf-ewp). (CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss Enterprise\nWeb Platform's \"jboss-as-web/server/[PROFILE]/deploy/\" directory, along\nwith all other customized configuration files.\n\nUsers of JBoss Web Services Native should upgrade to this updated package,\nwhich corrects this issue. The JBoss server process must be restarted for\nthis update to take effect.\n", "modified": "2018-06-07T02:39:14", "published": "2011-09-15T04:00:00", "id": "RHSA-2011:1303", "href": "https://access.redhat.com/errata/RHSA-2011:1303", "type": "redhat", "title": "(RHSA-2011:1303) Important: jbossws-common security update", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}}, {"lastseen": "2019-08-13T18:44:41", "bulletinFamily": "unix", "cvelist": ["CVE-2011-1483"], "description": "The jbossws-common package provides JBoss Web Services Native, a web\nservice framework included as part of JBoss Enterprise Application\nPlatform. It implements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by sending a\nspecially-crafted HTTP POST request to a deployed web service, causing\nexcessive CPU and memory consumption on the system hosting that service. If\nthe attack is repeated to consume all available network sockets, the server\nwill become unavailable. This flaw did not affect systems using JBoss Web\nServices CXF (provided by jbossas-ws-cxf). (CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss Enterprise\nApplication Platform's \"jboss-as/server/[PROFILE]/deploy/\" directory, along\nwith all other customized configuration files.\n\nUsers of JBoss Web Services Native should upgrade to this updated package,\nwhich corrects this issue. The JBoss server process must be restarted for\nthis update to take effect.\n", "modified": "2018-06-07T02:37:45", "published": "2011-09-15T04:00:00", "id": "RHSA-2011:1301", "href": "https://access.redhat.com/errata/RHSA-2011:1301", "type": "redhat", "title": "(RHSA-2011:1301) Important: jbossws-common security update", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}}, {"lastseen": "2019-05-29T14:35:21", "bulletinFamily": "unix", "cvelist": ["CVE-2011-1483"], "description": "JBoss Web Services Native is a web service framework included as part of\nJBoss Enterprise Application Platform. It implements the JAX-WS\nspecification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by sending a\nspecially-crafted HTTP POST request to a deployed web service, causing\nexcessive CPU and memory consumption on the system hosting that service. If\nthe attack is repeated to consume all available network sockets, the server\nwill become unavailable. (CVE-2011-1483)\n\nAll users of JBoss Enterprise Application Platform 4.3 as provided from the\nRed Hat Customer Portal are advised to install this update.", "modified": "2019-02-20T17:33:14", "published": "2011-09-15T19:08:30", "id": "RHSA-2011:1312", "href": "https://access.redhat.com/errata/RHSA-2011:1312", "type": "redhat", "title": "(RHSA-2011:1312) Important: jbossws-common security update", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}}, {"lastseen": "2019-05-29T14:35:31", "bulletinFamily": "unix", "cvelist": ["CVE-2011-1483"], "description": "JBoss Web Services Native is a web service framework included as part of\nJBoss Enterprise Application Platform. It implements the JAX-WS\nspecification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by sending a\nspecially-crafted HTTP POST request to a deployed web service, causing\nexcessive CPU and memory consumption on the system hosting that service. If\nthe attack is repeated to consume all available network sockets, the server\nwill become unavailable. This flaw did not affect systems using JBoss Web\nServices CXF (provided by jboss-ep-ws-cxf-5.1.1-installer.zip).\n(CVE-2011-1483)\n\nAll users of JBoss Enterprise Application Platform 5.1.1 as provided from\nthe Red Hat Customer Portal are advised to install this update.", "modified": "2019-02-20T17:36:29", "published": "2011-09-15T17:48:42", "id": "RHSA-2011:1302", "href": "https://access.redhat.com/errata/RHSA-2011:1302", "type": "redhat", "title": "(RHSA-2011:1302) Important: jbossws-common security update", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}}, {"lastseen": "2019-05-29T14:34:06", "bulletinFamily": "unix", "cvelist": ["CVE-2011-1483"], "description": "JBoss Web Services Native is a web service framework included as part of\nJBoss Enterprise Application Platform. It implements the JAX-WS\nspecification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by sending a\nspecially-crafted HTTP POST request to a deployed web service, causing\nexcessive CPU and memory consumption on the system hosting that service. If\nthe attack is repeated to consume all available network sockets, the server\nwill become unavailable. (CVE-2011-1483)\n\nAll users of JBoss Enterprise Application Platform 4.2.0.CP09 as provided\nfrom the Red Hat Customer Portal are advised to install this update.", "modified": "2019-02-20T17:32:38", "published": "2011-09-15T18:36:38", "id": "RHSA-2011:1310", "href": "https://access.redhat.com/errata/RHSA-2011:1310", "type": "redhat", "title": "(RHSA-2011:1310) Important: jbossws security update", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}}], "nessus": [{"lastseen": "2021-01-17T13:09:46", "description": "An updated jbossws-common package that fixes one security issue is now\navailable for JBoss Enterprise Application Platform 4.3 for Red Hat\nEnterprise Linux 4 and 5.\n\nThe Red Hat Security Response Team has rated this update as having\nimportant security impact. A Common Vulnerability Scoring System\n(CVSS) base score, which gives a detailed severity rating, is\navailable from the CVE link in the References section.\n\nThe jbossws-common package provides JBoss Web Services Native, a web\nservice framework included as part of JBoss Enterprise Application\nPlatform. It implements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by\nsending a specially crafted HTTP POST request to a deployed web\nservice, causing excessive CPU and memory consumption on the system\nhosting that service. If the attack is repeated to consume all\navailable network sockets, the server will become unavailable.\n(CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss\nEnterprise Application Platform's 'jboss-as/server/[PROFILE]/deploy/'\ndirectory, along with all other customized configuration files.\n\nUsers of JBoss Enterprise Application Platform 4.3 for Red Hat\nEnterprise Linux 4 and 5 should upgrade to this updated package, which\ncorrects this issue. The JBoss server process must be restarted for\nthis update to take effect.", "edition": 28, "published": "2013-01-24T00:00:00", "title": "RHEL 4 / 5 : jbossws-common (RHSA-2011:1306)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2011-1483"], "modified": "2013-01-24T00:00:00", "cpe": ["cpe:/o:redhat:enterprise_linux:4", "cpe:/o:redhat:enterprise_linux:5", "p-cpe:/a:redhat:enterprise_linux:jbossws-common"], "id": "REDHAT-RHSA-2011-1306.NASL", "href": "https://www.tenable.com/plugins/nessus/64001", "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were \n# extracted from Red Hat Security Advisory RHSA-2011:1306. The text \n# itself is copyright (C) Red Hat, Inc.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(64001);\n script_version(\"1.24\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/14\");\n\n script_cve_id(\"CVE-2011-1483\");\n script_bugtraq_id(49654);\n script_xref(name:\"RHSA\", value:\"2011:1306\");\n script_xref(name:\"IAVB\", value:\"2011-B-0119\");\n\n script_name(english:\"RHEL 4 / 5 : jbossws-common (RHSA-2011:1306)\");\n script_summary(english:\"Checks the rpm output for the updated package\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Red Hat host is missing a security update.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"An updated jbossws-common package that fixes one security issue is now\navailable for JBoss Enterprise Application Platform 4.3 for Red Hat\nEnterprise Linux 4 and 5.\n\nThe Red Hat Security Response Team has rated this update as having\nimportant security impact. A Common Vulnerability Scoring System\n(CVSS) base score, which gives a detailed severity rating, is\navailable from the CVE link in the References section.\n\nThe jbossws-common package provides JBoss Web Services Native, a web\nservice framework included as part of JBoss Enterprise Application\nPlatform. It implements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by\nsending a specially crafted HTTP POST request to a deployed web\nservice, causing excessive CPU and memory consumption on the system\nhosting that service. If the attack is repeated to consume all\navailable network sockets, the server will become unavailable.\n(CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss\nEnterprise Application Platform's 'jboss-as/server/[PROFILE]/deploy/'\ndirectory, along with all other customized configuration files.\n\nUsers of JBoss Enterprise Application Platform 4.3 for Red Hat\nEnterprise Linux 4 and 5 should upgrade to this updated package, which\ncorrects this issue. The JBoss server process must be restarted for\nthis update to take effect.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2011-1483\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/errata/RHSA-2011:1306\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Update the affected jbossws-common package.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:F/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:redhat:enterprise_linux:jbossws-common\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:4\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:5\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2013/07/29\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/09/15\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2013/01/24\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_set_attribute(attribute:\"stig_severity\", value:\"II\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2013-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Red Hat Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/RedHat/release\", \"Host/RedHat/rpm-list\", \"Host/cpu\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/RedHat/release\");\nif (isnull(release) || \"Red Hat\" >!< release) audit(AUDIT_OS_NOT, \"Red Hat\");\nos_ver = pregmatch(pattern: \"Red Hat Enterprise Linux.*release ([0-9]+(\\.[0-9]+)?)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"Red Hat\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^(4|5)([^0-9]|$)\", string:os_ver)) audit(AUDIT_OS_NOT, \"Red Hat 4.x / 5.x\", \"Red Hat \" + os_ver);\n\nif (!get_kb_item(\"Host/RedHat/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\" && \"s390\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"Red Hat\", cpu);\n\nyum_updateinfo = get_kb_item(\"Host/RedHat/yum-updateinfo\");\nif (!empty_or_null(yum_updateinfo)) \n{\n rhsa = \"RHSA-2011:1306\";\n yum_report = redhat_generate_yum_updateinfo_report(rhsa:rhsa);\n if (!empty_or_null(yum_report))\n {\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : yum_report \n );\n exit(0);\n }\n else\n {\n audit_message = \"affected by Red Hat security advisory \" + rhsa;\n audit(AUDIT_OS_NOT, audit_message);\n }\n}\nelse\n{\n flag = 0;\n if (rpm_check(release:\"RHEL4\", reference:\"jbossws-common-1.0.0-5.GA_CP07_patch_01.1.ep1.el4\")) flag++;\n\n if (rpm_check(release:\"RHEL5\", reference:\"jbossws-common-1.0.0-5.GA_CP07_patch_01.1.ep1.el5\")) flag++;\n\n if (flag)\n {\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : rpm_report_get() + redhat_report_package_caveat()\n );\n exit(0);\n }\n else\n {\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"jbossws-common\");\n }\n}\n", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}}, {"lastseen": "2021-01-17T13:09:46", "description": "Updated jbossas packages that fix one security issue are now available\nfor JBoss Enterprise Application Platform 4.2.0.CP09 for Red Hat\nEnterprise Linux 4 and 5.\n\nThe Red Hat Security Response Team has rated this update as having\nimportant security impact. A Common Vulnerability Scoring System\n(CVSS) base score, which gives a detailed severity rating, is\navailable from the CVE link in the References section.\n\nJBoss Enterprise Application Platform is the market-leading platform\nfor innovative and scalable Java applications. JBoss Enterprise\nApplication Platform integrates the JBoss Application Server with\nJBoss Hibernate and JBoss Seam into a complete and simple enterprise\nsolution. JBoss Web Services Native is a web service framework\nincluded as part of JBoss Enterprise Application Platform. It\nimplements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by\nsending a specially crafted HTTP POST request to a deployed web\nservice, causing excessive CPU and memory consumption on the system\nhosting that service. If the attack is repeated to consume all\navailable network sockets, the server will become unavailable.\n(CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss\nEnterprise Application Platform's 'server/[configuration]/deploy/'\ndirectory, along with all other customized configuration files.\n\nUsers of JBoss Enterprise Application Platform 4.2.0.CP09 on Red Hat\nEnterprise Linux 4 and 5 should upgrade to these updated packages,\nwhich correct this issue. The JBoss server process must be restarted\nfor this update to take effect.", "edition": 28, "published": "2013-01-24T00:00:00", "title": "RHEL 4 / 5 : jbossas (RHSA-2011:1309)", "type": "nessus", "bulletinFamily": "scanner", "cvelist": ["CVE-2011-1483"], "modified": "2013-01-24T00:00:00", "cpe": ["cpe:/o:redhat:enterprise_linux:4", "cpe:/o:redhat:enterprise_linux:5", "p-cpe:/a:redhat:enterprise_linux:jbossas", "p-cpe:/a:redhat:enterprise_linux:jbossas-4.2.0.GA_CP09-bin", "p-cpe:/a:redhat:enterprise_linux:jbossas-client"], "id": "REDHAT-RHSA-2011-1309.NASL", "href": "https://www.tenable.com/plugins/nessus/64002", "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were \n# extracted from Red Hat Security Advisory RHSA-2011:1309. The text \n# itself is copyright (C) Red Hat, Inc.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(64002);\n script_version(\"1.26\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/14\");\n\n script_cve_id(\"CVE-2011-1483\");\n script_bugtraq_id(49654);\n script_xref(name:\"RHSA\", value:\"2011:1309\");\n script_xref(name:\"IAVB\", value:\"2011-B-0119\");\n\n script_name(english:\"RHEL 4 / 5 : jbossas (RHSA-2011:1309)\");\n script_summary(english:\"Checks the rpm output for the updated packages\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote Red Hat host is missing one or more security updates.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"Updated jbossas packages that fix one security issue are now available\nfor JBoss Enterprise Application Platform 4.2.0.CP09 for Red Hat\nEnterprise Linux 4 and 5.\n\nThe Red Hat Security Response Team has rated this update as having\nimportant security impact. A Common Vulnerability Scoring System\n(CVSS) base score, which gives a detailed severity rating, is\navailable from the CVE link in the References section.\n\nJBoss Enterprise Application Platform is the market-leading platform\nfor innovative and scalable Java applications. JBoss Enterprise\nApplication Platform integrates the JBoss Application Server with\nJBoss Hibernate and JBoss Seam into a complete and simple enterprise\nsolution. JBoss Web Services Native is a web service framework\nincluded as part of JBoss Enterprise Application Platform. It\nimplements the JAX-WS specification.\n\nIt was found that JBoss Web Services Native did not properly protect\nagainst recursive entity resolution when processing Document Type\nDefinitions (DTD). A remote attacker could exploit this flaw by\nsending a specially crafted HTTP POST request to a deployed web\nservice, causing excessive CPU and memory consumption on the system\nhosting that service. If the attack is repeated to consume all\navailable network sockets, the server will become unavailable.\n(CVE-2011-1483)\n\nWarning: Before applying this update, please back up your JBoss\nEnterprise Application Platform's 'server/[configuration]/deploy/'\ndirectory, along with all other customized configuration files.\n\nUsers of JBoss Enterprise Application Platform 4.2.0.CP09 on Red Hat\nEnterprise Linux 4 and 5 should upgrade to these updated packages,\nwhich correct this issue. The JBoss server process must be restarted\nfor this update to take effect.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/security/cve/cve-2011-1483\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"https://access.redhat.com/errata/RHSA-2011:1309\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\n\"Update the affected jbossas, jbossas-4.2.0.GA_CP09-bin and / or\njbossas-client packages.\"\n );\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:P\");\n script_set_cvss_temporal_vector(\"CVSS2#E:F/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:redhat:enterprise_linux:jbossas\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:redhat:enterprise_linux:jbossas-4.2.0.GA_CP09-bin\");\n script_set_attribute(attribute:\"cpe\", value:\"p-cpe:/a:redhat:enterprise_linux:jbossas-client\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:4\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:redhat:enterprise_linux:5\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2013/07/29\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2011/09/15\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2013/01/24\");\n script_set_attribute(attribute:\"generated_plugin\", value:\"current\");\n script_set_attribute(attribute:\"stig_severity\", value:\"II\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2013-2021 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n script_family(english:\"Red Hat Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/RedHat/release\", \"Host/RedHat/rpm-list\", \"Host/cpu\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"rpm.inc\");\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nrelease = get_kb_item(\"Host/RedHat/release\");\nif (isnull(release) || \"Red Hat\" >!< release) audit(AUDIT_OS_NOT, \"Red Hat\");\nos_ver = pregmatch(pattern: \"Red Hat Enterprise Linux.*release ([0-9]+(\\.[0-9]+)?)\", string:release);\nif (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, \"Red Hat\");\nos_ver = os_ver[1];\nif (! preg(pattern:\"^(4|5)([^0-9]|$)\", string:os_ver)) audit(AUDIT_OS_NOT, \"Red Hat 4.x / 5.x\", \"Red Hat \" + os_ver);\n\nif (!get_kb_item(\"Host/RedHat/rpm-list\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\ncpu = get_kb_item(\"Host/cpu\");\nif (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);\nif (\"x86_64\" >!< cpu && cpu !~ \"^i[3-6]86$\" && \"s390\" >!< cpu) audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, \"Red Hat\", cpu);\n\nyum_updateinfo = get_kb_item(\"Host/RedHat/yum-updateinfo\");\nif (!empty_or_null(yum_updateinfo)) \n{\n rhsa = \"RHSA-2011:1309\";\n yum_report = redhat_generate_yum_updateinfo_report(rhsa:rhsa);\n if (!empty_or_null(yum_report))\n {\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : yum_report \n );\n exit(0);\n }\n else\n {\n audit_message = \"affected by Red Hat security advisory \" + rhsa;\n audit(AUDIT_OS_NOT, audit_message);\n }\n}\nelse\n{\n flag = 0;\n if (rpm_check(release:\"RHEL4\", reference:\"jbossas-4.2.0-6.GA_CP09.11.ep1.el4\")) flag++;\n if (rpm_check(release:\"RHEL4\", reference:\"jbossas-4.2.0.GA_CP09-bin-4.2.0-6.GA_CP09.11.ep1.el4\")) flag++;\n if (rpm_check(release:\"RHEL4\", reference:\"jbossas-client-4.2.0-6.GA_CP09.11.ep1.el4\")) flag++;\n\n if (rpm_check(release:\"RHEL5\", reference:\"jbossas-4.2.0-6.GA_CP09.11.1.ep1.el5\")) flag++;\n if (rpm_check(release:\"RHEL5\", reference:\"jbossas-4.2.0.GA_CP09-bin-4.2.0-6.GA_CP09.11.1.ep1.el5\")) flag++;\n if (rpm_check(release:\"RHEL5\", reference:\"jbossas-client-4.2.0-6.GA_CP09.11.1.ep1.el5\")) flag++;\n\n if (flag)\n {\n security_report_v4(\n port : 0,\n severity : SECURITY_WARNING,\n extra : rpm_report_get() + redhat_report_package_caveat()\n );\n exit(0);\n }\n else\n {\n tested = pkg_tests_get();\n if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);\n else audit(AUDIT_PACKAGE_NOT_INSTALLED, \"jbossas / jbossas-4.2.0.GA_CP09-bin / jbossas-client\");\n }\n}\n", "cvss": {"score": 5.0, "vector": "AV:N/AC:L/Au:N/C:N/I:N/A:P"}}], "securityvulns": [{"lastseen": "2018-08-31T11:10:48", "bulletinFamily": "software", "cvelist": ["CVE-2010-1429", "CVE-2010-1428", "CVE-2007-5333", "CVE-2009-3554", "CVE-2011-2196", "CVE-2011-4605", "CVE-2011-1483", "CVE-2011-4858", "CVE-2012-3546", "CVE-2010-0738"], "description": "\r\n\r\n-----BEGIN PGP SIGNED MESSAGE-----\r\nHash: SHA1\r\n\r\nNote: the current version of the following document is available here:\r\nhttps://h20564.www2.hp.com/portal/site/hpsc/public/kb/\r\ndocDisplay?docId=emr_na-c03824583\r\n\r\nSUPPORT COMMUNICATION - SECURITY BULLETIN\r\n\r\nDocument ID: c03824583\r\nVersion: 1\r\n\r\nHPSBMU02894 rev.1 - HP Network Node Manager I (NNMi) for HP-UX, Linux,\r\nSolaris, and Windows, Remote Denial of Service (DoS), Unauthorized Access,\r\nExecution of Arbitrary Code\r\n\r\nNOTICE: The information in this Security Bulletin should be acted upon as\r\nsoon as possible.\r\n\r\nRelease Date: 2013-07-24\r\nLast Updated: 2013-07-24\r\n\r\nPotential Security Impact: Remote Denial of Service (DoS), unauthorized\r\naccess or execution of arbitrary code\r\n\r\nSource: Hewlett-Packard Company, HP Software Security Response Team\r\n\r\nVULNERABILITY SUMMARY\r\nPotential security vulnerabilities have been identified with HP Network Node\r\nManager I (NNMi) on HP-UX, Linux, Solaris, and Windows. These vulnerabilities\r\ncould be remotely exploited resulting in a Denial of Service (DoS) or\r\nunauthorized access or execution of arbitrary code.\r\n\r\nReferences: CVE-2007-5333, CVE-2009-3554, CVE-2010-0738, CVE-2010-1428,\r\nCVE-2010-1429, CVE-2011-1483, CVE-2011-2196, CVE-2011-4605, CVE-2011-4858,\r\nCVE-2012-3546, SSRT101110\r\n\r\nSUPPORTED SOFTWARE VERSIONS*: ONLY impacted versions are listed.\r\nHP Network Node Manager I (NNMi) v9.0X and v9.1X for HP-UX, Linux, Solaris,\r\nand Windows.\r\n\r\nBACKGROUND\r\n\r\nCVSS 2.0 Base Metrics\r\n===========================================================\r\n Reference Base Vector Base Score\r\nCVE-2007-5333 (AV:N/AC:L/Au:N/C:P/I:N/A:N) 5.0\r\nCVE-2009-3554 (AV:L/AC:L/Au:N/C:P/I:N/A:N) 2.1\r\nCVE-2010-0738 (AV:N/AC:L/Au:N/C:P/I:N/A:N) 5.0\r\nCVE-2010-1428 (AV:N/AC:L/Au:N/C:P/I:N/A:N) 5.0\r\nCVE-2010-1429 (AV:N/AC:L/Au:N/C:P/I:N/A:N) 5.0\r\nCVE-2011-1483 (AV:N/AC:L/Au:N/C:N/I:N/A:P) 5.0\r\nCVE-2011-2196 (AV:N/AC:M/Au:N/C:P/I:P/A:P) 6.8\r\nCVE-2011-4605 (AV:N/AC:L/Au:N/C:P/I:P/A:P) 7.5\r\nCVE-2011-4858 (AV:N/AC:L/Au:N/C:N/I:N/A:P) 5.0\r\nCVE-2012-3546 (AV:N/AC:M/Au:N/C:N/I:P/A:N) 4.3\r\n===========================================================\r\n Information on CVSS is documented\r\n in HP Customer Notice: HPSN-2008-002\r\n\r\nRESOLUTION\r\n\r\nHP has made the following hotfixes available to resolve the vulnerabilities\r\nfor NNMi v9.00 and v9.1X and NNMi SPIs of the same version.\r\n\r\nThese hotfixes also apply to the following products and can be applied to all\r\npatch levels:\r\n\r\nHP NNM iSPI for IP QA\r\nHP NNM iSPI for IP Telephony\r\nHP NNM SPI for IP Multicast\r\nHP NNM SPI for MPLS\r\n\r\nNNMi Version\r\n Operating System\r\n Hotfix\r\n\r\n9.00\r\n HP-UX, Linux, Solaris, and Windows.\r\n HF-NNMi-9.0xP5-JBoss-20130417\r\n\r\n9.10\r\n HP-UX, Linux, Solaris, and Windows.\r\n HF-NNMi-9.1xP5-JBoss-20130417\r\n\r\nFor issues about implementing the recommendations of this Security Bulletin,\r\ncontact normal HP Services support channel.\r\n\r\nPRODUCT SPECIFIC INFORMATION\r\n\r\nnone\r\n\r\nHISTORY\r\nVersion:1 (rev.1) - 24 July 2013 Initial release\r\n\r\nThird Party Security Patches: Third party security patches that are to be\r\ninstalled on systems running HP software products should be applied in\r\naccordance with the customer's patch management policy.\r\n\r\nSupport: For issues about implementing the recommendations of this Security\r\nBulletin, contact normal HP Services support channel. For other issues about\r\nthe content of this Security Bulletin, send e-mail to security-alert@hp.com.\r\n\r\nReport: To report a potential security vulnerability with any HP supported\r\nproduct, send Email to: security-alert@hp.com\r\n\r\nSubscribe: To initiate a subscription to receive future HP Security Bulletin\r\nalerts via Email:\r\nhttp://h41183.www4.hp.com/signup_alerts.php?jumpid=hpsc_secbulletins\r\n\r\nSecurity Bulletin Archive: A list of recently released Security Bulletins is\r\navailable here:\r\nhttps://h20564.www2.hp.com/portal/site/hpsc/public/kb/secBullArchive/\r\n\r\nSoftware Product Category: The Software Product Category is represented in\r\nthe title by the two characters following HPSB.\r\n\r\n3C = 3COM\r\n3P = 3rd Party Software\r\nGN = HP General Software\r\nHF = HP Hardware and Firmware\r\nMP = MPE/iX\r\nMU = Multi-Platform Software\r\nNS = NonStop Servers\r\nOV = OpenVMS\r\nPI = Printing and Imaging\r\nPV = ProCurve\r\nST = Storage Software\r\nTU = Tru64 UNIX\r\nUX = HP-UX\r\n\r\nCopyright 2013 Hewlett-Packard Development Company, L.P.\r\nHewlett-Packard Company shall not be liable for technical or editorial errors\r\nor omissions contained herein. The information provided is provided "as is"\r\nwithout warranty of any kind. To the extent permitted by law, neither HP or\r\nits affiliates, subcontractors or suppliers will be liable for\r\nincidental,special or consequential damages including downtime cost; lost\r\nprofits;damages relating to the procurement of substitute products or\r\nservices; or damages for loss of data, or software restoration. The\r\ninformation in this document is subject to change without notice.\r\nHewlett-Packard Company and the names of Hewlett-Packard products referenced\r\nherein are trademarks of Hewlett-Packard Company in the United States and\r\nother countries. Other product and company names mentioned herein may be\r\ntrademarks of their respective owners.\r\n\r\n-----BEGIN PGP SIGNATURE-----\r\nVersion: GnuPG v1.4.13 (GNU/Linux)\r\n\r\niEYEARECAAYFAlHwTu0ACgkQ4B86/C0qfVm/8wCgvFdIjDTPgIP9zGYg90aMN5TH\r\n0sAAnRaUZEG4q4G+exiXDOJkiWq1/br1\r\n=lkyS\r\n-----END PGP SIGNATURE-----\r\n", "edition": 1, "modified": "2013-07-29T00:00:00", "published": "2013-07-29T00:00:00", "id": "SECURITYVULNS:DOC:29650", "href": "https://vulners.com/securityvulns/SECURITYVULNS:DOC:29650", "title": "[security bulletin] HPSBMU02894 rev.1 - HP Network Node Manager I (NNMi) for HP-UX, Linux, Solaris, and Windows, Remote Denial of Service (DoS), Unauthorized Access, Execution of Arbitrary Code", "type": "securityvulns", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}, {"lastseen": "2018-08-31T11:09:52", "bulletinFamily": "software", "cvelist": ["CVE-2013-2351", "CVE-2010-1429", "CVE-2010-1428", "CVE-2007-5333", "CVE-2009-3554", "CVE-2011-2196", "CVE-2011-4605", "CVE-2011-1483", "CVE-2011-4858", "CVE-2012-3546", "CVE-2010-0738"], "description": "Unauthorized access, code execution, DoS.", "edition": 1, "modified": "2013-07-29T00:00:00", "published": "2013-07-29T00:00:00", "id": "SECURITYVULNS:VULN:13207", "href": "https://vulners.com/securityvulns/SECURITYVULNS:VULN:13207", "title": "HP Network Node Manager multiple security vulnerabilities", "type": "securityvulns", "cvss": {"score": 7.5, "vector": "AV:NETWORK/AC:LOW/Au:NONE/C:PARTIAL/I:PARTIAL/A:PARTIAL/"}}]}