Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/h0x0er/andromanifest
AndroidManifest.xml parser written in go
https://github.com/h0x0er/andromanifest
android android-manifest androidsecurity bugbounty golang mobile security-tools
Last synced: 11 days ago
JSON representation
AndroidManifest.xml parser written in go
- Host: GitHub
- URL: https://github.com/h0x0er/andromanifest
- Owner: h0x0er
- License: gpl-2.0
- Created: 2021-07-10T18:07:12.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-11T15:29:23.000Z (about 3 years ago)
- Last Synced: 2024-08-05T17:30:54.971Z (3 months ago)
- Topics: android, android-manifest, androidsecurity, bugbounty, golang, mobile, security-tools
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 8
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - h0x0er/andromanifest - AndroidManifest.xml parser written in go (Go)
README
# Andromanifest
AndroidManifest.xml parser written in go# Usage
```go
package main
import "io/ioutil"
import "fmt"
import "github.com/h0x0er/andromanifest"func main(){
mf, _ := androidmainfest.NewFromFile("/path/to/AndroidManifest.xml")
fmt.Println(mf.Package) // prints the package name}
```