Skip to content

Commit de4c9ec

Browse files
authored
Merge pull request #37 from mvt-project/fix/repo-module-path
Fix GitHub module path
2 parents e96cdd4 + ede4c55 commit de4c9ec

26 files changed

+62
-62
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# androidqf
22

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

55
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/).
66

acquisition/acquisition.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import (
1717
"github.com/botherder/go-savetime/hashes"
1818
rt "github.com/botherder/go-savetime/runtime"
1919
"github.com/google/uuid"
20-
"github.com/mvt/androidqf/adb"
21-
"github.com/mvt/androidqf/assets"
22-
"github.com/mvt/androidqf/log"
20+
"github.com/mvt-project/androidqf/adb"
21+
"github.com/mvt-project/androidqf/assets"
22+
"github.com/mvt-project/androidqf/log"
2323
)
2424

2525
// Acquisition is the main object containing all phone information

acquisition/secure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"filippo.io/age"
1616
"github.com/botherder/go-savetime/files"
1717
saveRuntime "github.com/botherder/go-savetime/runtime"
18-
"github.com/mvt/androidqf/log"
18+
"github.com/mvt-project/androidqf/log"
1919
)
2020

2121
func (a *Acquisition) StoreSecurely() error {

adb/adb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os/exec"
1212
"strings"
1313

14-
"github.com/mvt/androidqf/log"
14+
"github.com/mvt-project/androidqf/log"
1515
)
1616

1717
type ADB struct {

adb/adb_darwin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"path/filepath"
1111

1212
saveRuntime "github.com/botherder/go-savetime/runtime"
13-
"github.com/mvt/androidqf/assets"
13+
"github.com/mvt-project/androidqf/assets"
1414
)
1515

1616
func (a *ADB) findExe() error {

adb/adb_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"path/filepath"
1111

1212
saveRuntime "github.com/botherder/go-savetime/runtime"
13-
"github.com/mvt/androidqf/assets"
13+
"github.com/mvt-project/androidqf/assets"
1414
)
1515

1616
func (a *ADB) findExe() error {

adb/adb_windows.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"os/exec"
1212
"path/filepath"
1313

14-
"github.com/mvt/androidqf/assets"
15-
"github.com/mvt/androidqf/log"
14+
"github.com/mvt-project/androidqf/assets"
15+
"github.com/mvt-project/androidqf/log"
1616
)
1717

1818
func (a *ADB) findExe() error {

adb/collector.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"path/filepath"
1414
"strings"
1515

16-
"github.com/mvt/androidqf/log"
16+
"github.com/mvt-project/androidqf/log"
1717

18-
"github.com/mvt/androidqf/assets"
18+
"github.com/mvt-project/androidqf/assets"
1919
)
2020

2121
type Collector struct {

adb/packages.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"strings"
1313

1414
"github.com/avast/apkverifier"
15-
"github.com/mvt/androidqf/log"
15+
"github.com/mvt-project/androidqf/log"
1616
)
1717

1818
type PackageFile struct {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/mvt/androidqf
1+
module github.com/mvt-project/androidqf
22

33
go 1.20
44

main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import (
1212
"time"
1313

1414
"github.com/i582/cfmt/cmd/cfmt"
15-
"github.com/mvt/androidqf/acquisition"
16-
"github.com/mvt/androidqf/adb"
17-
"github.com/mvt/androidqf/log"
18-
"github.com/mvt/androidqf/modules"
15+
"github.com/mvt-project/androidqf/acquisition"
16+
"github.com/mvt-project/androidqf/adb"
17+
"github.com/mvt-project/androidqf/log"
18+
"github.com/mvt-project/androidqf/modules"
1919
)
2020

2121
func init() {

modules/backup.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"path/filepath"
1212

1313
"github.com/manifoldco/promptui"
14-
"github.com/mvt/androidqf/acquisition"
15-
"github.com/mvt/androidqf/adb"
16-
"github.com/mvt/androidqf/log"
14+
"github.com/mvt-project/androidqf/acquisition"
15+
"github.com/mvt-project/androidqf/adb"
16+
"github.com/mvt-project/androidqf/log"
1717
)
1818

1919
const (

modules/dumpsys.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"fmt"
99
"path/filepath"
1010

11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type Dumpsys struct {

modules/env.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"fmt"
99
"path/filepath"
1010

11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type Environment struct {

modules/files.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"path/filepath"
99

1010
"github.com/botherder/go-savetime/slice"
11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type Files struct {

modules/getprop.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"fmt"
99
"path/filepath"
1010

11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type GetProp struct {

modules/logcat.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"fmt"
99
"path/filepath"
1010

11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type Logcat struct {

modules/logs.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"strings"
1212

1313
"github.com/botherder/go-savetime/text"
14-
"github.com/mvt/androidqf/acquisition"
15-
"github.com/mvt/androidqf/adb"
16-
"github.com/mvt/androidqf/log"
14+
"github.com/mvt-project/androidqf/acquisition"
15+
"github.com/mvt-project/androidqf/adb"
16+
"github.com/mvt-project/androidqf/log"
1717
)
1818

1919
type Logs struct {

modules/modules.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"fmt"
1010
"os"
1111

12-
"github.com/mvt/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/acquisition"
1313
)
1414

1515
type Module interface {

modules/packages.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import (
1111
"strings"
1212

1313
"github.com/manifoldco/promptui"
14-
"github.com/mvt/androidqf/acquisition"
15-
"github.com/mvt/androidqf/adb"
16-
"github.com/mvt/androidqf/log"
17-
"github.com/mvt/androidqf/utils"
14+
"github.com/mvt-project/androidqf/acquisition"
15+
"github.com/mvt-project/androidqf/adb"
16+
"github.com/mvt-project/androidqf/log"
17+
"github.com/mvt-project/androidqf/utils"
1818
)
1919

2020
const (

modules/processes.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"fmt"
99
"path/filepath"
1010

11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type Processes struct {

modules/root_binaries.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"path/filepath"
1010
"strings"
1111

12-
"github.com/mvt/androidqf/acquisition"
13-
"github.com/mvt/androidqf/adb"
14-
"github.com/mvt/androidqf/log"
12+
"github.com/mvt-project/androidqf/acquisition"
13+
"github.com/mvt-project/androidqf/adb"
14+
"github.com/mvt-project/androidqf/log"
1515
)
1616

1717
type RootBinaries struct {

modules/selinux.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"fmt"
99
"path/filepath"
1010

11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type SELinux struct {

modules/services.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"fmt"
99
"path/filepath"
1010

11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type Services struct {

modules/settings.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"fmt"
99
"path/filepath"
1010

11-
"github.com/mvt/androidqf/acquisition"
12-
"github.com/mvt/androidqf/adb"
13-
"github.com/mvt/androidqf/log"
11+
"github.com/mvt-project/androidqf/acquisition"
12+
"github.com/mvt-project/androidqf/adb"
13+
"github.com/mvt-project/androidqf/log"
1414
)
1515

1616
type Settings struct {

modules/temp.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"path/filepath"
1111
"strings"
1212

13-
"github.com/mvt/androidqf/acquisition"
14-
"github.com/mvt/androidqf/adb"
15-
"github.com/mvt/androidqf/log"
13+
"github.com/mvt-project/androidqf/acquisition"
14+
"github.com/mvt-project/androidqf/adb"
15+
"github.com/mvt-project/androidqf/log"
1616
)
1717

1818
type Temp struct {

0 commit comments

Comments
 (0)