Skip to content

Commit

Permalink
Merge pull request #37 from mvt-project/fix/repo-module-path
Browse files Browse the repository at this point in the history
Fix GitHub module path
  • Loading branch information
DonnchaC authored Dec 19, 2023
2 parents e96cdd4 + ede4c55 commit de4c9ec
Show file tree
Hide file tree
Showing 26 changed files with 62 additions and 62 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# androidqf

[![Go Report Card](https://goreportcard.com/badge/github.com/mvt/androidqf)](https://goreportcard.com/report/github.com/mvt/androidqf)
[![Go Report Card](https://goreportcard.com/badge/github.com/mvt-project/androidqf)](https://goreportcard.com/report/github.com/mvt-project/androidqf)

androidqf (Android Quick Forensics) is a portable tool to simplify the acquisition of relevant forensic data from Android devices. It is the successor of [Snoopdroid](https://github.com/mvt/snoopdroid), re-written in Go and leveraging official adb binaries. androidqf was originally developed by [Claudio Guarnieri](https://github.com/botherder/) and is now maintained by [Amnesty International's Security Lab](https://amnesty.tech/).

Expand Down
6 changes: 3 additions & 3 deletions acquisition/acquisition.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import (
"github.com/botherder/go-savetime/hashes"
rt "github.com/botherder/go-savetime/runtime"
"github.com/google/uuid"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/assets"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/assets"
"github.com/mvt-project/androidqf/log"
)

// Acquisition is the main object containing all phone information
Expand Down
2 changes: 1 addition & 1 deletion acquisition/secure.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"filippo.io/age"
"github.com/botherder/go-savetime/files"
saveRuntime "github.com/botherder/go-savetime/runtime"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/log"
)

func (a *Acquisition) StoreSecurely() error {
Expand Down
2 changes: 1 addition & 1 deletion adb/adb.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"os/exec"
"strings"

"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/log"
)

type ADB struct {
Expand Down
2 changes: 1 addition & 1 deletion adb/adb_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"path/filepath"

saveRuntime "github.com/botherder/go-savetime/runtime"
"github.com/mvt/androidqf/assets"
"github.com/mvt-project/androidqf/assets"
)

func (a *ADB) findExe() error {
Expand Down
2 changes: 1 addition & 1 deletion adb/adb_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"path/filepath"

saveRuntime "github.com/botherder/go-savetime/runtime"
"github.com/mvt/androidqf/assets"
"github.com/mvt-project/androidqf/assets"
)

func (a *ADB) findExe() error {
Expand Down
4 changes: 2 additions & 2 deletions adb/adb_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"os/exec"
"path/filepath"

"github.com/mvt/androidqf/assets"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/assets"
"github.com/mvt-project/androidqf/log"
)

func (a *ADB) findExe() error {
Expand Down
4 changes: 2 additions & 2 deletions adb/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"path/filepath"
"strings"

"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/log"

"github.com/mvt/androidqf/assets"
"github.com/mvt-project/androidqf/assets"
)

type Collector struct {
Expand Down
2 changes: 1 addition & 1 deletion adb/packages.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"

"github.com/avast/apkverifier"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/log"
)

type PackageFile struct {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/mvt/androidqf
module github.com/mvt-project/androidqf

go 1.20

Expand Down
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import (
"time"

"github.com/i582/cfmt/cmd/cfmt"
"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt/androidqf/modules"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
"github.com/mvt-project/androidqf/modules"
)

func init() {
Expand Down
6 changes: 3 additions & 3 deletions modules/backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"path/filepath"

"github.com/manifoldco/promptui"
"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions modules/dumpsys.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"path/filepath"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Dumpsys struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"path/filepath"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Environment struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"path/filepath"

"github.com/botherder/go-savetime/slice"
"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Files struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/getprop.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"path/filepath"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type GetProp struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/logcat.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"path/filepath"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Logcat struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"strings"

"github.com/botherder/go-savetime/text"
"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Logs struct {
Expand Down
2 changes: 1 addition & 1 deletion modules/modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"fmt"
"os"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt-project/androidqf/acquisition"
)

type Module interface {
Expand Down
8 changes: 4 additions & 4 deletions modules/packages.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"strings"

"github.com/manifoldco/promptui"
"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt/androidqf/utils"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
"github.com/mvt-project/androidqf/utils"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions modules/processes.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"path/filepath"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Processes struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/root_binaries.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"path/filepath"
"strings"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type RootBinaries struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/selinux.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"path/filepath"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type SELinux struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"path/filepath"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Services struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"fmt"
"path/filepath"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Settings struct {
Expand Down
6 changes: 3 additions & 3 deletions modules/temp.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"path/filepath"
"strings"

"github.com/mvt/androidqf/acquisition"
"github.com/mvt/androidqf/adb"
"github.com/mvt/androidqf/log"
"github.com/mvt-project/androidqf/acquisition"
"github.com/mvt-project/androidqf/adb"
"github.com/mvt-project/androidqf/log"
)

type Temp struct {
Expand Down

0 comments on commit de4c9ec

Please sign in to comment.