[Soot-list] CallGraph Analysing

Abdejalil SETH shait.abdeljalil at gmail.com
Fri Apr 12 04:19:24 EDT 2013


HI everybody,

I am beginner at soot and i need your help

import java.lang.reflect.Field;

public class FieldAccessible {

   public static class MyClass {

       private String theField;

   }

   public static void main(String[] args) throws Exception {

       MyClass myClass = new MyClass();

       Field field1 = myClass.getClass().getDeclaredField("theField");

       field1.setAccessible(true);

       System.out.println(field1.get(myClass));

   }

}

I would create a call graph using soot to analyse the following :



   -

   get : setaccessible node
   -

   get the path of setaccessible(true) :  class00.c01.method1
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.cs.mcgill.ca/pipermail/soot-list/attachments/20130412/fb7127e7/attachment.html 


More information about the Soot-list mailing list