File tree 4 files changed +56
-1
lines changed
4 files changed +56
-1
lines changed Original file line number Diff line number Diff line change
1
+ # General
2
+ .vagrant /
3
+
4
+ # Log files (if you are creating logs in debug mode, uncomment this)
5
+ # *.log
6
+
7
+ * .box
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] [ Keep a Changelog ] and this project adheres to [ Semantic Versioning] [ Semantic Versioning ] .
6
+
7
+ ## [ Unreleased]
8
+
9
+ ---
10
+
11
+ ## [ 0.0.1] - 2020-09-06
12
+
13
+ ### Added
14
+
15
+ - initial release
16
+
17
+ ---
18
+
19
+ <!-- Links -->
20
+ [ Keep a Changelog ] : https://keepachangelog.com/
21
+ [ Semantic Versioning ] : https://semver.org/
22
+
23
+ <!-- Versions -->
24
+ [ Unreleased ] : http://monster/gitlab/crypto/owasp-zap/compare/v0.0.1...HEAD
25
+ [ Released ] : http://monster/gitlab/crypto/owasp-zap/releases
26
+ [ 0.0.2 ] : http://monster/gitlab/crypto/owasp-zap/compare/v0.0.1..v0.0.2
27
+ [ 0.0.1 ] : http://monster/gitlab/crypto/owasp-zap/releases/v0.0.1
Original file line number Diff line number Diff line change 1
1
# owaspzap
2
2
3
- OWASP ZAP調査用のプロジェクト
3
+ OWASP ZAP調査用のプロジェクト
Original file line number Diff line number Diff line change
1
+ # -*- mode: ruby -*-
2
+ # vi: set ft=ruby :
3
+
4
+ Vagrant . configure ( "2" ) do |config |
5
+ config . vm . box = "kalilinux/rolling"
6
+ config . vm . box_version = "2020.3.0"
7
+ config . vm . box_check_update = false
8
+
9
+ config . vm . provider "virtualbox" do |vb |
10
+ vb . name = "owaspzap"
11
+ vb . gui = true
12
+ vb . cpus = 1
13
+ vb . memory = 1024
14
+ end
15
+
16
+ # config.vm.provision "shell", inline: <<-SHELL
17
+ # apt update -y
18
+ # apt upgrade -y
19
+ # apt dist-upgrade -y
20
+ # SHELL
21
+ end
You can’t perform that action at this time.
0 commit comments