Difference between revisions of "Tracking Variables"

From AtlasWiki
Jump to: navigation, search
("Where does this variable come from?")
Line 1: Line 1:
 
=== "Where does this variable come from?" ===
 
=== "Where does this variable come from?" ===
  
1. Identify variable of interest.  The variable we are concerned with is the PrivateKey variable "priv" used in the method changePassword.
+
1. Identify variable of interest.  The variable we are concerned with is the <code>PrivateKey</code> variable <code>priv</code> used in the method <code>changePassword</code>.
  
[[File:ChangePassword.png|450px]]
+
[[File:ChangePassword.png|500px]]
  
2. The variable is set by a call to the decodePrivate method in PubkeyUtils.  Use the Smart View to inspect this method.  The Call Step script will show us calls that the method makes when generating our PrivateKey.
+
2. The variable is set by a call to the <code>decodePrivate</code> method in <code>PubkeyUtils</code>Let's have a look at this method.
  
[[File:DecodePrivate_CallStep.png|300px]]
+
[[File:DecodePrivate.png|500px]]
  
3.
+
3. The implementation here is simple; the parameters are passed along to another method of the same name.  In the event that a <code>secret</code> is provided, the encoded parameter is decrypted first.
 +
 
 +
We can use the Smart View to inspect this method more easily.  The Forward Call script will show us all methods called when generating our <code>PrivateKey</code>.  Through the course of evaluating this method, eighteen library methods are called from <code>android.jar</code>.  For easy viewing, we can click the minimize button in the upper left corner of the graph element to collapse it.
 +
 
 +
[[File:DecodePrivate_ForwardCall.png|300px]]
 +
 
 +
4. This graph provides insight into a few points of interest.  The conditional call to <code>decrypt</code> represents the bulk of the calls required for this operation.  After <code>encoded</code> is decrypted, the rest of the work is handled in the overloaded method <code>decodePrivate</code>.
 +
 
 +
Now we know that a data flow analysis extending as far as this method will show us information that is exchanged in generating our <code>PrivateKey</code>.  The Connection view can build this dataflow graph for us.  Enter <code>changePassword</code> in the Roots pane and <code>decodePrivate</code> into the Leaves pane of the view.
 +
 
 +
[[File:Dataflow_in.png|500px]]
 +
 
 +
The Connection View shows the two parameters being passed into the method, across packages.  The provided type parameter is used to acquire the appropriate <code>KeyFactory</code> from the library.
 +
 
 +
[[File:Dataflow_out.png|400px]]

Revision as of 11:59, 27 April 2015

"Where does this variable come from?"

1. Identify variable of interest. The variable we are concerned with is the PrivateKey variable priv used in the method changePassword.

ChangePassword.png

2. The variable is set by a call to the decodePrivate method in PubkeyUtils. Let's have a look at this method.

DecodePrivate.png

3. The implementation here is simple; the parameters are passed along to another method of the same name. In the event that a secret is provided, the encoded parameter is decrypted first.

We can use the Smart View to inspect this method more easily. The Forward Call script will show us all methods called when generating our PrivateKey. Through the course of evaluating this method, eighteen library methods are called from android.jar. For easy viewing, we can click the minimize button in the upper left corner of the graph element to collapse it.

DecodePrivate ForwardCall.png

4. This graph provides insight into a few points of interest. The conditional call to decrypt represents the bulk of the calls required for this operation. After encoded is decrypted, the rest of the work is handled in the overloaded method decodePrivate.

Now we know that a data flow analysis extending as far as this method will show us information that is exchanged in generating our PrivateKey. The Connection view can build this dataflow graph for us. Enter changePassword in the Roots pane and decodePrivate into the Leaves pane of the view.

Dataflow in.png

The Connection View shows the two parameters being passed into the method, across packages. The provided type parameter is used to acquire the appropriate KeyFactory from the library.

Dataflow out.png