Skip to content

Commit

Permalink
changes to README
Browse files Browse the repository at this point in the history
  • Loading branch information
pygrum committed Dec 12, 2023
1 parent 500d987 commit 3dd5b36
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 12 deletions.
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,8 @@ from a central hub. This approach empowers administrators to effectively oversee
remote implants, facilitating smooth command execution and data retrieval.

## Installing Monarch
### System requirements
Monarch was primarily developed and tested on Ubuntu. Monarch will work on most Unix-based systems.
For system requirements, see the requirements for Docker Desktop on Mac or Linux.

### Steps

1. Clone the repository
2. Run `bash scripts/install-monarch.sh`

Done! Monarch will be saved at `$HOME/.local/bin` for you to add to your `PATH`.
[Follow the installation instructions here.](https://monarch.gitbook.io/monarch/installation)

## Empress
Empress is the very first integration developed alongside Monarch, and as of version 0.0.1, the most mature.
Expand All @@ -37,6 +29,9 @@ The techniques used to develop the implant and build should be viewed as best pr


## Issues
Issues I'm aware of:
- Backslash replaced with null character on Windows client

If you encounter issues of any sort, please raise a new issue in the
[issues page](https://github.com/pygrum/monarch/issues), especially as this project is in its early stages of development.
I'll do my best to response and resolve the issue on time.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ require (
github.com/opencontainers/runc v1.1.10 // indirect
github.com/pjbgf/sha1cd v0.3.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/reeflective/readline v1.0.10 // indirect
github.com/reeflective/readline v1.0.12 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/rsteube/carapace-shlex v0.1.1 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
Expand Down
4 changes: 4 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ github.com/reeflective/console v0.1.11-0.20231123144104-973f978d8495 h1:cWTj715y
github.com/reeflective/console v0.1.11-0.20231123144104-973f978d8495/go.mod h1:duk21qTQHR4JZx4t5WtJvOZ7/uTYAyHFBZw50WHQL1Y=
github.com/reeflective/readline v1.0.10 h1:neAdbArjB1f5LZ2JBh/9TZ9ibFUrjjvBS8xuhLbx5do=
github.com/reeflective/readline v1.0.10/go.mod h1:mcD0HxNVJVteVwDm9caXKg52nQACVyfh8EyuBmgVlzY=
github.com/reeflective/readline v1.0.11 h1:4+aiebj7a89hTRJOMM98H+md1Kxu+v1XkfdCs0n6odQ=
github.com/reeflective/readline v1.0.11/go.mod h1:mcD0HxNVJVteVwDm9caXKg52nQACVyfh8EyuBmgVlzY=
github.com/reeflective/readline v1.0.12 h1:QPhnlGCqWXR4iZvApU5RJ5Bo3vIaVAW6ICBJ8F8QZII=
github.com/reeflective/readline v1.0.12/go.mod h1:3iOe/qyb2jEy0KqLrNlb/CojBVqxga9ACqz/VU22H6A=
github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis=
github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
Expand Down
2 changes: 0 additions & 2 deletions pkg/commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ func info(systemInfo *clientpb.Registration) *cobra.Command {
"yourself.",
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println()
fmt.Println("System Information")
fmt.Println("==================")
_, _ = fmt.Fprintln(w, fmt.Sprintf("%v\t%v\t", "Agent ID:", systemInfo.AgentId))
Expand All @@ -365,7 +364,6 @@ func info(systemInfo *clientpb.Registration) *cobra.Command {
_, _ = fmt.Fprintln(w, fmt.Sprintf("%v\t%v\t", "Home directory:", systemInfo.HomeDir))
_, _ = fmt.Fprintln(w, fmt.Sprintf("%v\t%v\t", "Remote address:", systemInfo.IPAddress))
_ = w.Flush()
fmt.Println()
},
}
return cmd
Expand Down

0 comments on commit 3dd5b36

Please sign in to comment.