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

Data calculate trace #187

Merged
merged 37 commits into from
Jan 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
2f4e08d
remove cgo
ddkwork Nov 15, 2024
e4e8103
remove cgo
ddkwork Nov 15, 2024
caae0ae
remove cgo
ddkwork Nov 16, 2024
267928a
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
d03667c
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
443ecd6
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
b118fba
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
95bfe33
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
9299246
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
88bc78b
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
b268fe9
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
5590f41
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
3675c48
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
14c5e06
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
151086d
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
e9d800c
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
149eafa
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
b0b7091
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
7284529
fix https://github.com/ddkwork/debuger/issues/10
ddkwork Nov 24, 2024
d65c4f0
start binding
ddkwork Nov 29, 2024
0c3088f
start binding
ddkwork Nov 29, 2024
bb51801
start binding
ddkwork Nov 30, 2024
1f91407
start binding
ddkwork Nov 30, 2024
981f0b1
start binding
ddkwork Nov 30, 2024
994a741
start binding
ddkwork Nov 30, 2024
114af33
start binding
ddkwork Nov 30, 2024
704789f
start binding
ddkwork Dec 1, 2024
9fe8def
fix https://github.com/goradd/maps/issues/15
ddkwork Dec 1, 2024
eba1a73
fix https://github.com/goradd/maps/issues/15
ddkwork Dec 1, 2024
7ec8237
fix https://github.com/goradd/maps/issues/15
ddkwork Dec 1, 2024
9817aab
init
ddkwork Dec 1, 2024
a89e029
init
ddkwork Dec 1, 2024
05f011d
init
ddkwork Dec 1, 2024
0c2a6b7
init
ddkwork Dec 6, 2024
c4019e6
dev
ddkwork Jan 1, 2025
4b78ac9
dev
ddkwork Jan 1, 2025
2cd8b21
dev
ddkwork Jan 1, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.23.0'
go-version: '1.23.3'

- name: Install dependencies
run: go mod tidy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'
go-version: '1.23.3'

- name: Install GCC on Windows
run: choco install mingw
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'
go-version: '1.23.3'

- name: Install GCC on Windows
run: choco install mingw
Expand Down
46 changes: 19 additions & 27 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,44 +1,36 @@
module github.com/ddkwork/HyperDbg

go 1.23.0
go 1.23.3

require (
github.com/ddkwork/app v0.0.0-20241026164255-6ce9e6cb2eb3
github.com/ddkwork/golibrary v0.0.0-20241109061650-bd3e94f7b3cf
github.com/ddkwork/app v0.0.0-20250101101805-a60d5b5cd452
github.com/ddkwork/golibrary v0.0.0-20250101093329-d96f6524ebe4
github.com/ddkwork/unison v0.0.0-20241013162326-b9a18ce1a207
github.com/ebitengine/purego v0.8.0
github.com/saferwall/pe v1.5.4
github.com/ebitengine/purego v0.8.1
github.com/saferwall/pe v1.5.6
github.com/tc-hib/winres v0.3.1
github.com/winlabs/gowin32 v0.0.0-20240930213947-f504d7e14639
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c
golang.org/x/image v0.21.0
golang.org/x/sys v0.26.0
golang.org/x/image v0.23.0
golang.org/x/sys v0.28.0

)

require (
gioui.org v0.7.1 // indirect
gioui.org/cpu v0.0.0-20220412190645-f1e9e8c3b1f7 // indirect
gioui.org/shader v1.0.8 // indirect
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
github.com/aquasecurity/table v1.8.0 // indirect
github.com/axgle/mahonia v0.0.0-20180208002826-3358181d7394 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dave/dst v0.27.3 // indirect
github.com/dc0d/caseconv v0.5.0 // indirect
github.com/ddkwork/toolbox v0.0.0-20241013161004-026a13407120 // indirect
github.com/ddkwork/toolbox v0.0.0-20241116165817-883d5d7d379c // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/edsrzf/mmap-go v1.1.0 // indirect
github.com/fatih/color v1.17.0 // indirect
github.com/go-enry/go-enry/v2 v2.8.8 // indirect
github.com/edsrzf/mmap-go v1.2.0 // indirect
github.com/go-enry/go-enry/v2 v2.9.1 // indirect
github.com/go-enry/go-oniguruma v1.2.1 // indirect
github.com/go-text/typesetting v0.1.2 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorpher/gowin32 v0.0.11 // indirect
github.com/gorpher/gowin32 v0.0.12 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
Expand All @@ -49,14 +41,14 @@ require (
github.com/spf13/pflag v1.0.5 // indirect
github.com/spyre-project/spyre v1.2.5 // indirect
github.com/valyala/fastjson v1.6.4 // indirect
github.com/yuin/goldmark v1.7.6 // indirect
golang.org/x/arch v0.8.0 // indirect
golang.org/x/exp/shiny v0.0.0-20241009180824-f66d83c29e7c // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/term v0.25.0 // indirect
golang.org/x/text v0.19.0 // indirect
golang.org/x/tools v0.26.0 // indirect
github.com/yuin/goldmark v1.7.8 // indirect
golang.org/x/arch v0.12.0 // indirect
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/tools v0.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
mvdan.cc/gofumpt v0.7.0 // indirect
)
97 changes: 36 additions & 61 deletions go.sum

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"github.com/ddkwork/unison"
)

// RtlGenRandom
func main() {
// testSdkCommands()
sdk.TargetFilePath = "testdata/asm.exe"
Expand Down
6 changes: 3 additions & 3 deletions main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ import (
)

func TestUpdateAppModule(t *testing.T) {
if !stream.IsDir("D:\\workspace\\workspace\\app") {
if !stream.IsDir("D:\\workspace\\workspace\\demo\\app") {
return
}
mylog.Check(os.Chdir("D:\\workspace\\workspace\\app"))
mylog.Check(os.Chdir("D:\\workspace\\workspace\\demo\\app"))
session := stream.RunCommand("git log -1 --format=\"%H\"")
mylog.Check(os.Chdir("D:\\workspace\\workspace\\gui"))
id := mylog.Check2(strconv.Unquote(session.Output.String()))
mylog.Info("id", id)
stream.RunCommand("go get github.com/ddkwork/app@" + id)
}

func TestUpdateSDKAndBin(t *testing.T) {
func TestUpdateSDKAndBin(t *testing.T) { // todo use abs path, don't copy bin dir to here
if !stream.IsDir("bin") {
return
}
Expand Down
Loading