Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
bump DB to 6.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Nov 24, 2018
1 parent 18bf734 commit 4a0e0e5
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ data/befb88b89c2eb401900a68e9f5b78764203f2b48264fcc3f7121bf04a57fd408
data/output.md
.helpers/
_vendor-20180727160245/
*.log
2 changes: 1 addition & 1 deletion .release/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.3.25
v0.3.26
22 changes: 16 additions & 6 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Vagrant.configure("2") do |config|
# Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "ubuntu/xenial64"

# vagrant plugin install vagrant-disksize
config.disksize.size = '25GB'
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
# `vagrant box outdated`. This is not recommended.
Expand All @@ -23,6 +24,8 @@ Vagrant.configure("2") do |config|
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
config.vm.network "forwarded_port", guest: 2345, host: 2345
config.vm.network "forwarded_port", guest: 9200, host: 9200
config.vm.network "forwarded_port", guest: 80, host: 8080

# Create a private network, which allows host-only access to the machine
# using a specific IP.
Expand All @@ -46,10 +49,10 @@ Vagrant.configure("2") do |config|
config.vm.provider "virtualbox" do |vb|
# Display the VirtualBox GUI when booting the machine
vb.gui = false

vb.name = "malice-box"
# Customize the amount of memory on the VM:
vb.memory = "8192"
vb.cpus = 4
vb.memory = "4096"
vb.cpus = 2
end

# View the documentation for the provider you are using for more
Expand Down Expand Up @@ -90,9 +93,16 @@ Vagrant.configure("2") do |config|
echo 'export PATH=$PATH:/usr/local/go/bin' >> /home/vagrant/.bashrc
echo 'export GOPATH=/home/vagrant/go' >> /home/vagrant/.bashrc
echo 'export PATH=$PATH:/home/vagrant/go/bin' >> /home/vagrant/.bashrc
go get -u github.com/derekparker/delve/cmd/dlv
go get -u github.com/golang/dep/cmd/dep
go get -v github.com/maliceio/malice
cd /home/vagrant/go/src/github.com/maliceio/malice
/home/vagrant/go/bin/dep ensure
echo "Installing Malice ==============================="
export MALICE_VERSION=0.3.25
sudo apt-get install -y libmagic-dev build-essential
wget https://github.com/maliceio/malice/releases/download/v0.3.24/malice_0.3.24_linux_amd64.deb -O /tmp/malice_0.3.24_linux_amd64.deb
sudo dpkg -i /tmp/malice_0.3.24_linux_amd64.deb
wget https://github.com/maliceio/malice/releases/download/v${MALICE_VERSION}/malice_${MALICE_VERSION}_linux_amd64.deb -O /tmp/malice_${MALICE_VERSION}_linux_amd64.deb
sudo dpkg -i /tmp/malice_${MALICE_VERSION}_linux_amd64.deb
echo "vm.max_map_count=262144" | sudo tee -a /etc/sysctl.conf
SHELL
end
4 changes: 2 additions & 2 deletions config/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions config/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#######################################################################

title = "Malice Runtime Configuration"
version = "v0.3.25"
version = "v0.3.26"

[author]
name = "blacktop"
Expand All @@ -24,7 +24,7 @@ version = "v0.3.25"

[database]
name = "malice-elastic"
image = "malice/elasticsearch:6.4"
image = "malice/elasticsearch:6.5"
url = "http://localhost:9200"
# url = "http://elasticsearch:9200"
username = ""
Expand All @@ -35,7 +35,7 @@ version = "v0.3.25"

[ui]
name = "malice-kibana"
image = "malice/kibana:6.4"
image = "malice/kibana:6.5"
server = "localhost"
ports = [443]
enabled = true
Expand Down

0 comments on commit 4a0e0e5

Please sign in to comment.