Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove egg depreciation with support for >=python3.6 #12

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified .gitignore
100644 → 100755
Empty file.
14 changes: 11 additions & 3 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# Xamarin AssemblyStore Explorer (pyxamstore)
This is an alpha release of an `assemblies.blob` AssemblyStore parser written in Python. The tool is capable of unpack and repackaging `assemblies.blob` and `assemblies.manifest` Xamarin files from an APK.

> [!TIP]
> If you're looking for AssemblyStoreV2 new format support, check out [new](https://github.com/AbhiTheModder/pyxamstore/tree/new) branch.

## Installing
Run the installer script:
- Using `pip` [recommended]:
```shell
pip install -U git+https://github.com/AbhiTheModder/pyxamstore
```

python setup.py install
## Building Yourself
```shell
pip3 install build && python3 -m build && pip install --force-reinstall dist/pyxamstore-1.0.0-py3-none-any.whl
```

You can then use the tool by calling `pyxamstore`

Expand All @@ -28,5 +37,4 @@ From here you'll need to copy the new manifest and blobs as well as repackage/si
Additional file format details can be found on my [personal website](https://www.thecobraden.com/posts/unpacking_xamarin_assembly_stores/).

# Known Limitations
* Python3 support (working on it!)
* DLLs that have debug/config data associated with them
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[tool.poetry]
name = "pyxamstore"
version = "1.0.0"
description = "Python utility for parsing Xamarin AssemblyStore blob files"
authors = ["jakev", "AbhiTheModder"]
keywords = ["android", "device", "security", "mobile", "reverse-engineering", "Xamarin", "AssemblyStore", "reverse", "hacking"]

classifiers = [
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jakev/pyxamstore"
repository = "https://github.com/jakev/pyxamstore"
documentation = "https://github.com/jakev/pyxamstore"

[tool.poetry.dependencies]
python = "^3.6"
lz4 = "^4.3.3"
xxhash = "^3.4.1"
future = "^1.0.0"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
pyxamstore = "pyxamstore:main"
Loading