-
Notifications
You must be signed in to change notification settings - Fork 786
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #769 from guardicore/release/1.9.0
Release/1.9.0
- Loading branch information
Showing
2,207 changed files
with
58,697 additions
and
5,874 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,32 @@ | ||
--- | ||
name: 🐛 Bug report | ||
about: Create a report to help us fix things! | ||
|
||
--- | ||
|
||
<!-- | ||
Thank you for reporting a bug to make Infection Monkey better. | ||
Please fill in as much of the template below as you're able. | ||
--> | ||
|
||
## Describe the bug | ||
A clear and concise description of what the bug is. | ||
|
||
## To Reproduce | ||
Steps to reproduce the behavior: | ||
1. Configure the Monkey with X settings | ||
2. Run the monkey on specific machine | ||
3. See error | ||
|
||
## Expected behavior | ||
A description of what you expected to happen. | ||
|
||
## Screenshots | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
## Machine version (please complete the following information): | ||
- OS: Windows or Linux | ||
--- | ||
name: "\U0001F41B Bug report" | ||
about: Create a report to help us fix things! | ||
title: '' | ||
labels: Bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- | ||
Thank you for reporting a bug to make Infection Monkey better. | ||
Please fill in as much of the template below as you're able. | ||
--> | ||
|
||
## Describe the bug | ||
A clear and concise description of what the bug is. | ||
|
||
## To Reproduce | ||
Steps to reproduce the behavior: | ||
1. Configure the Monkey with X settings | ||
2. Run the monkey on specific machine | ||
3. See error | ||
|
||
## Expected behavior | ||
A description of what you expected to happen. | ||
|
||
## Screenshots | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
## Machine version (please complete the following information): | ||
- OS: Windows or Linux |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: "\U0001F4C3 Documentation request" | ||
about: Suggest additions or fixes to our documentation hub! | ||
title: '' | ||
labels: Documentation | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Documentation request | ||
|
||
<!-- Choose: adding a new page, or edit existing content. --> | ||
|
||
### Add a new page 🆕 | ||
|
||
**What documentation you'd like us to add?** | ||
Put suggestion here. | ||
|
||
**Where in the documentation tree?** | ||
Put section here. | ||
|
||
### Edit existing content 📝 | ||
|
||
**Which page(s) do you want us to edit?** | ||
Put link here. | ||
|
||
**What do you think should be changed?** | ||
Put requested changes here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,44 @@ | ||
#!/usr/bin/env bash | ||
# Absolute monkey's path | ||
MONKEY_FOLDER_NAME="infection_monkey" | ||
export MONKEY_FOLDER_NAME="infection_monkey" | ||
# Url of public git repository that contains monkey's source code | ||
MONKEY_GIT_URL="https://github.com/guardicore/monkey" | ||
export MONKEY_GIT_URL="https://github.com/guardicore/monkey" | ||
|
||
get_latest_release() { | ||
curl --silent "https://api.github.com/repos/$1/releases/latest" | # Get latest release from GitHub API | ||
grep '"tag_name":' | # Get tag line | ||
sed -E 's/.*"([^"]+)".*/\1/' # Pluck JSON value | ||
} | ||
|
||
MONKEY_LATEST_RELEASE=$(get_latest_release "monkey/guardicore") | ||
|
||
# Monkey binaries | ||
LINUX_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/v1.7.0/monkey-linux-32" | ||
LINUX_32_BINARY_NAME="monkey-linux-32" | ||
LINUX_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/v1.7.0/monkey-linux-64" | ||
LINUX_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/$($MONKEY_LATEST_RELEASE)/monkey-linux-32" | ||
export LINUX_32_BINARY_URL | ||
export LINUX_32_BINARY_NAME | ||
|
||
LINUX_64_BINARY_NAME="monkey-linux-64" | ||
WINDOWS_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/v1.7.0/monkey-windows-32.exe" | ||
LINUX_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/$($MONKEY_LATEST_RELEASE)/monkey-linux-64" | ||
export LINUX_64_BINARY_URL | ||
export LINUX_64_BINARY_NAME | ||
|
||
WINDOWS_32_BINARY_NAME="monkey-windows-32.exe" | ||
WINDOWS_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/v1.7.0/monkey-windows-64.exe" | ||
WINDOWS_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/$($MONKEY_LATEST_RELEASE)/monkey-windows-32.exe" | ||
export WINDOWS_32_BINARY_URL | ||
export WINDOWS_32_BINARY_NAME | ||
|
||
WINDOWS_64_BINARY_NAME="monkey-windows-64.exe" | ||
WINDOWS_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/$($MONKEY_LATEST_RELEASE)/monkey-windows-64.exe" | ||
export WINDOWS_64_BINARY_URL | ||
export WINDOWS_64_BINARY_NAME | ||
|
||
# Other binaries for monkey | ||
TRACEROUTE_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/v1.7.0/traceroute64" | ||
TRACEROUTE_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/v1.7.0/traceroute32" | ||
SAMBACRY_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/v1.7.0/sc_monkey_runner64.so" | ||
SAMBACRY_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/v1.7.0/sc_monkey_runner32.so" | ||
TRACEROUTE_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/$($MONKEY_LATEST_RELEASE)/traceroute64" | ||
export TRACEROUTE_64_BINARY_URL | ||
TRACEROUTE_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/$($MONKEY_LATEST_RELEASE)/traceroute32" | ||
export TRACEROUTE_32_BINARY_URL | ||
SAMBACRY_64_BINARY_URL="https://github.com/guardicore/monkey/releases/download/$($MONKEY_LATEST_RELEASE)/sc_monkey_runner64.so" | ||
export SAMBACRY_64_BINARY_URL | ||
SAMBACRY_32_BINARY_URL="https://github.com/guardicore/monkey/releases/download/$($MONKEY_LATEST_RELEASE)/sc_monkey_runner32.so" | ||
export SAMBACRY_32_BINARY_URL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/public/ | ||
/resources/_gen/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Monkey documentation | ||
|
||
This folder contains the Monkey Documentation site. | ||
|
||
For more information see `content/development/contribute-documentation.md`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "{{ replace .Name "-" " " | title }}" | ||
date: {{ .Date }} | ||
draft: true | ||
--- | ||
|
Oops, something went wrong.