com.coverity.security.pie:pie-core

The core PIE component on which all PIE plugins depend.

License

License

Categories

Categories

Security
GroupId

GroupId

com.coverity.security.pie
ArtifactId

ArtifactId

pie-core
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

com.coverity.security.pie:pie-core
The core PIE component on which all PIE plugins depend.

Download pie-core

How to add to project

<!-- https://jarcasting.com/artifacts/com.coverity.security.pie/pie-core/ -->
<dependency>
    <groupId>com.coverity.security.pie</groupId>
    <artifactId>pie-core</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.coverity.security.pie/pie-core/
implementation 'com.coverity.security.pie:pie-core:1.0.0'
// https://jarcasting.com/artifacts/com.coverity.security.pie/pie-core/
implementation ("com.coverity.security.pie:pie-core:1.0.0")
'com.coverity.security.pie:pie-core:jar:1.0.0'
<dependency org="com.coverity.security.pie" name="pie-core" rev="1.0.0">
  <artifact name="pie-core" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.coverity.security.pie', module='pie-core', version='1.0.0')
)
libraryDependencies += "com.coverity.security.pie" % "pie-core" % "1.0.0"
[com.coverity.security.pie/pie-core "1.0.0"]

Dependencies

compile (2)

Group / Artifact Type Version
org.json : json jar 20140107
org.reflections : reflections jar 0.9.9

provided (2)

Group / Artifact Type Version
javax.servlet : javax.servlet-api jar 3.0.1
io.dropwizard : dropwizard-core jar 0.7.1

test (5)

Group / Artifact Type Version
org.testng : testng jar 6.8.8
org.easymock : easymock jar 3.1
org.apache.tomcat.embed : tomcat-embed-core jar 8.0.22
org.apache.tomcat.embed : tomcat-embed-jasper jar 8.0.22
org.apache.tomcat.embed : tomcat-embed-logging-juli jar 8.0.22

Project Modules

There are no modules declared in this project.

Policy Instantiation and Enforcement (PIE)

Introduction

PIE is a framework for creating and managing security policies for Java applications. Most of what follows describes how to use PIE to build a Java SecurityManager policy specific to your application, which can help protect against many classes of attack. But PIE is also designed to be general, and out-of-the-box also supports generating a policy for CSP (Content Security Policy), which helps to mitigate XSS. You can also check out the advanced documentation for tips on building custom PIE modules for your app.

Quick-Start

PIE has two primary modes of operation. In report-only mode, PIE will observe permission requests and update its policy so that those requests get whitelisted.

PIE Diagram

In enforcement mode, PIE reads in its security policies and applies them to any permission requests it sees.

To quickly get started with PIE, just follow these steps:

  • Include PIE in your project.

  • If you're using Tomcat, get the PIE core JAR (this linked version is bundled with all dependencies) and the PIE security-manager JAR and put them in Tomcat's lib directory.

  • Or, if you're using Maven, just include the PIE security-manager module as a dependency in your application:

       <dependency>
           <groupId>com.coverity.security.pie</groupId>
           <artifactId>pie-sm</artifactId>
           <version>1.0.0</version>
       </dependency>
    
  • Start up your server. If you're using Tomact, it's recommended that you pass the "-security" flag when calling startup.sh. (Check out the advanced docs for more information on that.)

  • Use the application, and run any end-to-end tests. Having good application coverage is key, since it lets PIE know what permissions your application will need.

  • Shutdown the server. Check out the policy file PIE created: securityManager.policy in the application's root directory. Tweak it if you'd like!

  • Create a configuration file for PIE telling it to run in enforcement mode: create a text file your container's working directory or classpath (e.g. Tomcat's lib directory) named pieConfig.properties with the following: securityManager.isReportOnlyMode = false

  • Start up your server; your application is now protected! Easy as PIE!

Using PIE in Other Containers

PIE is easiest to use in a Servlet 3.0 container like Jetty or Tomcat (which automatically discover the PIE JARs and start it up on load). However, PIE uses standard Servlet interfaces, so you can load it in just about any container. For example, PIE has a bundle for Dropwizard support; besides including PIE as a dependency, all you need to do is include the PieBundle in your application's initialization method:

public void initialize(Bootstrap<HelloWorldConfiguration> bootstrap) {
    bootstrap.addBundle(new PieBundle());
    ...
}

Do you use some other container that PIE doesn't support? Open up a feature request, or even better, submit a pull request!

Using the Maven Plugin

PIE comes with a Maven plugin which helps you keep your security policies up-to-date and detect issues related to overly-restrictive policies early in the software development lifecycle.

Before you get started, make sure your application server is running in report-only mode, isn't generating its own new version of the policy, and has the PIE admin interface enabled. That is, make sure the server's pieConfig.properties has the following:

securityManager.isReportOnlyMode = true
pie.regenerateOnShutdown = false
pie.admininterface.enabled = true

Now you can run your test build utilizing the PIE Maven plugin.

PIE Maven Diagram

  1. Activate your usual end-to-end testing build. This may call out to a service like SeleniumGrid, or use a browser locally.
  2. Your testing build exercises a deployed instance of your web application, which, as indicated above, should be running PIE in a report-only mode.
  3. After the test is complete, the PIE Maven plugin fetches all policy violations that occurred from the deployed server.
  4. The plugin uses this information to generate an updated policy on your local machine, so you can inspect it, make updates, and redeploy the policy to your testing server. It will also (optionally) fail the Maven build so that you know an update needs to be made.

To include PIE as part of your Maven build, include the plugin in your pom.xml:

