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

URL changed from akatsuki to sterrasec #18

Merged
merged 1 commit into from
Jan 18, 2025
Merged
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# apkutil

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/aktsk/apkutil/blob/master/LICENSE)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/sterrasec/apkutil/blob/master/LICENSE)

`apkutil` is a useful utility for mobile security testing.
This tool makes it easy to resign the APK, check for potentially sensitive files and `AndroidManifest.xml` in the APK.

It is a wrapper for `apktool`, `apksigner`, `aapt`, and `zipalign` commands.

iOS version is [here](https://github.com/aktsk/ipautil).
iOS version is [here](https://github.com/sterrasec/ipautil).

## Requirements

Expand Down Expand Up @@ -36,7 +36,7 @@ $ keytool -genkeypair -v -keystore hoge.keystore -alias fuga -keyalg RSA -keysiz
Since `apkutil` is implemented in Python, it can be installed with the pip command, which is a Python package management system.

```
$ pip install git+ssh://[email protected]/aktsk/apkutil.git
$ pip install git+ssh://[email protected]/sterrasec/apkutil.git
```

## Usage
Expand Down Expand Up @@ -68,7 +68,7 @@ Most of the subcommands are assigned with alias, which is useful.
`all` subcommand sets networkSecurityConfig, makes the APK debuggable.
Decode the APK, set debuggable attribute to `true`, set networkSecurityConfig attribute to `@xml/network_security_config` in AndroidManifest, make `res/xml/network_security_config.xml`, and rebuild it.

This feature is useful to make APK accept user certs, and use [aktsk/apk-medit](https://github.com/aktsk/apk-medit).
This feature is useful to make APK accept user certs, and use [sterrasec/apk-medit](https://github.com/sterrasec/apk-medit).

```
$ apkutil all sample.apk
Expand Down Expand Up @@ -143,7 +143,7 @@ Output: sample.patched.apk
`debuggable` subcommand makes the APK debuggable.
Decode the APK, set debuggable attribute to `true` in AndroidManifest, and rebuild it.

This feature is useful to use [aktsk/apk-medit](https://github.com/aktsk/apk-medit).
This feature is useful to use [sterrasec/apk-medit](https://github.com/sterrasec/apk-medit).

```
$ apkutil debuggable sample.apk
Expand All @@ -159,7 +159,7 @@ Output: sample.patched.apk
```
$ apkutil info sample.apk
Getting package name by aapt...
A: package="jp.aktsk.sample" (Raw: "jp.aktsk.sample")
A: package="jp.sterrasec.sample" (Raw: "jp.sterrasec.sample")
```

### Get the screenshot
Expand Down
Loading