Skip to content

Commit

Permalink
1, rename package name ssldump to ecapture .
Browse files Browse the repository at this point in the history
Signed-off-by: CFC4N <[email protected]>
  • Loading branch information
cfc4n committed Mar 15, 2022
1 parent 007fb52 commit e1922ba
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ssldump 介绍
# ecapture 介绍
eBPF HOOK uprobe实现的各种用户态进程的数据捕获,无需改动原程序。
* SSL/HTTPS数据导出功能,针对HTTPS的数据包抓取,不需要导入CA证书。
* bash的命令捕获,HIDS的bash命令监控解决方案。
Expand Down
Binary file modified bin/ecapture
Binary file not shown.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module ssldump
module ecapture

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package main

import (
"context"
"ecapture/user"
"log"
"os"
"os/signal"
"ssldump/user"
"syscall"
"time"

Expand Down
2 changes: 1 addition & 1 deletion user/probe_bash.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package user
import (
"bytes"
"context"
"ecapture/assets"
"github.com/cilium/ebpf"
manager "github.com/ehids/ebpfmanager"
"github.com/pkg/errors"
"golang.org/x/sys/unix"
"log"
"math"
"ssldump/assets"
)

type MBashProbe struct {
Expand Down
2 changes: 1 addition & 1 deletion user/probe_ssldump.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package user
import (
"bytes"
"context"
"ecapture/assets"
"github.com/cilium/ebpf"
manager "github.com/ehids/ebpfmanager"
"github.com/pkg/errors"
"golang.org/x/sys/unix"
"log"
"math"
"ssldump/assets"
)

type MSSLDumpProbe struct {
Expand Down

0 comments on commit e1922ba

Please sign in to comment.