<plugin>
    <groupId>com.coverity.security.pie</groupId>
    <artifactId>pie-maven-plugin</artifactId>
    <version>1.0.0</version>
    <configuration>
        <serverUrl>http://qaserver.myapp.example.com:8080/</serverUrl>
        <pieConfig>pieConfig.properties</pieConfig>
        <failOnViolations>true</failOnViolations>
    </configuration>
    <executions>
        <execution>
            <goals>
                <goal>build-policy</goal>
            </goals>
        </execution>
    </executions>
</plugin>

When using PIE this way, make sure your server is configured to use PIE is report-only mode, and that the admin interface is enabled (see below).

The PIE plugin will run during the post-integration phase by default, at which time it will make a call to PIE's admin interface on the server (using the configured server URL) to fetch any policy violations that occurred during the Maven build. It will then update local policy files to add those violations to the whitelist, simplifying the policies if the pieConfig.properties file is configured to do so. If the failOnViolations configuration parameter is set to true (which is the default value), the plugin will also fail the Maven build if there were any violations.

Configuration Options

PIE has lots of options to help you use it in the way that's most efficient for you. Here are the options you can include in pieConfig.properties, which you can put in either the root directory of your application, or in the root of your container's classpath (e.g. in Tomcat's lib directory).

# Global
pie.enabled = true # Whether or not PIE should be enabled
pie.regenerateOnShutdown = true # Whether or not PIE should update its policy files
pie.admininterface.enabled = false # Whether PIE's admin console should be enabled; this is mostly for PIE's Maven plugin
# SecurityManager
securityManager.isEnabled = true # Is the SecurityManager module enabled?
securityManager.policyPath = file:securityManager.policy # The path where the SecurityManager's policy file will be generated and read from
securityManager.isReportOnlyMode = true # Is the SecurityManager is report-only mode?
securityManager.isCollapseEnabled = true # Is policy simplification enabled?
securityManager.collapseLibDir = true # Should PIE collapse permissions for all the JARs in the webapp's lib directory?

Take a look at pieConfig.default.properties which will always have a complete list of options.

Policy Simplification

One of PIE's most useful features is its ability to collapse and simplify your generated security policy. This not only makes it easier for a human to read, understand, and verify, but also allows PIE to make helpful generalizations. For example, consider the following generated policy:

"file:/home/ihaken/tomcats/pebble/webapps/pebble-2.6.4/WEB-INF/lib/commons-fileupload-1.0.jar": {
   "java.io.FilePermission": {
      "/home/ihaken/tomcats/pebble/temp/upload_00000000.tmp": {
         "delete": {},
         "read": {}
      },
      "/home/ihaken/tomcats/pebble/temp/upload_00000001.tmp": {
         "delete": {},
         "read": {}
      },
      "/home/ihaken/tomcats/pebble/temp/upload_00000002.tmp": {
         "delete": {},
         "read": {}
      },
      ...

If you were to leave securityManager.isCollapseEnabled = false in your pieConfig.properties file, this policy would go on for hundreds of lines, and wouldn't even leave you with a correct policy, since it wouldn't allow for arbitrary files in /home/ihaken/tomcats/pebble/temp to be read and deleted. But with collapse enabled, PIE will output

"file:/home/ihaken/tomcats/pebble/webapps/pebble-2.6.4/WEB-INF/lib/commons-fileupload-1.0.jar": {
   "java.io.FilePermission": {
      "/home/ihaken/tomcats/pebble/temp/*": { "delete,read": {} }
   },
   ...

PIE's heuristics for collapsing policies are written in a way that allows them to be context dependent. This means that PIE knows to collapse the file paths to /home/ihaken/tomcats/pebble/temp/* and to collapse the "delete" and "read" directives into a single comma-separated-value list "delete,read". This modularity also allows you to tweak the conditions and threshold for collapsing directives. See the advanced documentation for more information.

CSP, Custom Modules, and Advanced Configuration

PIE is a general framework and can be used with more than just the Java SecurityManager. Out-of-the-box PIE supports generating policies for CSP, and includes an example (in the example-webapp directory) of generating a policy for Spring Security to define role-based access rules on DAO methods. See the advanced documentation for details!

Using PIE in Production and PIE as Intrusion-Detection

If you're considering using PIE in a production system, we recommend following the below workflow for your application. This workflow is based on the assumption that you already have a suite of integration / end-to-end tests, e.g. Selenium tests.

  1. Start the integration test server and enable PIE.
  2. Run the integration / end-to-end tests.
  3. Shutdown the integration server and review the auto-created policy, modifying as needed.
  4. Run PIE in report-only mode in as near of a production environment as you can.
  5. Observe violations in the PIE log. Most likely, any violations you see are the result of insufficient test case coverage rather than a sign of someone exploiting the application.
  6. Write new test cases that cover the violations or review violations to see if they're security exploits. Either manually update your policy or regenerate it by rerunning your test suite with these new tests. Repeat starting at step 4.

In this workflow, we have never configured PIE to run in enforcement mode and are just logging policy violations for manual review. As such, PIE will not effect the functionality of your application in any way, but will provide you insight into the test coverage of security-relevant parts of your application. Once you have stabilized on a good policy for your application, PIE's violation log effectively acts as an intrusion detection system, allowing you to keep a log unintended or unusual behavior.

By default, PIE keeps policy violations in-memory to update the security policy and doesn't perform any logging of violations. To use PIE as described in steps 4 and 5, use the properties in your pieConfig.properties file similar to the following:

pie.regenerateOnShutdown = false # This means the policy is not automatically updated
pie.loggingEnabled = true # This will cause all violations to show up in PIE's log
pie.logPath = /var/log/tomcat/pie.log # The filesystem path for PIE to log to.
securityManager.isReportOnlyMode = true # The SecurityManager module will not enforce the policy

License

PIE is distributed under the terms of the Simplified BSD License. See LICENSE.

com.coverity.security.pie

Coverity

Versions

Version
1.0.0