<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wazi</title>
	<atom:link href="http://olex.openlogic.com/wazi/feed/" rel="self" type="application/rss+xml" />
	<link>http://olex.openlogic.com/wazi</link>
	<description>Open Source Articles, Tutorials and Licensing Information</description>
	<lastBuildDate>Mon, 30 Aug 2010 20:40:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>mod_python: More Than Just a CGI/WSGI Alternative</title>
		<link>http://olex.openlogic.com/wazi/2010/mod_python-more_than_just_a_cgi_wsgi_alternative/</link>
		<comments>http://olex.openlogic.com/wazi/2010/mod_python-more_than_just_a_cgi_wsgi_alternative/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 20:10:52 +0000</pubDate>
		<dc:creator>Jeremy Whitlock</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Mercurial]]></category>
		<category><![CDATA[mod_python]]></category>
		<category><![CDATA[OpenLDAP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[ViewVC]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/?p=53719</guid>
		<description><![CDATA[mod_python is more than just a CGI/WSGI alternative -- you can use it not only to serve Python-based applications that run faster than traditional CGI, but you can actually use exposed Apache APIs to write full-blown Apache modules using the Python language. In this tutorial we'll walk you through the process of creating a simple application using most of the features that mod_python delivers.]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/mod_python-more_than_just_a_cgi_wsgi_alternative/'>mod_python: More Than Just a CGI/WSGI Alternative</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fmod_python-more_than_just_a_cgi_wsgi_alternative%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fmod_python-more_than_just_a_cgi_wsgi_alternative%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Most people who know about <a href="https://olex.openlogic.com/packages/mod_python" target="_blank">mod_python</a> have run across it in situations when they needed to serve a <a href="https://olex.openlogic.com/packages/python" target="_blank">Python</a>-based application via <a href="https://olex.openlogic.com/packages/apache" target="_blank">Apache</a>, like <a href="https://olex.openlogic.com/packages/mercurial" target="_blank">Mercurial</a> or <a href="https://olex.openlogic.com/packages/viewvc" target="_blank">ViewVC</a>.  Actually, mod_python is more than just a <a title="CGI Wikipedia Page" href="http://en.wikipedia.org/wiki/Common_Gateway_Interface">CGI</a>/<a title="WSGI Wikipedia Page" href="http://en.wikipedia.org/wiki/Web_Server_Gateway_Interface" target="_blank">WSGI</a> alternative and is self described as &#8220;an Apache module that embeds a Python interpreter into the server.&#8221;  This means you can use mod_python not only to serve Python-based applications that run faster than traditional CGI, but you can actually use exposed Apache APIs to write full-blown Apache modules using the Python language.  mod_python also includes a number of useful tools, like session management for example, that you get access to as well.  That being said, let&#8217;s learn more about mod_python by creating a simple application using most of the features that mod_python delivers.</p>
<h3>mod_python features</h3>
<p>mod_python is actually a suite of tools.  Not only can it emulate a CGI environment and allow you to create Apache modules written in Python, but it also provides tooling for:</p>
<ul>
<li>CGI environment (emulated)</li>
<li>Access to Apache APIs, filters and handlers</li>
<li>Session management</li>
<li>Server-side includes</li>
<li>Python server pages (Similar to any technology allowing logic and presentation in the same file and evaluated on the server, like Java&#8217;s JSPs)</li>
</ul>
<p>As you can see, mod_python provides quite the tool-set to accommodate a very wide range of needs.  To showcase these features, we&#8217;re going to write a very simple application using as many mod_python features as are available.  We will then wrap up with using a mod_python authentication handler that uses your  Twitter credentials to authenticate yourself for your application.</p>
<h3>mod_python handlers</h3>
<p>Apache handles requests in phases and mod_python provides you with handlers that allow you to write a Python function that will be used by Apache to handle a phase.  So, if you wanted to have a Python-based authentication implementation for your SCM repository server in order to do fancy things like REST/SOAP/XML-RPC/etc to validate a user&#8217;s credentials, you could use Python and its <a title="PythonAuthenhandler" href="http://modpython.org/live/current/doc-html/dir-handlers-auh.html">PythonAuthenHandler</a> to implement such a thing.  To see this in practice, let&#8217;s get mod_python hooked up to Apache and using a very simple handler to give us the obligatory &#8220;Hello World!&#8221;</p>
<pre># Load the modules
LoadModule python_module   libexec/apache2/mod_python.so

&lt;Location /mod_python_article&gt;
    # Tell Apache that mod_python will handle this Location
    SetHandler mod_python

    # Tell mod_python which module to use for handling requests
    PythonHandler olex.publisher

    # Fix the Python path to be able to locate our application
    PythonPath "[r'/home/jwhitlock/tutorials/mod_python_article/src']+sys.path"
&lt;/Location&gt;</pre>
<p>The above Apache configuration snippet creates a uri base (mod_python_article) and tells Apache that mod_python will use the <a title="PythonHandler" href="http://modpython.org/live/current/doc-html/dir-handlers-ph.html">PythonHandler</a> handler, which is used to generate content and deliver it to the client.  We also told mod_python which Python module (olex.publisher) would be responsible for handling the request and where to find it using the <a title="PythonPath" href="http://modpython.org/live/current/doc-html/dir-other-pp.html">PythonPath</a> mod_python directive. (Of course, you might need to update your path to be where you extract the sample code to.)</p>
<pre>from mod_python import apache

def handler(req):
    """ This is the controller function that will take a request and writes out the content. """
    publish(req, 'Hello from mod_python!', type='text/plain')

    return apache.OK

# handler

def publish(req, content, type='text/html'):
    """ Helper function that removes some boilerplate when writing content. """
    req.content_type = '%s; charset=UTF8' % type
    req.write(content, 0)

# publish</pre>
<p>mod_python handler implementations will all accept a single argument, an Apache <a title="Request Object" href="http://modpython.org/live/current/doc-html/pyapi-mprequest.html">request object</a>.  If you were to restart/start Apache and visit http://hostname/mod_python_article, you&#8217;d see &#8220;Hello from mod_python!&#8221; on your screen.  While this is a very simple example, you should have a good idea of how this will work.  When we need to do something via mod_python, all we have to do is write a handler and hook it up in Apache by registering the handler.  With the wiring taken care of, let&#8217;s move on to the next feature: <a title="Session Management" href="http://modpython.org/live/current/doc-html/pyapi-sess.html">Session Management</a>.</p>
<h3>Session Management</h3>
<p>What good would any web-based application be without some session management?  Well thankfully, mod_python provides you with not only generic session management system that will work out of the box but it also gives you the necessary APIs to write your own.  (We will only be demonstrating the built-in session management at this time.)  With session management, we can only prompt you for credentials when you&#8217;ve not already logged in and only show you information about your profile if you&#8217;ve logged in.  Pretty standard stuff, but without an example it might not be useful.  So, below is an example of session management in our application.</p>
<pre>from mod_python import apache, Session

def handler(req):
    """ This is the controller function that will take a request and delegate the
    request to some Python function. """
    # Create/Get the session
    session = Session.Session(req)

    if session.is_new():
        visit_token = 'for the first time'
    else:
        visit_token = 'again'

    # Save the session
    session.save()

    publish(req, 'Hello, %s, from mod_python!' % visit_token, type='text/plain')

    return apache.OK

# handler

def publish(req, content, type='text/html'):
    """ Takes the content and writes it to the client. """
    req.content_type = '%s; charset=UTF8' % type
    req.write(content, 0)

# publish</pre>
<p>With the code above, your first visit should produce &#8220;Hello, for the first time, from mod_python!&#8221; for the output, while on subsequent visits (like by refreshing the page for now) you should see &#8220;Hello, again, from mod_python.&#8221;  What we&#8217;ll do after we&#8217;ve designed a login page, in the next section, is have people without a session get prompted for a name of their session so that they can then be redirected to their session information page.  Now that we have session management scaffolding in place, let&#8217;s wrap a UI around this and see the end result.  To do this, we&#8217;re going to use mod_python&#8217;s <a title="Python Server Pages" href="http://modpython.org/live/current/doc-html/pyapi-psp.html">Python Server Pages</a>.</p>
<h3>Python Server Pages</h3>
<p>mod_python&#8217;s Python Server Pages (PSP) are very similar to Java Server Pages in that you have a mix of business logic and presentation mixed together.  Of course you can break this out into a template file for the presentation and a function that populates the template with tokens, but in the end the concept isn&#8217;t new.  For our example, we&#8217;ll use PSPs to generate a simple login page that is displayed when you do not have a session, or you have a session and haven&#8217;t named it yet.  Here is an example of the PSP that is used for the login page:</p>
<pre>&lt;!-- Below is a PSP hack to avoid mod_python using 'text/plain' for the content type. --&gt;
&lt;% req.content_type = 'text/html' %&gt;

&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
  &lt;title&gt;Session Information - Login&lt;/title&gt;
  &lt;!-- The stylesheet for this page is omitted here but is available in the download --&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;div id="box"&gt;
    &lt;h1 class="header"&gt;Session Information - Login&lt;/h1&gt;
    &lt;%=error%&gt;
    &lt;form id="login_form" name="login_form" method="POST" action="/mod_python_article"&gt;
      &lt;ol&gt;
        &lt;li&gt;
          &lt;label for="session_name"&gt;Session name:&lt;/label&gt;
          &lt;input id="session_name" name="session_name" type="text" value="&lt;%=session_name%&gt;"/&gt;
        &lt;/li&gt;
        &lt;li&gt;
          &lt;button id="create" name="create"&gt;Create Session&lt;/button&gt;
        &lt;/li&gt;
      &lt;/ol&gt;
    &lt;/form&gt;
  &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>There isn&#8217;t much in this post other than the hack to fix a bug in mod_python, and you&#8217;ll also see a few PSP tags where we&#8217;ll put the content of an error into the page and the content of the session name into the form.  (These are denoted by the &lt;%=error%&gt; and &lt;%=session_name%&gt; texts respectively.)  A better example is in the PSP template used to display the session information (in the download).  Of course, it might make sense to know how to tell mod_python how to find a template and how to populate it with variables, like error and session_name above.  Here&#8217;s an example of how to create a template from a file and feed data to it:</p>
<pre>data = {'error': '', 'session_name': '',}
template = psp.PSP(req, filename='create_session.tmpl')

template.run(data)</pre>
<p>At this point, you really have seen an example of all parts of mod_python.  Here&#8217;s a summary of the topics we&#8217;ve covered:</p>
<ul>
<li>We&#8217;ve see how you can tell mod_python to use a publisher to publish content to the web using mod-python</li>
<li>We&#8217;ve seen how to create a session and stuff information into it</li>
<li>We&#8217;ve seen how to author a Python Server Page, load its contents from a file and give data to it</li>
</ul>
<p>As promised, there is one more nifty piece of mod_python that we want to show you: how to use mod_python to write a custom authentication handler for Apache.</p>
<h3>mod_python Authentication Handler</h3>
<p>Have you ever wanted to have Apache authenticate you in a way that it didn&#8217;t support?  This is often the case in corporate worlds where people use directory systems like Active Directory and <a href="https://olex.openlogic.com/packages/openldap">OpenLDAP</a> for user/group/etc. management.  Well, while Apache does have LDAP support available, what if you wanted to authenticate to a system that Apache was unaware of, like authenticating to a third-party application?  Well, below is an example of how you can use Twitter to authenticate users of your <a href="https://olex.openlogic.com/packages/subversion">Subversion</a> repository, starting with the Apache configuration and ending with the mod_python handler:</p>
<pre>&lt;Location /svn/repos&gt;
  # Subversion configuration
  ...

  # Authentication setup
  AuthType Basic
  AuthName "Subversion Repository"

  # Require a valid user
  Require valid-user

  # Make sure to use our authentication
  AuthBasicAuthoritative off

  # mod_python setup
  PythonAuthenHandler olex.twitter_authn
  PythonPath "sys.path+['/home/jwhitlock/tutorials/mod_python_article/src']"
&lt;/Location&gt;</pre>
<p>And below is the mod_python handler:</p>
<pre>from mod_python import apache

# python-twitter is required for this example (http://code.google.com/p/python-twitter/)
import sys, twitter, urllib2

def authenhandler(req):
    """ Authenticates the user based on their Twitter credentials. """
    # As documented in mod_python, before you can successfully call req.user you must call
    # req.get_basic_auth_pw().
    # http://modpython.org/live/current/doc-html/pyapi-mprequest-mem.html#l2h-124
    password = req.get_basic_auth_pw()
    username = req.user
    api = twitter.Api(username=username, password=password)
    response = apache.OK

    # Since there is no API to authenticate a user, other than writing one
    # let's just call the function that returns the least data
    try:
        api.GetDirectMessages()
    except urllib2.HTTPError, e:
	# There are many Twitter failure codes that mean more than authentication
        # failure but for brevity, a failure means failed authentication.
        response = apache.HTTP_UNAUTHORIZED

        req.log_error('[authn] Failure to authenticate: %s' % str(e))
    except twitter.TwitterError, e:
        response = apache.HTTP_UNAUTHORIZED
    except:
        import traceback

        exception = sys.exc_info()
        traceLines = traceback.format_exception(exception[0], exception[1], exception[2])

	req.log_error('[authn] Unexpected error authenticating to Twitter')

        for line in traceLines:
            req.log_error('  %s' % line)

	return apache.HTTP_INTERNAL_SERVER_ERROR

    return response</pre>
<h3>Summary</h3>
<p>mod_python is an excellent way for people knowledgeable in the Python programming language to secure Apache-served applications/content and to even write your own web-based applications.  Due to time constraints the above code samples are not 100% complete, so we&#8217;ve included a <a href="http://olex.openlogic.com/wazi/wp-content/uploads/2010/08/mod_python_wazi_article.tar.gz">tar file</a> with all of the source code above as well as all of the missing parts complete with documentation on how to run the examples.</p>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/mod_python-more_than_just_a_cgi_wsgi_alternative/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Choosing the Right Java Web Development Framework</title>
		<link>http://olex.openlogic.com/wazi/2010/choosing-the-right-java-web-development-framework/</link>
		<comments>http://olex.openlogic.com/wazi/2010/choosing-the-right-java-web-development-framework/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 16:10:51 +0000</pubDate>
		<dc:creator>Kelby Zorgdrager</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Grails]]></category>
		<category><![CDATA[JBoss Seam]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[MyFaces]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[Spring MVC]]></category>
		<category><![CDATA[Stripes]]></category>
		<category><![CDATA[Struts]]></category>
		<category><![CDATA[Tapestry]]></category>
		<category><![CDATA[Wicket]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/?p=59537</guid>
		<description><![CDATA[Open source application development frameworks have increased in both popularity and number over the past decade. Today, developers can choose from a wide range of frameworks, each of which offers a unique combination of features, limitations, and benefits. But choosing the right framework can be a challenge. This article offers advice on how to approach the evaluation process and pick the framework that best meets your needs.]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/choosing-the-right-java-web-development-framework/'>Choosing the Right Java Web Development Framework</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fchoosing-the-right-java-web-development-framework%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fchoosing-the-right-java-web-development-framework%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><em>Ed. Note: This article was originally published in March of 2009. It has been reprinted here because it provides excellent guidelines for evaluating and selecting the right Java web development framework. However, readers should be aware that some details about specific frameworks have changed in the year and a half since it was first published.</em></p>
<p>Open source application development frameworks have increased in both popularity and number over the past decade. Today, developers can choose from a wide range of frameworks, each of which offers a unique combination of features, limitations, and benefits.</p>
<p>But choosing the right framework can be a challenge.</p>
<p>Web application development frameworks have become very popular in the last several years. <a href="http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks" target="_blank">Wikipedia lists over 85 web application frameworks</a>, with a large table comparing features.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/web-frameworks-by-language.png" class="aligncenter" width="600" height="199"></p>
<p>This article covers some of the factors you should consider when evaluating and selecting a framework for building a Java web application. However, this is never a simple process and many different criteria can and should be considered. In other words, you will want to perform your own additional research.</p>
<p>When it comes to adopting a new technology, many of the decision points are organizationally &mdash; not developer &mdash; driven. When an organization intends to adopt an application development framework, it is typically looking to accomplish three things:</p>
<ul>
<li>Address the complexities of some lower level application architecture</li>
<li>Reduce the amount of code developers have to write (aka &#8220;productivity&#8221;)</li>
<li>Allow developers to focus on &#8220;business logic&#8221;</li>
</ul>
<p>As you begin the evaluation and selection process, beware of people giving easy, emphatic answers. Your development environment and goals are unique. Use this article as a starting point and a general guide, and you should be able to make a decision that helps you increase productivity and decrease pain.</p>
<h3>Background</h3>
<p>First, we need to define the term <em>application development framework</em> and provide a little history. Application development frameworks are not new. They originally started with user interface (UI) development and have expanded into other areas. Just defining the term can be a little squishy. However, application development frameworks typically provide:</p>
<ul>
<li>A standard structure or design that allows the developer to create an application, without having to learn or understand complex low-level APIs.</li>
<li>Some sort of programming paradigm or model. For example, for Java, Java EE is a great example of a framework that defines a paradigm.</li>
</ul>
<p>Next, we need to define the types of application development frameworks currently available. There are, in general, three primary types of frameworks:</p>
<ul>
<li>&#8220;Application Frameworks,&#8221; which typically focus on the low-level details, abstracting the developer from an operating system or from a programming platform (e.g. Microsoft Foundation Classes).</li>
<li>&#8220;Enterprise Architecture Frameworks,&#8221; which are at the other end of the spectrum, are used to govern or dictate the design of an enterprise system. An Enterprise Architecture Framework encompasses multiple different servers and software applications, allows for scalability, and supports &#8220;ility&#8221; constraints (e.g. Java EE, TOGAF).</li>
<li>&#8220;Web Application Frameworks,&#8221; which fit &#8220;right in the middle.&#8221; Web application frameworks typically govern the overall architectural design, similar to Enterprise Architecture frameworks, but also are typically an extension of an application framework, albeit focused on a specific type of application development (web applications).</li>
</ul>
<p>Zeroing in on web application frameworks, there are two broad classifications to be aware of:</p>
<ul>
<li>Server-side frameworks &#8211; focused on enabling back-end developers to create robust, scalable web applications (e.g., with Java, JSP with servlets; PHP is best known for server-side, and for .NET, ASP .NET).</li>
<li>Client-side frameworks &#8211; focused on addressing the complexities and incompatibilities across browsers and user interactions.</li>
</ul>
<h3>Java Web Development Frameworks</h3>
<p>So what&#8217;s the current landscape? Basically, there are two large conceptual categories that you need to be familiar with: &#8220;Full-stack&#8221; frameworks and Model View Controller (MVC) frameworks.</p>
<p>Full-stack frameworks address back-end web development for a web app from start to finish. They have some infrastructure or component that addresses the common MVC paradigm plus components that address interacting with databases, possibly in a create-update-and-delete (CRUD) fashion. They interact with message buses, and with naming and directory servers like LDAP.</p>
<ul>
<li>ADVANTAGES: Full-stack frameworks have a complete stack, so, as a developer, you don&#8217;t have to worry about how to integrate with a database, or how to integrate with a messaging system. It&#8217;s one stack of libraries that all work together. One nice &#8220;side-effect&#8221; of that is that as a developer, you don&#8217;t have to write the glue code to connect the &#8220;web tier&#8221; to the &#8220;enterprise tier.&#8221;</li>
<li>DISADVANTAGES: Certain frameworks suggest or encourage certain technologies, which means you lose some plugability. For some developers, this is a real disadvantage.</li>
</ul>
<p>MVC frameworks are typically the most popular frameworks in the Java web development world and are structured around the framework of a re-usable web application. Re-usability is discussed with the model, the business domain objects, or the controller that handles to request processing.</p>
<ul>
<li>ADVANTAGES: MVC frameworks are typically referred to as lightweight frameworks, meaning there&#8217;s less &#8220;baggage&#8221; and fewer connections with enterprise systems that you may or may not take advantage of.</li>
<li>DISADVANTAGE: You do generally have to write the glue code to do CRUD operations.</li>
</ul>
<p>In summary, both obviously have advantages and disadvantages, and there are too many to list them all. But at a high level, MVC frameworks are typically the most popular frameworks, so we’ll focus on those in our selection process below. However, should you decide to evaluate or select a full-stack framework, you’ll want to consider popular options like <a href="https://olex.openlogic.com/packages/jboss-seam">JBoss Seam</a> and <a href="https://olex.openlogic.com/packages/spring">Spring</a> (though it is debatable if Spring should be classified as a full-stack framework).</p>
<h3>Understanding the MVC Paradigm</h3>
<p>MVC is a design paradigm or design pattern that grew out of user interface development. Some people attribute it to Small Talk UI. At any rate, the real focus is to try to figure out how to structure a user interface application around good object oriented programming (OOPs) concepts like encapsulation, cohesion, loose couplings, and abstractions. All of these object oriented programming concepts can create re-usability.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/mvc-diagram.png" class="aligncenter" width="600" height="360"></p>
<p>If we were to dissect a user interface in the MVC world, in general we’d find three components:</p>
<p>1. The <strong>view</strong> is responsible for rendering the UI and is directly tied to a model for the state data of the UI. More specifically, as the view renders itself, it calls out to the model and gets back information from the model, so that it could draw a check-box either as a selected check-box or an unselected check-box, depending on the model structure.</p>
<p>2. The <strong>model</strong> contains the state data for the UI and supplies information to the view as requested.</p>
<p>3. Depending on the MVC paradigm, the <strong>controller</strong> functions as a traffic cop to allow the interactions that are triggered through the UI to propagate through the model. So, if somebody selects a check-box, that selection is going to go through a controller, and that controller is going to (hopefully) update the model. Then, the model notifies the view and the view redraws itself.</p>
<p>Of course, there are many ways an MVC architecture can be structured. In the interests of simplicity, we will not cover that information here. However, there are two main kinds of competing architectures or ideas on how an MVC framework should be implemented, and they are very important in making your decision. The two types of MVC frameworks that you will encounter are:</p>
<ul>
<li>Action-based (aka Push-based MVC) frameworks are the most common partially because they&#8217;ve been around longer (e.g. <a href="https://olex.openlogic.com/packages/struts">Struts</a>). The idea is that when a request comes from a web browser and goes to a web server, there is a request handler that functions as a controller. That request handler takes the request data, puts it into some type of model, and that model then pushes that to the view &mdash; typically a JSP. Then, the JSP takes the model data and renders itself. Typically, it&#8217;s easy to understand and a very straight-forward process.</li>
<li>Component-based (aka Pull-based MVC) frameworks focus on rich UI development. They&#8217;ve moved away from the concept of request-processing a little bit, into view generation or view rendering. Included is a nice UI component set that creates re-usability within the application. Three of most common ones are <a href="https://olex.openlogic.com/packages/jsf">JSF</a>, <a href="https://olex.openlogic.com/packages/wicket">Wicket</a>, and <a href="https://olex.openlogic.com/packages/tapestry">Tapestry</a>. With Component-based MVC frameworks, it is the view&#8217;s responsibility to pull in data from potentially multiple controllers and render itself. Instead of having the controller give all the appropriate data, the view can pull in all the data from the appropriate controllers. There is still a model, and the model is still generally represented as a Java object. The model still could be a composition of objects; the difference is how the view accesses the information.</li>
</ul>
<h3>Comparison of Six Popular MVC Frameworks </h3>
<p>We’ve selected six of the most popular MVC frameworks to compare – three action-based and three component-based.  You may wish to evaluate different options, but the evaluation process outlined below will help you determine the best framework for your needs regardless of the options you consider.</p>
<p><strong>The action-based frameworks we’ll compare are:</strong></p>
<ul>
<li><a href="https://olex.openlogic.com/packages/struts">Struts 2</a> is sometimes called &#8220;the evolution of the Struts framework.&#8221; The Struts framework was originally popularized back in the late 1990s and early 2000s, and Struts 1 is still regularly used in enterprises. Struts 2 was released in February 2007 and is a redeveloped implementation of Struts 1, based on a framework called WebWork.</li>
<li><a href="https://olex.openlogic.com/packages/spring">Spring MVC</a> 2.5 is the MVC component of the MVC Framework, built on top of the Spring Framework. It adds MVC capabilities, which means that you can leverage Spring features like inversion and control and dependence injection. It has organizational support from SpringSource which means good training and documentation, and a large supporting community.</li>
<li><a href="https://olex.openlogic.com/packages/stripes">Stripes 1.5</a> has a big grass roots following but no organizational backing.</li>
</ul>
<p><strong>The component-based frameworks we’ll compare are:</strong></p>
<ul>
<li><a href="https://olex.openlogic.com/packages/jsf">Java Server Faces (JSF)</a> / <a href="https://olex.openlogic.com/packages/myfaces">MyFaces 1.2</a>, probably the most popular implementation of the JSF specification, is the only framework supported by a Java community process specification. This gives multiple vendors the opportunity to implement JSF and, in turn, gives adopters many different vendor choices. However, many people believe that Sun dictates how the technology is implemented, so they feel there is a big marketing machine trying to push a standard.</li>
<li><a href="https://olex.openlogic.com/packages/wicket">Wicket</a>, sponsored by the Apache Foundation, is a web application development framework for Java developers, which means it&#8217;s focused on writing web applications in Java versus writing web applications in something like HTML. It is very Java focused.</li>
<li><a href="https://olex.openlogic.com/packages/tapestry">Tapestry 5</a>, also a part of the Apache Foundation, it is a complete rewrite of Tapestry 4 that attempts to simplify some of the cumbersome features found in Tapestry 4.</li>
</ul>
<h3>Criteria for Choosing a Framework</h3>
<p>There are many different opinions on how to choose the right framework.  Approaches used to select frameworks include:</p>
<ul>
<li>The Popularity Formula &#8211; How many Google searches? How many jobs on Dice?</li>
<li>The Community Activity Formula &#8211; When was the last commit or release? How active is the mailing list?</li>
<li>The Learning Formula &#8211; How many books? How&#8217;s the documentation?</li>
<li>The Architect Formula &#8211; How clean are the results? How well does it scale?</li>
<li>The Pragmatist Formula &#8211; How hard is it to build a prototype?</li>
</ul>
<p>Since none of these approaches provides a complete picture, we decided to use them all to evaluate the six frameworks outlined above.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/web-framework-formula.png" class="aligncenter" width="600" height="332"></p>
<p><strong>Popularity</strong>. If you choose a framework strictly based on popularity, you&#8217;ll pick JSF. But, consider that Sun, IBM, and Oracle have invested time and marketing dollars to make JSF popular, so popularity here is skewed by marketing budgets.</p>
<p><strong>Community</strong>. If you choose by active community you might base your decision on frequent releases, or the most current release, or the most active mailing list. If your decision was based on the most current release, it would be Stripes. Obviously, in some cases, you might find a recent release simply because of coincidence.</p>
<p><strong>Learning</strong>. In general, the availability of documentation is common, so perhaps you might narrow down this category to the number of books written on the subject. If that is your differentiator, then again you&#8217;ll choose JSF (based on Amazon numbers). But then again, it&#8217;s possible that JSF has more books because it&#8217;s harder to understand. Choosing, then, by larger numbers of books might not be a great thing to do.</p>
<p><strong>Architecture</strong>. Looking for Plain Old Java Objects (POJO) is one way to examine the various frameworks. (POJO, used to be &#8220;JavaBeans&#8221; but the Java community does not like the term because of the enterprise JavaBeans world.) There is constant debate on how much imposition a framework should have on one&#8217;s architecture. The trend in the last 3-5 years is to separate the application from the framework by using some POJO structure. Some are POJO-based, some &#8220;hedge their bets&#8221; and let you use POJO with annotations or create a subclass of one of the pre-built classes already included. It&#8217;s all over the board, so it would be pretty hard to decide based on the cleanest architecture.</p>
<p><strong>Pragmatist</strong>. One of the major reasons for choosing an application development framework is to reduce the amount of code you have to write, or to increase the productivity of the development team. In that case, you should first and foremost be using &#8220;The Pragmatist Formula&#8221; as well as the other criteria. Unfortunately, measuring productivity of a development team is a crap-shoot. If someone could figure that out conclusively, they would be very wealthy! Different developers code at different speeds, some developers learn really quickly, others take longer but really master it completely once they get it. Ultimately, it&#8217;s very hard to measure accurately.</p>
<h3>The Productivity Formula</h3>
<p>The real motivation for using an application framework is simplified development. While not always the case, simplified development usually translates into increased developer productivity. Therefore, we suggest choosing your framework with productivity in mind instead of using the five criteria mentioned above. Here are some key elements that could be used when making a productivity-focused decision.</p>
<p>When it comes to rapid application development (RAD) consider measuring productivity in terms of support for:</p>
<ul>
<li>Convention over configuration</li>
<li>Scaffolding / CRUD</li>
<li>Inversion of Control, also known as Dependency Injection</li>
</ul>
<p>And, yes, it would certainly be possible to add other items here to measure, but the point is to narrow down the list to have a succinct discussion.</p>
<p>When it comes to rich internet application development (RIA), consider measuring productivity in terms of support for:</p>
<ul>
<li>RESTful URL structure</li>
<li>Built-in Client side validation or some JavaScript to make the application more robust</li>
<li>Built-in AJAX support</li>
</ul>
<h4>Understanding Variables of RAD: Three Trends within the RAD World</h4>
<p><strong>Convention over Configuration.</strong> The idea here is that as a Java developer &mdash; historically, at least &mdash; you spend 50%-60% of your development effort on configuration. Too much time is (or at least used to be) devoted to dealing with XML files, property files&#8230; lots of different pieces. It&#8217;s been said that &#8220;configuration is the demise of Java.&#8221; The hope has been to move some of that configuration burden off of the developer and let the platform be smart enough to adopt some convention. As long as the developer adopts best-practices or coding conventions the framework can figure out what&#8217;s being done.</p>
<p><strong>Scaffolding</strong>. This generates a boilerplate code, the views, the controllers, the CRUD operations &mdash; in other words, a first rough pass at taking the developer&#8217;s database design and mapping to the web application. Scaffolding has become popular due to the RAILS movement.</p>
<p><strong>Inversion of Control</strong>. In the Java world, specifically in the Java EE world, there is the mechanism called the Java Naming and Directory Interfaces (JNDI) used to look up internal or external services. These could be an enterprise JavaBean, a database, or a message queue. Instead of the developer doing all those extra steps to look up internal or external services, the framework does the work and hands to the component or object a reference to that external service. In other words, the service look-up responsibility is delegated to the framework.</p>
<h4>Understanding Variables of RIA</h4>
<p><strong>RESTful URLs.</strong> In the real world, there are many reasons why people adopt RESTful URLs. The most prominent reason is search engine optimization (SEO) because it&#8217;s theoretically easier for a search engine to traverse your website and content and understand the categorization and hierarchy. So, a framework that helps create RESTful URLs is an immediate benefit to sales and marketing. Will the framework generate the client-side validation? Will it generate the JavaScript out of the developer&#8217;s view? Will it adhere to the validation that the developer defined? As a Java developer, you don&#8217;t want to fight with a bunch of different JavaScript variations. So, what kind of JavaScript help is included? This dovetails into Asynchronous JavaScript + XML (AJAX) or background processing within the web.</p>
<p><strong>Client-side Validation</strong>. Will the framework generate the client-side validation? Will it generate the JavaScript out of the developer&#8217;s view? Will it adhere to the validation that the developer defined? As a Java developer, you don&#8217;t want to fight with a bunch of different JavaScript variations. So, what kind of JavaScript help is included?</p>
<p><strong>Asynchronous JavaScript + XML (AJAX)</strong>. AJAX provides background processing within the web. In this article we&#8217;re not looking at the formal RIA frameworks like Flex and Silverlight, but rather focusing just on the JavaScript and Ajax world. With Ajax, web applications can retrieve data asynchronously in the background without interfering with the display and behavior of the existing page. Ajax helps the developer avoid having to write background processing manually.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/action-based-RAD-comparison.png" class="aligncenter" width="600" height="383"></p>
<p>We categorized Struts 2 as a Configuration framework because if you look at the number of XML artifacts that you have to create to configure the framework (approximately 2-7 files) it&#8217;s very configuration-heavy. Read through the Struts 2 documentation to make your own decision whether it&#8217;s a Convention or Configuration framework. Stripes, however, is on the opposite end of the spectrum. It professes that it&#8217;s a very Convention over Configuration framework. It leverages not only coding conventions but also class reflection to help it understand what the different components are of the application. There is only one configuration file: web.xml. In the middle is Spring MVC, which started off as a Configuration framework but with every release it has moved more and more towards Convention. It currently has probably just two configuration, and in Spring 3 it is supposed to be even less.</p>
<p>One of the trickiest things with a web application is the question, &#8220;How do I deal with navigation paths?&#8221; In other words, when a request comes in and I process the request, where does the request go? What&#8217;s the target? For navigation, basically you&#8217;re going to end up with either XML or Java.</p>
<p>None of the RAD-based frameworks support scaffolding or basic CRUD operations, which means the developer has to go get a third party adapter or plug-in to create that functionality. There is one third party plug-in for Spring MVC that will do both.</p>
<p>In the Java world, Inversion of Control is a big trend in RAD. All three of the frameworks support it. And they also support annotations &mdash; the metadata to make development easier.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/action-based-RIA-comparison.png" class="aligncenter" width="600" height="206"></p>
<p>Not a single framework today supports RESTful URLs. For Struts, a plug-in is being developed. In Stripes, there are several different &#8220;ActionResolvers&#8221; that help you, and in Spring there is an annotation that helps.</p>
<p>There is some client-side validation supported. Struts has some automatic generation of client-side validation or client-side JavaScript based on its validator framework. And both Spring MVC and Stripes support client-side validation. When the developer creates the JSP, they use the onBlur or onClick or onSubmit, write some JavaScript code, and do the validation, but it&#8217;s typically a manual effort.</p>
<p>And none of the frameworks out-of-the-box will generate AJAX for the developer. The developer has to make the AJAX, the asynchronous calls, the XHR objects, and the interactions</p>
<p>So, none of the three really hold up to what we&#8217;re interested in from a productivity standpoint.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/component-based-RAD-compare.png" class="aligncenter" width="600" height="362"></p>
<p>Using the same comparison criteria, only JSF is configuration heavy, and of the two Configuration frameworks, Wicket and Tapestry, Tapestry has only one configuration file. Navigation flow &mdash; where does a request end up, and how easy or hard is it to configure? &mdash; was looked at, and only JSF adopts an XML-based structure. Therefore, for both Wicket and Tapestry, the controller is going to govern where the target is located and what the target looks like.</p>
<p>For scaffolding, only one supports out-of-the-box scaffolding: Tapestry. When compared to <a href="https://olex.openlogic.com/packages/ruby">Ruby</a> on <a href="https://olex.openlogic.com/packages/rails">Rails</a> or <a href="https://olex.openlogic.com/packages/grails">Grails</a>, Tapestry 5 scaffolding allows you to take a Java object and annotate the object. It can be mapped to a view with a single tag &mdash; a tag and a tag library. The developer doesn&#8217;t have to generate the input text fields or the input submit fields or the drop-downs for the different states. The point is that is does NOT do the full scaffolding that you would find in Ruby on Rails.</p>
<p>If the developer spends a lot of money and is using IBM&#8217;s WebSphere or Oracle&#8217;s JDeveloper, there are some scaffolding capabilities in both of those tools to help minimize the amount of UI code that has to be created.</p>
<p>There&#8217;s no out-of-the-box support for CRUD.</p>
<p>Two of the three support Inversion of Control: JSF and Tapestry 5. Wicket does not directly, but you can layer Wicket on top of Spring to get some Inversion of Control. Both JSF and Tapestry 5 support annotations while Wicket, out-of-the-box, does not.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/component-based-RIA-compare.png" width="600" height="206"></p>
<p>Evaluating for REST support, only Tapestry 5 supports it out-of-the-box. And Client-side validation &mdash; automatic generation of JavaScript &mdash; is only supported by Tapestry 5 as well. And finally, if the developer has to write the XHR objects or the JavaScript, both Wicket and Tapestry 5 support automatic AJAX generation. Wicket is a very event-driven framework, so for the developer to implement an AJAX callback within Wicket it is straight-forward. It looks and feels like implementing a JavaScript callback, onBlur, onSubmit, done in Java code. The message signatures look very much like the method signatures in JavaScript.</p>
<h3>And the &#8220;Winner&#8221; is&#8230;?</h3>
<p>Choosing a winner is obviously subjective. It&#8217;s certainly possible to use all of the various formulas discussed above: popularity, community, learning, and architecture, plus pragmatically looking at RAD and RIA. The chart below, then, is based purely on numeric ranking. The lower number is best.</p>
<p>For Popularity, JSF is ranked first.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/best-java-web-dev-framework.png" width="600" height="382"></p>
<p>Note: For RAD and RIA, the ranking is 1st, 2nd, and 3rd for Action-Based, and then again for Component-based, so they&#8217;re ranked twice. Therefore, Stripes is ranked as more productive under Action-based RAD, though it&#8217;s only more productive because it supports more of the evaluation criteria, and Spring MVC is better from a RIA perspective because it supports more of the capabilities that were identified. On the Component-based side, Tapestry supports more of the RAD capabilities for both RAD and RIA.</p>
<p>So, in conclusion, obviously the list of frameworks we evaluated is not comprehensive. You may want to add to the list or take things away. It depends very much on the type of web application that you intend to build and what features and functionality you are looking for. And, to be clear, in the table above, Tapestry comes out as the winner, but in no way does this suggest some sort of absolute winner. Nor is JSF the biggest loser.</p>
<h3>Other Considerations</h3>
<p>There are other criteria that you may very well want to consider. Licensing is one. In this case, every single framework supports the <a href="https://olex.openlogic.com/licenses/apache-2_0-license">Apache 2 license</a>, which is very good for the developer community.</p>
<p>They all support Java 1.5 except for Spring MVC, which utilizes Java 1.4. This may not be an issue if your organization only has 1.4.</p>
<p><img src="http://olex.openlogic.com/wazi/wp-content/uploads/2010/07/other-considerations.png" width="600" height="296"></p>
<p>Most of the frameworks support Spring, so typically you can layer your framework on top of Spring. There&#8217;s some debate and discussion on whether you can get Spring and Wicket to work nicely together, hence the question mark here.</p>
<p>JSF support is uneven, but all of the frameworks support a validation mechanism. You could also evaluate whether the framework supports JPA, or EJB, or has a templating engine.</p>
<p><strong>A Note about Scaffolding</strong><br />
If you truly want to get that scaffolding functionality with generation of the UIs or the views, and generation of the controllers, models, and CRUD operations, the first thing you probably have to do is move away from an MVC and into a full-stack implementation. Seam, for example, has a full-stack implementation. The challenge with SEAM is that it is really focused on Java EE development, and if you don&#8217;t like Java EE that&#8217;s not so great for you. More commonly, if you want the full scaffolding support, you&#8217;ll use a dynamic language in a dynamic language framework like Ruby on Rails or Grails. The point is that if you want the full-stack capability interacting with a database you have to move beyond a framework that is just structured around re-usability of the model view and controller.</p>
<p>So&#8230; that&#8217;s how things stack up!</p>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/choosing-the-right-java-web-development-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Solaris 10 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-5/</link>
		<comments>http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-5/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-5/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle Solaris 8, 9, and 10 allows local users to affect confidentiality and integrity via unknown vectors....

CVE Identifier: CVE-2010-2382
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-5/'>Solaris 10 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsolaris-10-and-prior-low-5%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsolaris-10-and-prior-low-5%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Solaris 10 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle Solaris 8, 9, and 10 allows local users to affect confidentiality and integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2382" target="_blank">CVE-2010-2382</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fusion Middleware 10.1.4.0.1 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low-2/</link>
		<comments>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[fusion_middleware]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low-2/</guid>
		<description><![CDATA[Unspecified vulnerability in the Application Server Control component in Oracle Fusion Middleware 10.1.2.3 and 10.1.4.0.1 allows remote authenticated users to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-2381
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low-2/'>Fusion Middleware 10.1.4.0.1 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffusion-middleware-10-1-4-0-1-and-prior-low-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffusion-middleware-10-1-4-0-1-and-prior-low-2%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Fusion Middleware 10.1.4.0.1 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Application Server Control component in Oracle Fusion Middleware 10.1.2.3 and 10.1.4.0.1 allows remote authenticated users to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2381" target="_blank">CVE-2010-2381</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peoplesoft And Jdedwards Suite Scm 9.1 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-scm-9-1-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-scm-9-1-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[peoplesoft_and_jdedwards_suite_scm]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-scm-9-1-and-prior-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the PeopleSoft Enterprise FSCM component in Oracle PeopleSoft and JDEdwards Suite SCM 8.9 Bundle #37, SCM 9.0 Bundle #30, and SCM 9.1 Bundle #4 allows local users to affect confidentiality, integrity, and availability via unknown vectors....

CVE Identifier: CVE-2010-2380
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-scm-9-1-and-prior-medium/'>Peoplesoft And Jdedwards Suite Scm 9.1 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fpeoplesoft-and-jdedwards-suite-scm-9-1-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fpeoplesoft-and-jdedwards-suite-scm-9-1-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Peoplesoft And Jdedwards Suite Scm 9.1 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the PeopleSoft Enterprise FSCM component in Oracle PeopleSoft and JDEdwards Suite SCM 8.9 Bundle #37, SCM 9.0 Bundle #30, and SCM 9.1 Bundle #4 allows local users to affect confidentiality, integrity, and availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2380" target="_blank">CVE-2010-2380</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-scm-9-1-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peoplesoft And Jdedwards Suite Hcm 9.1 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-hcm-9-1-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-hcm-9-1-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[peoplesoft_and_jdedwards_suite_hcm]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-hcm-9-1-and-prior-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the PeopleSoft Enterprise HCM - Time &#038; Labor component in Oracle PeopleSoft and JDEdwards Suite HCM 9.0 Bundle #13 and HCM 9.1 Bundle #2 allows remote authenticated users to affect confidentiality via unknown vectors....

CVE Identifier: CVE-2010-2379
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-hcm-9-1-and-prior-medium/'>Peoplesoft And Jdedwards Suite Hcm 9.1 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fpeoplesoft-and-jdedwards-suite-hcm-9-1-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fpeoplesoft-and-jdedwards-suite-hcm-9-1-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Peoplesoft And Jdedwards Suite Hcm 9.1 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the PeopleSoft Enterprise HCM &#8211; Time &#038; Labor component in Oracle PeopleSoft and JDEdwards Suite HCM 9.0 Bundle #13 and HCM 9.1 Bundle #2 allows remote authenticated users to affect confidentiality via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2379" target="_blank">CVE-2010-2379</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-hcm-9-1-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peoplesoft And Jdedwards Suite Crm 9.1 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-crm-9-1-and-prior-low/</link>
		<comments>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-crm-9-1-and-prior-low/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[peoplesoft_and_jdedwards_suite_crm]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-crm-9-1-and-prior-low/</guid>
		<description><![CDATA[Unspecified vulnerability in the PeopleSoft Enterprise CRM component in Oracle PeopleSoft and JDEdwards Suite CRM 9.0 Bundle #28 and CRM 9.1 Bundle #4 allows local users to affect confidentiality and integrity via unknown vectors....

CVE Identifier: CVE-2010-2378
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-crm-9-1-and-prior-low/'>Peoplesoft And Jdedwards Suite Crm 9.1 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fpeoplesoft-and-jdedwards-suite-crm-9-1-and-prior-low%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fpeoplesoft-and-jdedwards-suite-crm-9-1-and-prior-low%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Peoplesoft And Jdedwards Suite Crm 9.1 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the PeopleSoft Enterprise CRM component in Oracle PeopleSoft and JDEdwards Suite CRM 9.0 Bundle #28 and CRM 9.1 Bundle #4 allows local users to affect confidentiality and integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2378" target="_blank">CVE-2010-2378</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-suite-crm-9-1-and-prior-low/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Peoplesoft And Jdedwards Product Suite 8.50.10 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-product-suite-8-50-10-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-product-suite-8-50-10-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[peoplesoft_and_jdedwards_product_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-product-suite-8-50-10-and-prior-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the PeopleSoft Enterprise PeopleTools component in Oracle PeopleSoft and JDEdwards Suite 8.49.27 and 8.50.10 allows remote authenticated users to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-2377
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-product-suite-8-50-10-and-prior-medium/'>Peoplesoft And Jdedwards Product Suite 8.50.10 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fpeoplesoft-and-jdedwards-product-suite-8-50-10-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fpeoplesoft-and-jdedwards-product-suite-8-50-10-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Peoplesoft And Jdedwards Product Suite 8.50.10 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the PeopleSoft Enterprise PeopleTools component in Oracle PeopleSoft and JDEdwards Suite 8.49.27 and 8.50.10 allows remote authenticated users to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2377" target="_blank">CVE-2010-2377</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/peoplesoft-and-jdedwards-product-suite-8-50-10-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris 10 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-4/</link>
		<comments>http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-4/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-4/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle Solaris 8, 9, and 10 allows local users to affect confidentiality and integrity via unknown vectors related to Solaris Management Console....

CVE Identifier: CVE-2010-2376
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-4/'>Solaris 10 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsolaris-10-and-prior-low-4%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsolaris-10-and-prior-low-4%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Solaris 10 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle Solaris 8, 9, and 10 allows local users to affect confidentiality and integrity via unknown vectors related to Solaris Management Console.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2376" target="_blank">CVE-2010-2376</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/solaris-10-and-prior-low-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weblogic Server Component 10.3.3 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/weblogic-server-component-10-3-3-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/weblogic-server-component-10-3-3-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[weblogic_server_component]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/weblogic-server-component-10-3-3-and-prior-medium/</guid>
		<description><![CDATA[Package/Privilege: Plugins for Apache, Sun and IIS web servers Unspecified vulnerability in the WebLogic Server component in Oracle Fusion Middleware 7.0 SP7, 8.1 SP6, 9.0, 9.1, 9.2 MP3, 10.0 MP2, 10.3.2, and 10.3.3 allows remote attackers to affect confidentiality and integrity, related to IIS....

CVE Identifier: CVE-2010-2375
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/weblogic-server-component-10-3-3-and-prior-medium/'>Weblogic Server Component 10.3.3 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fweblogic-server-component-10-3-3-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fweblogic-server-component-10-3-3-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Weblogic Server Component 10.3.3 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Package/Privilege: Plugins for Apache, Sun and IIS web servers Unspecified vulnerability in the WebLogic Server component in Oracle Fusion Middleware 7.0 SP7, 8.1 SP6, 9.0, 9.1, 9.2 MP3, 10.0 MP2, 10.3.2, and 10.3.3 allows remote attackers to affect confidentiality and integrity, related to IIS.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2375" target="_blank">CVE-2010-2375</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/weblogic-server-component-10-3-3-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris Studio 12 [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/solaris-studio-12-low/</link>
		<comments>http://olex.openlogic.com/wazi/2010/solaris-studio-12-low/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[solaris_studio]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/solaris-studio-12-low/</guid>
		<description><![CDATA[Unspecified vulnerability in Solaris Studio 12 update 1 allows local users to affect confidentiality and integrity via unknown vectors....

CVE Identifier: CVE-2010-2374
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/solaris-studio-12-low/'>Solaris Studio 12 [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsolaris-studio-12-low%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsolaris-studio-12-low%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Solaris Studio 12 [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Solaris Studio 12 update 1 allows local users to affect confidentiality and integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2374" target="_blank">CVE-2010-2374</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/solaris-studio-12-low/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enterprise Manager Grid Control 10.2.0.5 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/enterprise-manager-grid-control-10-2-0-5-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/enterprise-manager-grid-control-10-2-0-5-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[enterprise_manager_grid_control]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/enterprise-manager-grid-control-10-2-0-5-and-prior-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the Console component in Oracle Enterprise Manager Grid Control 10.1.0.6 and 10.2.0.5 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-2373
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/enterprise-manager-grid-control-10-2-0-5-and-prior-medium/'>Enterprise Manager Grid Control 10.2.0.5 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fenterprise-manager-grid-control-10-2-0-5-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fenterprise-manager-grid-control-10-2-0-5-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Enterprise Manager Grid Control 10.2.0.5 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Console component in Oracle Enterprise Manager Grid Control 10.1.0.6 and 10.2.0.5 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2373" target="_blank">CVE-2010-2373</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/enterprise-manager-grid-control-10-2-0-5-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Supply Chain Products Suite 6.1.1 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[supply_chain_products_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Transportation Management component in Oracle Supply Chain Products Suite 6.1.1 allows remote attackers to affect integrity via unknown vectors, a different vulnerability than CVE-2010-2371....

CVE Identifier: CVE-2010-2372
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-medium/'>Supply Chain Products Suite 6.1.1 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsupply-chain-products-suite-6-1-1-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsupply-chain-products-suite-6-1-1-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Supply Chain Products Suite 6.1.1 [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Transportation Management component in Oracle Supply Chain Products Suite 6.1.1 allows remote attackers to affect integrity via unknown vectors, a different vulnerability than CVE-2010-2371.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2372" target="_blank">CVE-2010-2372</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Supply Chain Products Suite 6.1.1 [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-low/</link>
		<comments>http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-low/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[supply_chain_products_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-low/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Transportation Management component in Oracle Supply Chain Products Suite 6.1.1 allows local users to affect confidentiality via unknown vectors, a different vulnerability than CVE-2010-2372....

CVE Identifier: CVE-2010-2371
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-low/'>Supply Chain Products Suite 6.1.1 [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsupply-chain-products-suite-6-1-1-low%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsupply-chain-products-suite-6-1-1-low%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Supply Chain Products Suite 6.1.1 [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Transportation Management component in Oracle Supply Chain Products Suite 6.1.1 allows local users to affect confidentiality via unknown vectors, a different vulnerability than CVE-2010-2372.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2371" target="_blank">CVE-2010-2371</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/supply-chain-products-suite-6-1-1-low/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fusion Middleware 10.3 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-3-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-3-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[fusion_middleware]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/fusion-middleware-10-3-and-prior-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Business Process Management component in Oracle Fusion Middleware 5.7 MP3, 6.0 MP5, and 10.3 MP2 allows remote attackers to affect integrity, related to BPM....

CVE Identifier: CVE-2010-2370
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/fusion-middleware-10-3-and-prior-medium/'>Fusion Middleware 10.3 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffusion-middleware-10-3-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffusion-middleware-10-3-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Fusion Middleware 10.3 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Business Process Management component in Oracle Fusion Middleware 5.7 MP3, 6.0 MP5, and 10.3 MP2 allows remote attackers to affect integrity, related to BPM.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2370" target="_blank">CVE-2010-2370</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-3-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opensolaris 10 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/opensolaris-10-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/opensolaris-10-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[opensolaris]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/opensolaris-10-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle OpenSolaris 10 allows local users to affect confidentiality, integrity, and availability via unknown vectors related to rdist....

CVE Identifier: CVE-2010-0916
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/opensolaris-10-medium/'>Opensolaris 10 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensolaris-10-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensolaris-10-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Opensolaris 10 [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle OpenSolaris 10 allows local users to affect confidentiality, integrity, and availability via unknown vectors related to rdist.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0916" target="_blank">CVE-2010-0916</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/opensolaris-10-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-business Suite 12.1.2 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-7/</link>
		<comments>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-7/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[e-business_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-7/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Advanced Product Catalog component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote authenticated users to affect confidentiality and integrity via unknown vectors....

CVE Identifier: CVE-2010-0915
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-7/'>E-business Suite 12.1.2 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-medium-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-medium-7%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>E-business Suite 12.1.2 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Advanced Product Catalog component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote authenticated users to affect confidentiality and integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0915" target="_blank">CVE-2010-0915</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sun Convergence 1.0 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/sun-convergence-1-0-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/sun-convergence-1-0-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[sun_convergence]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/sun-convergence-1-0-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle Sun Convergence 1.0 allows remote attackers to affect confidentiality via unknown vectors related to Mail, Calendar, Address Book, and Instant Messaging....

CVE Identifier: CVE-2010-0914
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/sun-convergence-1-0-medium/'>Sun Convergence 1.0 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsun-convergence-1-0-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsun-convergence-1-0-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Sun Convergence 1.0 [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle Sun Convergence 1.0 allows remote attackers to affect confidentiality via unknown vectors related to Mail, Calendar, Address Book, and Instant Messaging.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0914" target="_blank">CVE-2010-0914</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/sun-convergence-1-0-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-business Suite 12.1.2 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-6/</link>
		<comments>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-6/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[e-business_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-6/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Applications Manager component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-0913
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-6/'>E-business Suite 12.1.2 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-medium-6%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-medium-6%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>E-business Suite 12.1.2 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Applications Manager component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0913" target="_blank">CVE-2010-0913</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-business Suite 12.1.2 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-5/</link>
		<comments>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-5/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[e-business_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-5/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Applications Framework component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-0912
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-5/'>E-business Suite 12.1.2 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-medium-5%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-medium-5%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>E-business Suite 12.1.2 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Applications Framework component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0912" target="_blank">CVE-2010-0912</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-medium-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Server 11.2.0.1 and prior [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high-2/</link>
		<comments>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[database_server]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high-2/</guid>
		<description><![CDATA[Unspecified vulnerability in the Listener component in Oracle Database Server 9.2.0.8, 9.2.0.8DV, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1 allows remote attackers to affect availability via unknown vectors....

CVE Identifier: CVE-2010-0911
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high-2/'>Database Server 11.2.0.1 and prior [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-high-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-high-2%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Database Server 11.2.0.1 and prior [High]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Listener component in Oracle Database Server 9.2.0.8, 9.2.0.8DV, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1 allows remote attackers to affect availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0911" target="_blank">CVE-2010-0911</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timesten In-memory Database 11.2.1.4.1 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-11-2-1-4-1-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-11-2-1-4-1-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[timesten_in-memory_database]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-11-2-1-4-1-and-prior-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the Data Server component in Oracle TimesTen In-Memory Database 7.0.6.0 and 11.2.1.4.1 allows remote attackers to affect availability via unknown vectors....

CVE Identifier: CVE-2010-0910
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-11-2-1-4-1-and-prior-medium/'>Timesten In-memory Database 11.2.1.4.1 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ftimesten-in-memory-database-11-2-1-4-1-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ftimesten-in-memory-database-11-2-1-4-1-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Timesten In-memory Database 11.2.1.4.1 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Data Server component in Oracle TimesTen In-Memory Database 7.0.6.0 and 11.2.1.4.1 allows remote attackers to affect availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0910" target="_blank">CVE-2010-0910</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-11-2-1-4-1-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-business Suite 12.1.2 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-3/</link>
		<comments>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-3/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[e-business_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-3/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Applications Framework component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote authenticated users to affect confidentiality via unknown vectors....

CVE Identifier: CVE-2010-0909
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-3/'>E-business Suite 12.1.2 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-low-3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-low-3%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>E-business Suite 12.1.2 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Applications Framework component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote authenticated users to affect confidentiality via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0909" target="_blank">CVE-2010-0909</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-business Suite 12.1.2 [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-high/</link>
		<comments>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-high/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[e-business_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-high/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Applications Framework component in Oracle E-Business Suite 12.1.2 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors....

CVE Identifier: CVE-2010-0908
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-high/'>E-business Suite 12.1.2 [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-high%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-high%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>E-business Suite 12.1.2 [High]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Applications Framework component in Oracle E-Business Suite 12.1.2 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0908" target="_blank">CVE-2010-0908</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Backup 10.3.0.1 [Unknown Severity]</title>
		<link>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity-2/</link>
		<comments>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[secure_backup]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity-2/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2010-0898, CVE-2010-0899, CVE-2010-0904, and CVE-2010-0906....

CVE Identifier: CVE-2010-0907
Vulnerability Type(s): 
Severity: Unknown Severity
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity-2/'>Secure Backup 10.3.0.1 [Unknown Severity]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-unknown-severity-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-unknown-severity-2%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Secure Backup 10.3.0.1 [Unknown Severity]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2010-0898, CVE-2010-0899, CVE-2010-0904, and CVE-2010-0906.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0907" target="_blank">CVE-2010-0907</a><br />
Severity: Unknown Severity
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Backup 10.3.0.1 [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-high/</link>
		<comments>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-high/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[secure_backup]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-high/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors....

CVE Identifier: CVE-2010-0906
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-high/'>Secure Backup 10.3.0.1 [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-high%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-high%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Secure Backup 10.3.0.1 [High]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0906" target="_blank">CVE-2010-0906</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-business Suite 12.0.4 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/e-business-suite-12-0-4-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/e-business-suite-12-0-4-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[e-business_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/e-business-suite-12-0-4-and-prior-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Applications Manager component in Oracle E-Business Suite 11.5.10.2 and 12.0.4 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-0905
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/e-business-suite-12-0-4-and-prior-medium/'>E-business Suite 12.0.4 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-0-4-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-0-4-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>E-business Suite 12.0.4 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Applications Manager component in Oracle E-Business Suite 11.5.10.2 and 12.0.4 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0905" target="_blank">CVE-2010-0905</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/e-business-suite-12-0-4-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Backup 10.3.0.1 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[secure_backup]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-0904
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-medium/'>Secure Backup 10.3.0.1 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Secure Backup 10.3.0.1 [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0904" target="_blank">CVE-2010-0904</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Server 11.2.0.1 and prior [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high/</link>
		<comments>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[database_server]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high/</guid>
		<description><![CDATA[Unspecified vulnerability in the Net Foundation Layer component in Oracle Database Server 9.2.0.8, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1, when running on Windows, allows remote attackers to affect availability via unknown vectors....

CVE Identifier: CVE-2010-0903
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high/'>Database Server 11.2.0.1 and prior [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-high%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-high%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Database Server 11.2.0.1 and prior [High]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Net Foundation Layer component in Oracle Database Server 9.2.0.8, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1, when running on Windows, allows remote attackers to affect availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0903" target="_blank">CVE-2010-0903</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Server 11.2.0.1 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-medium-2/</link>
		<comments>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-medium-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[database_server]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-medium-2/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle OLAP component in Oracle Database Server 9.2.0.8, 9.2.0.8DV, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors....

CVE Identifier: CVE-2010-0902
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-medium-2/'>Database Server 11.2.0.1 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-medium-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-medium-2%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Database Server 11.2.0.1 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle OLAP component in Oracle Database Server 9.2.0.8, 9.2.0.8DV, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0902" target="_blank">CVE-2010-0902</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-medium-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Server 11.2.0.1 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low-2/</link>
		<comments>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[database_server]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low-2/</guid>
		<description><![CDATA[Unspecified vulnerability in the Export component in Oracle Database Server 9.2.0.8, 9.2.0.8DV, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1 allows remote authenticated users to affect confidentiality via unknown vectors related to Select Any Dictionary....

CVE Identifier: CVE-2010-0901
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low-2/'>Database Server 11.2.0.1 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-low-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-low-2%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Database Server 11.2.0.1 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Export component in Oracle Database Server 9.2.0.8, 9.2.0.8DV, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1 allows remote authenticated users to affect confidentiality via unknown vectors related to Select Any Dictionary.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0901" target="_blank">CVE-2010-0901</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Server 11.2.0.1 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low/</link>
		<comments>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[database_server]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low/</guid>
		<description><![CDATA[Unspecified vulnerability in the Network Layer component in Oracle Database Server 9.2.0.8, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1, when running on Windows, allows remote attackers to affect availability via unknown vectors....

CVE Identifier: CVE-2010-0900
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low/'>Database Server 11.2.0.1 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-low%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-11-2-0-1-and-prior-low%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Database Server 11.2.0.1 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Network Layer component in Oracle Database Server 9.2.0.8, 10.1.0.5, 10.2.0.4, 11.1.0.7, and 11.2.0.1, when running on Windows, allows remote attackers to affect availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0900" target="_blank">CVE-2010-0900</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/database-server-11-2-0-1-and-prior-low/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Backup 10.3.0.1 and prior [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-and-prior-high/</link>
		<comments>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-and-prior-high/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[secure_backup]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-and-prior-high/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2010-0898, CVE-2010-0907, and CVE-2010-0906....

CVE Identifier: CVE-2010-0899
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-and-prior-high/'>Secure Backup 10.3.0.1 and prior [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-and-prior-high%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-and-prior-high%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Secure Backup 10.3.0.1 and prior [High]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote authenticated users to affect confidentiality, integrity, and availability via unknown vectors, a different vulnerability than CVE-2010-0898, CVE-2010-0907, and CVE-2010-0906.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0899" target="_blank">CVE-2010-0899</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-and-prior-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure Backup 10.3.0.1 [Unknown Severity]</title>
		<link>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity/</link>
		<comments>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[secure_backup]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors....

CVE Identifier: CVE-2010-0898
Vulnerability Type(s): 
Severity: Unknown Severity
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity/'>Secure Backup 10.3.0.1 [Unknown Severity]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-unknown-severity%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fsecure-backup-10-3-0-1-unknown-severity%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Secure Backup 10.3.0.1 [Unknown Severity]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle Secure Backup 10.3.0.1 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0898" target="_blank">CVE-2010-0898</a><br />
Severity: Unknown Severity
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/secure-backup-10-3-0-1-unknown-severity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Server 3.2.0.00.27 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/database-server-3-2-0-00-27-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/database-server-3-2-0-00-27-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[database_server]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/database-server-3-2-0-00-27-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the Application Express component in Oracle Database Server 3.2.0.00.27 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-0892
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/database-server-3-2-0-00-27-medium/'>Database Server 3.2.0.00.27 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-3-2-0-00-27-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fdatabase-server-3-2-0-00-27-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Database Server 3.2.0.00.27 [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Application Express component in Oracle Database Server 3.2.0.00.27 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0892" target="_blank">CVE-2010-0892</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/database-server-3-2-0-00-27-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Timesten In-memory Database 7.0.6.0 [Unknown Severity]</title>
		<link>http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-7-0-6-0-unknown-severity/</link>
		<comments>http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-7-0-6-0-unknown-severity/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[timesten_in-memory_database]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-7-0-6-0-unknown-severity/</guid>
		<description><![CDATA[Unspecified vulnerability in the Data Server component in Oracle TimesTen In-Memory Database 7.0.6.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors....

CVE Identifier: CVE-2010-0873
Vulnerability Type(s): 
Severity: Unknown Severity
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-7-0-6-0-unknown-severity/'>Timesten In-memory Database 7.0.6.0 [Unknown Severity]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ftimesten-in-memory-database-7-0-6-0-unknown-severity%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ftimesten-in-memory-database-7-0-6-0-unknown-severity%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Timesten In-memory Database 7.0.6.0 [Unknown Severity]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Data Server component in Oracle TimesTen In-Memory Database 7.0.6.0 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0873" target="_blank">CVE-2010-0873</a><br />
Severity: Unknown Severity
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/timesten-in-memory-database-7-0-6-0-unknown-severity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-business Suite 12.1.2 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-2/</link>
		<comments>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[e-business_suite]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-2/</guid>
		<description><![CDATA[Unspecified vulnerability in the Oracle Knowledge Management component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-0836
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-2/'>E-business Suite 12.1.2 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-low-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fe-business-suite-12-1-2-and-prior-low-2%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>E-business Suite 12.1.2 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Oracle Knowledge Management component in Oracle E-Business Suite 11.5.10.2, 12.0.6, and 12.1.2 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0836" target="_blank">CVE-2010-0836</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/e-business-suite-12-1-2-and-prior-low-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fusion Middleware 10.1.2.3 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-2-3-medium-3/</link>
		<comments>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-2-3-medium-3/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[fusion_middleware]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-2-3-medium-3/</guid>
		<description><![CDATA[Unspecified vulnerability in the Wireless component in Oracle Fusion Middleware 10.1.2.3 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-0835
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-2-3-medium-3/'>Fusion Middleware 10.1.2.3 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffusion-middleware-10-1-2-3-medium-3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffusion-middleware-10-1-2-3-medium-3%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Fusion Middleware 10.1.2.3 [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Wireless component in Oracle Fusion Middleware 10.1.2.3 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0835" target="_blank">CVE-2010-0835</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-2-3-medium-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opensolaris 10 and prior [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/opensolaris-10-and-prior-high-10/</link>
		<comments>http://olex.openlogic.com/wazi/2010/opensolaris-10-and-prior-high-10/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[opensolaris]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/opensolaris-10-and-prior-high-10/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle OpenSolaris 8, 9, and 10 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors....

CVE Identifier: CVE-2010-0083
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/opensolaris-10-and-prior-high-10/'>Opensolaris 10 and prior [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensolaris-10-and-prior-high-10%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensolaris-10-and-prior-high-10%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Opensolaris 10 and prior [High]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle OpenSolaris 8, 9, and 10 allows remote attackers to affect confidentiality, integrity, and availability via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0083" target="_blank">CVE-2010-0083</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/opensolaris-10-and-prior-high-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opensso Enterprise 8.0 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium-2/</link>
		<comments>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[opensso_enterprise]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium-2/</guid>
		<description><![CDATA[Unspecified vulnerability in Oracle OpenSSO Enterprise 8.0 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2009-3762
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium-2/'>Opensso Enterprise 8.0 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensso-enterprise-8-0-medium-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensso-enterprise-8-0-medium-2%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Opensso Enterprise 8.0 [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in Oracle OpenSSO Enterprise 8.0 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3762" target="_blank">CVE-2009-3762</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fusion Middleware 10.1.4.0.1 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low/</link>
		<comments>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 17:30:00 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[fusion_middleware]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low/</guid>
		<description><![CDATA[Unspecified vulnerability in the Application Server Control component in Oracle Fusion Middleware 10.1.2.3 and 10.1.4.0.1 allows remote authenticated users to affect integrity via unknown vectors....

CVE Identifier: CVE-2010-0081
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low/'>Fusion Middleware 10.1.4.0.1 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffusion-middleware-10-1-4-0-1-and-prior-low%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffusion-middleware-10-1-4-0-1-and-prior-low%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Fusion Middleware 10.1.4.0.1 and prior [Low]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Application Server Control component in Oracle Fusion Middleware 10.1.2.3 and 10.1.4.0.1 allows remote authenticated users to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0081" target="_blank">CVE-2010-0081</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/fusion-middleware-10-1-4-0-1-and-prior-low/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opensso Enterprise 8.0 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 17:30:00 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[opensso_enterprise]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the OpenSSO component in Oracle OpenSSO Enterprise 8.0 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2009-3764
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium/'>Opensso Enterprise 8.0 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensso-enterprise-8-0-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensso-enterprise-8-0-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Opensso Enterprise 8.0 [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the OpenSSO component in Oracle OpenSSO Enterprise 8.0 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3764" target="_blank">CVE-2009-3764</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opensso Enterprise 8.0 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 17:30:00 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[opensso_enterprise]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-and-prior-medium/</guid>
		<description><![CDATA[Unspecified vulnerability in the Access Manager / OpenSSO component in Oracle OpenSSO Enterprise 7.1, 7, 2005Q4, and 8.0 allows remote attackers to affect integrity via unknown vectors....

CVE Identifier: CVE-2009-3763
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-and-prior-medium/'>Opensso Enterprise 8.0 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensso-enterprise-8-0-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fopensso-enterprise-8-0-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Opensso Enterprise 8.0 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Unspecified vulnerability in the Access Manager / OpenSSO component in Oracle OpenSSO Enterprise 7.1, 7, 2005Q4, and 8.0 allows remote attackers to affect integrity via unknown vectors.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2009-3763" target="_blank">CVE-2009-3763</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/opensso-enterprise-8-0-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freebsd 8.1 and prior [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/freebsd-8-1-and-prior-high/</link>
		<comments>http://olex.openlogic.com/wazi/2010/freebsd-8-1-and-prior-high/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 16:30:12 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/freebsd-8-1-and-prior-high/</guid>
		<description><![CDATA[FreeBSD 7.1 through 8.1-PRERELEASE does not copy the read-only flag when creating a duplicate mbuf buffer reference, which allows local users to cause a denial of service (system file corruption) and gain privileges via the sendfile system call....

CVE Identifier: CVE-2010-2693
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/freebsd-8-1-and-prior-high/'>Freebsd 8.1 and prior [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffreebsd-8-1-and-prior-high%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Ffreebsd-8-1-and-prior-high%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Freebsd 8.1 and prior [High]
</ul>
<h3>Description</h3>
<p>FreeBSD 7.1 through 8.1-PRERELEASE does not copy the read-only flag when creating a duplicate mbuf buffer reference, which allows local users to cause a denial of service (system file corruption) and gain privileges via the sendfile system call.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2693" target="_blank">CVE-2010-2693</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/freebsd-8-1-and-prior-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql 5.1.47 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/mysql-5-1-47-and-prior-low/</link>
		<comments>http://olex.openlogic.com/wazi/2010/mysql-5-1-47-and-prior-low/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 16:30:01 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/mysql-5-1-47-and-prior-low/</guid>
		<description><![CDATA[MySQL before 5.1.48 allows remote authenticated users with alter database privileges to cause a denial of service (server crash and database loss) via an ALTER DATABASE command with a #mysql50# string followed by a ...

CVE Identifier: CVE-2010-2008
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/mysql-5-1-47-and-prior-low/'>Mysql 5.1.47 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fmysql-5-1-47-and-prior-low%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fmysql-5-1-47-and-prior-low%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Mysql 5.1.47 and prior [Low]
</ul>
<h3>Description</h3>
<p>MySQL before 5.1.48 allows remote authenticated users with alter database privileges to cause a denial of service (server crash and database loss) via an ALTER DATABASE command with a #mysql50# string followed by a . (dot), .. (dot dot), ../ (dot dot slash) or similar sequence, and an UPGRADE DATA DIRECTORY NAME command, which causes MySQL to move certain directories to the server data directory.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2008" target="_blank">CVE-2010-2008</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/mysql-5-1-47-and-prior-low/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hierarchical Select 6.x-3.1 and prior [Low]</title>
		<link>http://olex.openlogic.com/wazi/2010/hierarchical-select-6-x-3-1-and-prior-low/</link>
		<comments>http://olex.openlogic.com/wazi/2010/hierarchical-select-6-x-3-1-and-prior-low/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[hierarchical_select]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/hierarchical-select-6-x-3-1-and-prior-low/</guid>
		<description><![CDATA[Cross-site scripting (XSS) vulnerability in the Hierarchical Select module 5.x before 5.x-3.2 and 6.x before 6.x-3.2 for Drupal allows remote authenticated users, with administer taxonomy permissions, to inject arbitrary web script or HTML via unspecified vectors in the hierarchical_select form....

CVE Identifier: CVE-2010-2724
Vulnerability Type(s): 
Severity: Low
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/hierarchical-select-6-x-3-1-and-prior-low/'>Hierarchical Select 6.x-3.1 and prior [Low]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fhierarchical-select-6-x-3-1-and-prior-low%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fhierarchical-select-6-x-3-1-and-prior-low%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Hierarchical Select 6.x-3.1 and prior [Low]
</ul>
<h3>Description</h3>
<p>Cross-site scripting (XSS) vulnerability in the Hierarchical Select module 5.x before 5.x-3.2 and 6.x before 6.x-3.2 for Drupal allows remote authenticated users, with administer taxonomy permissions, to inject arbitrary web script or HTML via unspecified vectors in the hierarchical_select form.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2724" target="_blank">CVE-2010-2724</a><br />
Severity: Low
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/hierarchical-select-6-x-3-1-and-prior-low/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listserv 16.0 and prior [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/listserv-16-0-and-prior-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/listserv-16-0-and-prior-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[listserv]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/listserv-16-0-and-prior-medium/</guid>
		<description><![CDATA[Cross-site scripting (XSS) vulnerability in LISTSERV 15 and 16 allows remote attackers to inject arbitrary web script or HTML via the T parameter...

CVE Identifier: CVE-2010-2723
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/listserv-16-0-and-prior-medium/'>Listserv 16.0 and prior [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Flistserv-16-0-and-prior-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Flistserv-16-0-and-prior-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Listserv 16.0 and prior [Medium]
</ul>
<h3>Description</h3>
<p>Cross-site scripting (XSS) vulnerability in LISTSERV 15 and 16 allows remote attackers to inject arbitrary web script or HTML via the T parameter.  NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2723" target="_blank">CVE-2010-2723</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/listserv-16-0-and-prior-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lyrics Engine 3.0 [Medium]</title>
		<link>http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-medium/</link>
		<comments>http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-medium/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[lyrics_engine]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-medium/</guid>
		<description><![CDATA[Cross-site scripting (XSS) vulnerability in index.php in RightInPoint Lyrics Script 3.0 allows remote attackers to inject arbitrary web script or HTML via the artist_id parameter, which is not properly handled in a forced SQL error message...

CVE Identifier: CVE-2010-2722
Vulnerability Type(s): 
Severity: Medium
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-medium/'>Lyrics Engine 3.0 [Medium]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Flyrics-engine-3-0-medium%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Flyrics-engine-3-0-medium%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Lyrics Engine 3.0 [Medium]
</ul>
<h3>Description</h3>
<p>Cross-site scripting (XSS) vulnerability in index.php in RightInPoint Lyrics Script 3.0 allows remote attackers to inject arbitrary web script or HTML via the artist_id parameter, which is not properly handled in a forced SQL error message.  NOTE: the provenance of this information is unknown; the details are obtained solely from third party information.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2722" target="_blank">CVE-2010-2722</a><br />
Severity: Medium
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-medium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lyrics Engine 3.0 [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-high/</link>
		<comments>http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-high/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[lyrics_engine]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-high/</guid>
		<description><![CDATA[SQL injection vulnerability in index.php in RightInPoint Lyrics Script 3.0 allows remote attackers to execute arbitrary SQL commands via the artist_id parameter in an addalbum action....

CVE Identifier: CVE-2010-2721
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-high/'>Lyrics Engine 3.0 [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Flyrics-engine-3-0-high%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Flyrics-engine-3-0-high%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Lyrics Engine 3.0 [High]
</ul>
<h3>Description</h3>
<p>SQL injection vulnerability in index.php in RightInPoint Lyrics Script 3.0 allows remote attackers to execute arbitrary SQL commands via the artist_id parameter in an addalbum action.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2721" target="_blank">CVE-2010-2721</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/lyrics-engine-3-0-high/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phpaacms 0.3.1 [High]</title>
		<link>http://olex.openlogic.com/wazi/2010/phpaacms-0-3-1-high-2/</link>
		<comments>http://olex.openlogic.com/wazi/2010/phpaacms-0-3-1-high-2/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:30:02 +0000</pubDate>
		<dc:creator>Security Team</dc:creator>
				<category><![CDATA[Security Notifications]]></category>
		<category><![CDATA[phpaacms]]></category>

		<guid isPermaLink="false">http://olex.openlogic.com/wazi/2010/phpaacms-0-3-1-high-2/</guid>
		<description><![CDATA[SQL injection vulnerability in list.php in phpaaCms 0.3.1 UTF-8, and possibly other versions, allows remote attackers to execute arbitrary SQL commands via the id parameter...

CVE Identifier: CVE-2010-2720
Vulnerability Type(s): 
Severity: High
]]></description>
			<content:encoded><![CDATA[<div style='padding:10px;border:1px solid;margin-bottom:20px;'>This article, <a href='http://olex.openlogic.com/wazi/2010/phpaacms-0-3-1-high-2/'>Phpaacms 0.3.1 [High]</a>, originally appeared on <a
      href='http://olex.openlogic.com/wazi'>Wazi</a>, a free source for news, information, and articles on open source software.</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fphpaacms-0-3-1-high-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Folex.openlogic.com%2Fwazi%2F2010%2Fphpaacms-0-3-1-high-2%2F&amp;source=OpenLogic&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3>Affects:</h3>
<ul>
<li>Phpaacms 0.3.1 [High]
</ul>
<h3>Description</h3>
<p>SQL injection vulnerability in list.php in phpaaCms 0.3.1 UTF-8, and possibly other versions, allows remote attackers to execute arbitrary SQL commands via the id parameter.  NOTE: some of these details are obtained from third party information.</p>
<p>If you have questions about this security warning or need to have it translated and you have an active technical support contract, please call 1-888-OPENLOGIC or email us at support@openlogic.com.</p>
<p>
CVE Identifier: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-2720" target="_blank">CVE-2010-2720</a><br />
Severity: High
</p>
<div id="attachment_2101" class="wp-caption alignright" style="width: 193px"><a href="http://nvd.nist.gov/download.cfm"><img class="size-medium wp-image-2101" title="NVD Logo" src="http://olex.openlogic.com/wazi/wp-content/uploads/2009/01/nvd.png" alt="National Vulnerabilities Database" width="183" height="87" /></a><p class="wp-caption-text">NIST National Vulnerabilities Database</p></div>
]]></content:encoded>
			<wfw:commentRss>http://olex.openlogic.com/wazi/2010/phpaacms-0-3-1-high-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
