
House
#Access Control#Specialized Security
A security testing framework for Android with tools to search for vulnerabilities and interact with the Android Runtime.
House: A Runtime Mobile Application Analysis Toolkit
House is a toolkit designed for analyzing runtime mobile applications. It features a web-based graphical user interface (GUI) and is powered by Frida. The toolkit is written in Python.
Designed to Assist in Mobile Application Assessment
This tool is developed to assist in evaluating mobile applications by utilizing dynamic function hooking and interception techniques. It aims to simplify the process of writing Frida scripts as much as possible.
TL;DR
```git clone https://github.com/nccgroup/house
cd house
pip3 install -r requirements.txt
pip3 install pipenv
pipenv --python=/usr/bin/python3 install
pipenv --python=/usr/bin/python3 shell
python3 app.py
# or:
mkvirtualenv --python=/usr/local/bin/python3 house
workon house
pip install -r requirements.txt
python app.py
# or: (only for Mac OS)
git clone https://github.com/nccgroup/house
cd house
pip3 install -r requirements.txt
pip3 install pipenv
pipenv --python=/usr/local/bin/python3 install
pipenv --python=/usr/local/bin/python3 shell
python3 app.py
```
By default, House listens on http://127.0.0.1:8000. For a comprehensive overview of House's capabilities, please refer to the user's manual for more details.