Skip to content

Commit dad137a

Browse files
committed
Merge branch 'master' of https://github.com/kevoreilly/CAPEv2
2 parents f690d24 + c087394 commit dad137a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

modules/signatures/network_temp_file_storage.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ def run(self):
3535
"uploadfiles.io",
3636
"sendpace.com",
3737
"filedropper.com",
38-
"myairbridge.com"
38+
"myairbridge.com",
39+
"u.teknik.io",
3940
]
4041

4142
found_matches = False
@@ -45,4 +46,4 @@ def run(self):
4546
self.data.append({"domain" : indicator})
4647
found_matches = True
4748

48-
return found_matches
49+
return found_matches

modules/signatures/ransomware_medusalocker.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def run(self):
3232
]
3333

3434
for indicator in indicators:
35-
match = self.check_mutex(pattern=indicator, regex=True, all=True)
35+
match = self.check_mutex(pattern=indicator, regex=True)
3636
if match:
3737
self.data.append({"mutex": match})
3838
return True
@@ -55,9 +55,9 @@ def run(self):
5555
]
5656

5757
for indicator in indicators:
58-
match = self.check_key(pattern=indicator, regex=True, all=True)
58+
match = self.check_key(pattern=indicator, regex=True)
5959
if match:
6060
self.data.append({"regkey": match})
6161
return True
6262

63-
return False
63+
return False

0 commit comments

Comments
 (0)