Monday, April 8, 2019

Hacking Windows with CHAOS Framework

CHAOS is a tool that allows you to generate payloads and control remote operating systems. See the video below to learn how to install and run CHAOS on your Kali machine.



How to Install

# Install dependencies
$ sudo apt install golang git -y

# Get this repository
$ go get github.com/tiagorlampert/CHAOS

# Get external golang dependencies (ARE REQUIRED GET ALL DEPENDENCIES)
$ go get github.com/kbinani/screenshot
$ go get github.com/lxn/win
$ go get github.com/matishsiao/goInfo
$ go get golang.org/x/sys/windows

# Maybe you will see the message "package github.com/lxn/win: build constraints exclude all Go files".

# It's occurs because the libraries are for windows systems, but it necessary to build the payload.

# Go into the repository
$ cd ~/go/src/github.com/tiagorlampert/CHAOS

# Run
$ go run main.go

0 comments:

Post a Comment