File tree Expand file tree Collapse file tree 12 files changed +755
-12
lines changed
selenium-standalone-provisioner Expand file tree Collapse file tree 12 files changed +755
-12
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 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
218const ECS = require ( 'aws-sdk/clients/ecs' ) ; // eslint-disable-line import/no-unresolved
319
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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
218const ECS = require ( 'aws-sdk/clients/ecs' ) ; // eslint-disable-line import/no-unresolved
319
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 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+
117const axios = require ( 'axios' ) ;
218
319const internals = { } ;
Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff line change 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+
117const axios = require ( 'axios' ) ;
218
319const internals = { } ;
Original file line number Diff line number Diff line change 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 },
Original file line number Diff line number Diff line change 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+
117const axios = require ( 'axios' ) ;
218
319const internals = { } ;
You can’t perform that action at this time.
0 commit comments