This article is more than 1 year old

Aspect-oriented programming and security

Working together

What's next?

The potential uses for Aspect-oriented programming in application security are enormous. Here are a couple of other applications AOP in security:

  • Implement access control independently of application logic. Instead of having explicit checks such as checkAccess(User) in each sensitive function, you can achieve this through aspects and let developers focus on business logic
  • Implement application security policies such as explicitly forbidding programmers from calling dynamic SQL libraries (e.g. executeQuery()). Whenever that library is called, you can use aspects to throw an exception and record exactly where the offending call came from

Developers are already moving towards adopting AOP. JBoss, WebSphere, and WebLogic either have existing functionality to integrate AOP or have made announcements to do so in the future. Now the application security community needs to follow suit by providing guidance on how AOP can be used in a security context.

We can achieve this by ensuring we add AOP to our application security training curriculums (something we’ve included in our new class for SANS, and I hope other training companies do the same), do more research on how AOP works at securing applications in production (including benchmarks for performance impact), and providing more example code for developers to learn from.

Footnotes

  1. Aspect-oriented programming with Spring; Spring Framework
  2. Applying Aspect-Oriented Programming to Security; Viega, Bloch, and Chandra; Cutter IT Journal
  3. Towards a security aspect for Java; Farías, Andrés
  4. AspectJ
  5. AsjectJ Development Tools
  6. Using AspectJ with Spring Applications; Spring Framework Reference Guide
  7. Data Validation, OWASP,
          public class MyFirstClass {
          public void amethod (String bar) {
                    Logger.doLoggingBefore();
                    //business logic goes here
                    Logger.doLoggingAfter();
            }
          }
          public class MySecondClass {
            public void function (Object arg) {
                    Logger.doLoggingBefore();
                    //business logic goes here
                    Logger.doLoggingAfter();
            }
          }
          public aspect LogInterceptor { 
    
          public Object invoke(){
          Logger.doLoggingBefore();
                    method.execute(); 
                    Logger.doLoggingAfter();
              }
          }
          public class MySecondClass {
            public void function (Object arg) {
                    //business logic goes here
            }
          }
          public class MyFirstClass {
            public void amethod (String bar) {            
                    //business logic goes here
            }
    

This article originally appeared in Security Focus.

Copyright © 2007, SecurityFocus

More about

TIP US OFF

Send us news


Other stories you might like