File tree 6 files changed +18
-10
lines changed
6 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Latest Tag] [ 6 ]] [ 5 ] [ ![ CI] [ 3 ]] [ 4 ] [ ![ Go Report] [ 1 ]] [ 2 ] ![ GitHub Releases] [ 8 ]
4
4
5
- Experimental Go language CSGO exploit proof-of-concept. Automated tests utilizing stubbed external processes.
5
+ Experimental Go language CSGO exploit proof-of-concept.
6
6
7
7
## Features
8
8
9
- - Trigger Bot (hold shift)
10
- - Bunny Hop (hold space)
9
+ - Trigger Bot (hold shift).
10
+ - Bunny Hop (hold space).
11
+ - Offsets Autoupdate From [ Hazedumper] [ 9 ] .
12
+ - Automated tests utilizing stubbed external processes to avoid needing binary compatability.
11
13
12
14
## Screenshots
13
15
@@ -46,3 +48,4 @@ go install github.com/jamesmoriarty/gohack
46
48
[ 6 ] : https://img.shields.io/github/v/tag/jamesmoriarty/gohack.svg?logo=github&label=latest
47
49
[ 7 ] : https://github.com/1jz/csgo-go-bhop
48
50
[ 8 ] : https://img.shields.io/github/downloads/jamesmoriarty/gohack/total
51
+ [ 9 ] : https://github.com/frk1/hazedumper
Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ package main
2
2
3
3
import (
4
4
"fmt"
5
+ "os"
6
+
5
7
"github.com/jamesmoriarty/gohack"
6
8
log "github.com/sirupsen/logrus"
7
- "os"
8
9
)
9
10
10
11
func PrintBanner () {
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package gohack
2
2
3
3
import (
4
4
"errors"
5
+
5
6
"github.com/jamesmoriarty/gohack/internal/gohack"
6
7
"github.com/jamesmoriarty/gomem"
7
8
log "github.com/sirupsen/logrus"
Original file line number Diff line number Diff line change 1
1
package gohack
2
2
3
3
import (
4
- "github.com/jamesmoriarty/gomem"
5
- "time"
6
4
"runtime"
5
+ "time"
7
6
"unsafe"
7
+
8
+ "github.com/jamesmoriarty/gomem"
8
9
)
9
10
10
11
func RunBHOP (client * Client ) {
Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ package gohack
2
2
3
3
import (
4
4
"errors"
5
- "gopkg.in/yaml.v2"
6
5
"io/ioutil"
7
6
"net/http"
7
+
8
+ "gopkg.in/yaml.v2"
8
9
)
9
10
10
11
const (
@@ -19,7 +20,7 @@ type Offsets struct {
19
20
OffsetdwForceAttack uintptr `yaml:"dwForceAttack"`
20
21
} `yaml:"signatures"`
21
22
Netvars struct {
22
- Offsetm_fFlags uintptr `yaml:"m_fFlags"`
23
+ Offsetm_fFlags uintptr `yaml:"m_fFlags"`
23
24
Offsetm_iCrosshairId uintptr `yaml:"m_iCrosshairId"`
24
25
} `yaml:"netvars"`
25
26
}
Original file line number Diff line number Diff line change 1
1
package gohack
2
2
3
3
import (
4
- "github.com/jamesmoriarty/gomem"
5
- "time"
6
4
"runtime"
5
+ "time"
7
6
"unsafe"
7
+
8
+ "github.com/jamesmoriarty/gomem"
8
9
)
9
10
10
11
func RunTrigger (client * Client ) {
You can’t perform that action at this time.
0 commit comments