-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.go
132 lines (99 loc) · 3.53 KB
/
gui.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package main
import (
"fmt"
"image/color"
"net/url"
"strconv"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/canvas"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/dialog"
"fyne.io/fyne/v2/layout"
"fyne.io/fyne/v2/widget"
)
func gui() {
processList, _ := getProcesses()
a := app.New()
w := a.NewWindow("GoInject")
var selectedProcess = widget.NewLabel("-")
var selectedProcessId = widget.NewLabel("-")
processesList := widget.NewList(
func() int {
return len(processList)
},
func() fyne.CanvasObject {
return widget.NewLabel("template")
},
func(i widget.ListItemID, o fyne.CanvasObject) {
o.(*widget.Label).SetText(processList[i].Exe)
})
processesList.OnSelected = func(id widget.ListItemID) {
selectedProcess.SetText(processList[id].Exe)
selectedProcessId.SetText(fmt.Sprintf("%v", processList[id].ProcessID))
}
selectProcessLabel := widget.NewLabel("Select Process:")
processListPane := container.New(layout.NewMaxLayout(), processesList)
processRefreshButton := widget.NewButton("Reload", func() { processList, _ = getProcesses() })
processPane := container.New(layout.NewBorderLayout(selectProcessLabel, processRefreshButton, nil, nil), selectProcessLabel, processRefreshButton, processListPane)
dllInput := widget.NewEntry()
dllInput.SetPlaceHolder("C:\\go.dll")
dllInput.OnChanged = func(s string) { fmt.Println(s) }
browseDllLabel := widget.NewLabel("DLL Path: ")
browseDllButton := widget.NewButton("Browse", func() { showFilePicker(w, dllInput) })
selectDllPane := container.New(layout.NewFormLayout(), browseDllLabel, dllInput)
browsePane := container.New(layout.NewBorderLayout(selectDllPane, nil, nil, nil), selectDllPane, browseDllButton)
injectionMethodLabel := widget.NewLabel("Injection Method:")
methodSelect := widget.NewSelect([]string{"LoadLibraryA"}, func(value string) {
})
methodSelect.Selected = methodSelect.Options[0]
injectionMethodPane := container.New(layout.NewFormLayout(), injectionMethodLabel, methodSelect)
processLabel := widget.NewLabel("Target Process: ")
injectionProcessPane := container.New(layout.NewFormLayout(), processLabel, selectedProcess)
processIdLabel := widget.NewLabel("Target Process ID:")
injectionPidPane := container.New(layout.NewFormLayout(), processIdLabel, selectedProcessId)
injectButton := widget.NewButton("Inject", func() {
i, _ := strconv.Atoi(selectedProcessId.Text)
injectDll(dllInput.Text, i)
})
bottomPane := container.New(layout.NewVBoxLayout(), injectionMethodPane, injectionProcessPane, injectionPidPane, injectButton)
hSplit := container.NewHSplit(
processPane,
browsePane,
)
vSplit := container.NewVSplit(hSplit, bottomPane)
url, _ := url.Parse("https://github.com/tjandy98/goinject")
text := canvas.NewText("GoInject", color.White)
arch := widget.NewLabel("64-bit")
if getProcessArch() {
arch = widget.NewLabel("32-bit")
}
exeInfo := container.NewVBox(
text,
arch,
)
hyperlink := widget.NewHyperlink("GitHub", url)
sep := widget.NewSeparator()
content := container.New(layout.NewVBoxLayout(), exeInfo, sep, hyperlink)
tabs := container.NewAppTabs(
container.NewTabItem("Home", vSplit),
container.NewTabItem("About", container.NewCenter(content)),
)
hSplit.SetOffset(0.4)
w.Resize(fyne.NewSize(700, 400))
w.SetContent(tabs)
w.ShowAndRun()
}
func showFilePicker(w fyne.Window, e *widget.Entry) {
onSelect := func(f fyne.URIReadCloser, err error) {
if err != nil {
fmt.Println(err)
return
}
if f == nil {
return
}
e.SetText(f.URI().Path())
}
dialog.ShowFileOpen(onSelect, w)
}