DaliVM
Dalvik bytecode emulator for Android static analysis | String decryption | Multi-DEX | No Android runtime required
File Explorer
- .DS_Store
- __init__.py
- config.py
- context_hooks.py
- dispatch.py
- factories.py
- reflection_hooks.py
- utility_hooks.py
- .DS_Store
- __init__.py
- arithmetic.py
- array.py
- base.py
- const.py
- control.py
- field.py
- invoke.py
- move.py
- objects.py
- return_.py
- .DS_Store
- __init__.py
- android_mocks.py
- class_loader.py
- colors.py
- dependency_analyzer.py
- dex_parser.py
- forward_lookup.py
- memory.py
- static_analysis.py
- types.py
- utils.py
- vm.py
- forwardtest.apk
- test.apk
- .DS_Store
- __init__.py
- test_android_mocks.py
- test_cmds.txt
- test_hooks.py
- test_opcodes.py
- .DS_Store
- .gitignore
- cli.py
- DEVGUIDE.md
- emulate.py
- LICENSE
- README.md
- requirements.txt
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
