Skip to content

Commit eca762b

Browse files
Merge branch 'splunk:develop' into mitre-caldera
2 parents f4f602f + 1c3162d commit eca762b

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

configs/attack_range_default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ phantom_server:
171171
phantom_server: "0"
172172
# Enable/Disable Phantom Server
173173

174-
phantom_app: "splunk_soar-unpriv-6.2.2.134-8f694086-el8-x86_64.tgz"
174+
phantom_app: "splunk_soar-unpriv-6.3.1.178-d86bf7c2-el7-x86_64.tgz"
175175
# name of the Splunk SOAR package located in apps folder.
176176
# aws: Make sure you use the RHEL 8 version which contains ....el8... in the file name
177177
# azure, local: Make sure you use the RHEL 7 version which contains ....el7... in the file name

modules/aws_controller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def show(self) -> None:
252252
+ ":8443"
253253
+ "\n\tSSH > ssh -i"
254254
+ self.config["aws"]["private_key_path"]
255-
+ " centos@"
255+
+ " ec2-user@"
256256
+ instance["NetworkInterfaces"][0]["Association"][
257257
"PublicIp"
258258
]
@@ -268,7 +268,7 @@ def show(self) -> None:
268268
+ ":8443"
269269
+ "\n\tSSH > ssh -i"
270270
+ self.config["aws"]["private_key_path"]
271-
+ " centos@"
271+
+ " ec2-user@"
272272
+ instance["NetworkInterfaces"][0]["Association"][
273273
"PublicIp"
274274
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["P4T12ICK <[email protected]>"]
66

77
[tool.poetry.dependencies]
88
python = "^3.10"
9-
ansible = "^10.4.0"
9+
ansible = "<10.0.0"
1010
pywinrm = "^0.5.0"
1111
PyYAML = "^6.0.2"
1212
colorama = "^0.4.6"

terraform/ansible/roles/phantom/tasks/install_phantom_aws.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
---
2-
# Install Phantom from RPM on a fresh CentOS 7 instance
32

4-
- name: Change mirror to vault.centos.org
5-
shell: sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo
6-
become: yes
3+
# - name: Change mirror to vault.centos.org
4+
# shell: sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo
5+
# become: yes
76

8-
- name: Uncomment baseurl lines
9-
shell: sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo
10-
become: yes
7+
# - name: Uncomment baseurl lines
8+
# shell: sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo
9+
# become: yes
1110

12-
- name: Comment out mirrorlist lines
13-
shell: sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
14-
become: yes
11+
# - name: Comment out mirrorlist lines
12+
# shell: sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
13+
# become: yes
1514

1615
- name: Update all packages
1716
become: yes

0 commit comments

Comments
 (0)