Skip to content

Commit 443c5d7

Browse files
committed
Added copyright & license
1 parent bbaf3b9 commit 443c5d7

File tree

12 files changed

+755
-12
lines changed

12 files changed

+755
-12
lines changed

LICENSE.md

Lines changed: 660 additions & 0 deletions
Large diffs are not rendered by default.

cloud/app-slave-provisioner/index.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright (C) 2017-2021 BinaryMist Limited. All rights reserved.
2+
3+
// This file is part of purpleteam.
4+
5+
// purpleteam is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Affero General Public License as published by
7+
// the Free Software Foundation version 3.
8+
9+
// purpleteam is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU Affero General Public License for more details.
13+
14+
// You should have received a copy of the GNU Affero General Public License
15+
// along with purpleteam. If not, see <https://www.gnu.org/licenses/>.
16+
117
// Doc: https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/ECS.html
218
const ECS = require('aws-sdk/clients/ecs'); // eslint-disable-line import/no-unresolved
319

cloud/app-slave-provisioner/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "app-slave-provisioner",
33
"version": "0.0.0",
4-
"description": "purpleteam app-slave provisioner",
4+
"description": "purpleteam app-slave provisioner for cloud environment",
55
"main": "index.js",
66
"repository": "https://gitlab.com/purpleteam-labs/purpleteam-lambda",
77
"author": "binarymist",
8-
"license": "",
8+
"license": "AGPL-3.0-only",
99
"dependencies": {},
1010
"scripts": {
1111
"deps": "npm-check",

cloud/s2-deprovisioner/index.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright (C) 2017-2021 BinaryMist Limited. All rights reserved.
2+
3+
// This file is part of purpleteam.
4+
5+
// purpleteam is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Affero General Public License as published by
7+
// the Free Software Foundation version 3.
8+
9+
// purpleteam is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU Affero General Public License for more details.
13+
14+
// You should have received a copy of the GNU Affero General Public License
15+
// along with purpleteam. If not, see <https://www.gnu.org/licenses/>.
16+
117
// Doc: https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/ECS.html
218
const ECS = require('aws-sdk/clients/ecs'); // eslint-disable-line import/no-unresolved
319

cloud/s2-deprovisioner/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "s2-deprovisioner",
33
"version": "0.0.0",
4-
"description": "purpleteam s2 deprovisioner",
4+
"description": "purpleteam s2 deprovisioner for cloud environment",
55
"main": "index.js",
66
"repository": "https://gitlab.com/purpleteam-labs/purpleteam-lambda",
77
"author": "binarymist",
8-
"license": "",
8+
"license": "AGPL-3.0-only",
99
"dependencies": {},
1010
"scripts": {
1111
"deps": "npm-check",

local/app-slave-provisioner/index.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright (C) 2017-2021 BinaryMist Limited. All rights reserved.
2+
3+
// This file is part of purpleteam.
4+
5+
// purpleteam is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Affero General Public License as published by
7+
// the Free Software Foundation version 3.
8+
9+
// purpleteam is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU Affero General Public License for more details.
13+
14+
// You should have received a copy of the GNU Affero General Public License
15+
// along with purpleteam. If not, see <https://www.gnu.org/licenses/>.
16+
117
const axios = require('axios');
218

319
const internals = {};

local/app-slave-provisioner/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "app-slave-provisioner",
33
"version": "0.0.0",
4-
"description": "purpleteam app-slave provisioner",
4+
"description": "purpleteam app-slave provisioner for local environment",
55
"main": "index.js",
66
"repository": "https://gitlab.com/purpleteam-labs/purpleteam-lambda",
77
"author": "binarymist",
8-
"license": "",
8+
"license": "AGPL-3.0-only",
99
"dependencies": {
1010
"axios": "^0.21.0"
1111
},

local/s2-deprovisioner/index.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright (C) 2017-2021 BinaryMist Limited. All rights reserved.
2+
3+
// This file is part of purpleteam.
4+
5+
// purpleteam is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Affero General Public License as published by
7+
// the Free Software Foundation version 3.
8+
9+
// purpleteam is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU Affero General Public License for more details.
13+
14+
// You should have received a copy of the GNU Affero General Public License
15+
// along with purpleteam. If not, see <https://www.gnu.org/licenses/>.
16+
117
const axios = require('axios');
218

319
const internals = {};

local/s2-deprovisioner/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "s2-deprovisioner",
33
"version": "0.0.0",
4-
"description": "purpleteam s2 deprovisioner",
4+
"description": "purpleteam s2 deprovisioner for local environment",
55
"main": "index.js",
66
"repository": "https://gitlab.com/purpleteam-labs/purpleteam-lambda",
77
"author": "binarymist",
8-
"license": "",
8+
"license": "AGPL-3.0-only",
99
"dependencies": {
1010
"axios": "^0.21.0"
1111
},

local/selenium-standalone-provisioner/index.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright (C) 2017-2021 BinaryMist Limited. All rights reserved.
2+
3+
// This file is part of purpleteam.
4+
5+
// purpleteam is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU Affero General Public License as published by
7+
// the Free Software Foundation version 3.
8+
9+
// purpleteam is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU Affero General Public License for more details.
13+
14+
// You should have received a copy of the GNU Affero General Public License
15+
// along with purpleteam. If not, see <https://www.gnu.org/licenses/>.
16+
117
const axios = require('axios');
218

319
const internals = {};

0 commit comments

Comments
 (0)