Skip to content

Commit

Permalink
Update security_analysis.html
Browse files Browse the repository at this point in the history
adding links to tools used in dynamic analysis section
  • Loading branch information
preetam25 authored Apr 24, 2021
1 parent d7fdaba commit 9352997
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions security_analysis.html
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ <h2 class="content-title">Dynamic Analysis</h2>

<section class="section" id="da-tools">
<h3 class="content-title">Tools</h3>
For the purpose of this tutorial, we use a platform called AppUse, which brings together many useful tools and custom scripts for mobile application security testing under one GUI. AppUse eliminates the need of painstakingly installing numerous security tools by packaging them into a virtual machine, and thus it will require a VM player to run. Following are the links to download AppUse and VMware Player -
For the purpose of this tutorial, we use a platform called <b>AppUse</b> (developed by <a href="https://appsec-labs.com/" target="_blank">AppSec Labs</a>), which brings together many useful tools and custom scripts for mobile application security testing under one GUI. AppUse eliminates the need of painstakingly installing numerous security tools by packaging them into a virtual machine, and thus it will require a VM player to run. Following are the links to download AppUse and VMware Player -
<ol>
<li>
<a href="https://appsec-labs.com/appuse-pro/" target="_blank">AppUse</a>
Expand Down Expand Up @@ -263,7 +263,7 @@ <h3 class="content-title">Memory Dump Analysis</h3>
<br>
</li>
<li>
Android emulator - For the purpose of this example we used a custom built vulnerable app called HackMePal
Android emulator - For the purpose of this tutorial we used a custom built vulnerable app called <b>HackMePal</b> by AppSec Labs
<div class="d-flex align-items-center justify-content-center">
<img src="assets/img/security_analysis/dyn_analysis-3.png" alt="Dynamic Analysis" class="img-fluid">
</div>
Expand Down Expand Up @@ -323,20 +323,20 @@ <h3 class="content-title">Debugging</h3>
</p>
<ol>
<li>
Decode apk in debug mode
<code> apktool d -d app.apk out </code>
Decode apk in debug mode <br>
<pre><code class="console text-light bg-dark">apktool d -d app.apk out</code></pre>
</li>
<li>
Make it debuggable in the AndroidManifest.xml <application/> tag
<code> <application .. android:debuggable="true"/> </code>
Make it debuggable in the <code> AndroidManifest.xml </code> application tag <br>
<pre><code class="console text-light bg-dark">&lt;application .. android:debuggable="true"/&gt; </code></pre>
</li>
<li>
Build new apk in debug mode
<code> apktool b -d out </code>
Build new apk in debug mode <br>
<pre><code class="console text-light bg-dark">apktool b -d out</code></pre>
</li>
<li>
Sign, install, and run new apk
<code> signapk input.apk </code>
<pre><code class="console text-light bg-dark">signapk input.apk </code></pre>
</li>
<li>
Create Netbeans project with the smali code
Expand Down

0 comments on commit 9352997

Please sign in to comment.