forked from JMousqueton/ransomware.live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsharedutils.py
executable file
Β·802 lines (719 loc) Β· 26.1 KB
/
sharedutils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
collection of shared modules used throughout ransomwatch
'''
import os
import sys
import json
import socket
import re
import fnmatch
# import codecs
import random
import calendar
import tweepy
import logging
from datetime import datetime
from datetime import timedelta
from datetime import timezone
import subprocess
import tldextract
import lxml.html
import requests
import pandas as pd
from dotenv import load_dotenv
import http.client, urllib
from mastodon import Mastodon
import hashlib
from bs4 import BeautifulSoup
sockshost = '127.0.0.1'
socksport = 9050
logging.basicConfig(
format='%(asctime)s,%(msecs)d %(levelname)-8s %(message)s',
datefmt='%Y-%m-%d:%H:%M:%S',
level=logging.INFO
)
def stdlog(msg):
'''standard infologging'''
logging.info(msg)
def dbglog(msg):
'''standard debug logging'''
logging.debug(msg)
def errlog2(msg):
'''standard error logging'''
logging.error(msg)
def errlog(msg):
logging.error(msg)
stdlog('Send push notification')
load_dotenv()
USER_KEY=os.getenv('PUSH_USER')
API_KEY= os.getenv('PUSH_API')
MESSAGE = "β " + str(msg)
conn = http.client.HTTPSConnection("api.pushover.net:443")
conn.request("POST", "/1/messages.json",
urllib.parse.urlencode({
"token": API_KEY,
"user": USER_KEY,
"message": MESSAGE,
"html": 1
}), { "Content-type": "application/x-www-form-urlencoded" })
conn.getresponse()
def redactedlink(text):
pattern = r"(https://mega\.nz/folder/)[^#]+"
redacted_text = re.sub(pattern, r"\1[REDACTED]", text)
pattern = r"(https://anonfiles\.com/)[^/]+"
redacted_text = re.sub(pattern, r"\1[REDACTED]", redacted_text)
pattern = r"(https://dropmefiles\.com/)[^ ]+"
redacted_text = re.sub(pattern, r"\1[REDACTED]", redacted_text)
pattern = r"(https://www\.sendbig\.com/view-files/\?Id=)[^&]+"
redacted_text = re.sub(pattern, r"\1[REDACTED]", redacted_text)
pattern = r"(https://www\.sendspace\.com/file/)\S+"
redacted_text = re.sub(pattern, r"\1[REDACTED]", redacted_text)
pattern = r"(https://gofile\.io/d/)\S+"
redacted_text = re.sub(pattern, r"\1[REDACTED]", redacted_text)
return redacted_text
def honk(msg):
'''critical error logging with termination'''
logging.critical(msg)
sys.exit()
def remove_multiple_spaces(input_string):
# Use regular expression to replace multiple spaces with a single space
return re.sub(r'\s+', ' ', input_string)
def currentmonthstr():
'''
return the current, full month name in lowercase
'''
return datetime.now().strftime('%B').lower()
# socks5h:// ensures we route dns requests through the socks proxy
# reduces the risk of dns leaks & allows us to resolve hidden services
oproxies = {
'http': 'socks5h://' + str(sockshost) + ':' + str(socksport),
'https': 'socks5h://' + str(sockshost) + ':' + str(socksport)
}
def randomagent():
'''
randomly return a useragent from assets/useragents.txt
'''
with open('assets/useragents.txt', encoding='utf-8') as uafile:
uas = uafile.read().splitlines()
uagt = random.choice(uas)
dbglog('sharedutils: ' + 'random user agent - ' + str(uagt))
return uagt
def headers():
'''
returns a key:val user agent header for use with the requests library
'''
headerstr = {'User-Agent': str(randomagent())}
return headerstr
def metafetch(url):
'''
return the status code & http server using oproxies and headers
'''
try:
stdlog('sharedutils: ' + 'meta prefetch request to ' + str(url))
request = requests.head(url, proxies=oproxies, headers=headers(), timeout=20)
statcode = request.status_code
try:
response = request.headers['server']
return statcode, response
except KeyError as ke:
errlog('sharedutils: ' + 'meta prefetch did not discover server - ' + str(ke))
return statcode, None
except requests.exceptions.Timeout as ret:
errlog('sharedutils: ' + 'meta request timeout - ' + str(ret))
return None, None
except requests.exceptions.ConnectionError as rec:
errlog('sharedutils: ' + 'meta request connection error - ' + str(rec))
return None, None
def socksfetcher(url):
'''
fetch a url via socks proxy
'''
try:
stdlog('sharedutils: ' + 'starting socks request to ' + str(url))
request = requests.get(url, proxies=oproxies, headers=headers(), timeout=20, verify=False)
dbglog(
'sharedutils: ' + 'socks request - recieved statuscode - ' \
+ str(request.status_code)
)
try:
response = request.text
return response
except AttributeError as ae:
errlog('sharedutils: ' + 'socks response error - ' + str(ae))
return None
except requests.exceptions.Timeout:
errlog('geckodriver: ' + 'socks request timed out!')
return None
except requests.exceptions.ConnectionError as rec:
# catch SOCKSHTTPConnectionPool Host unreachable
if 'SOCKSHTTPConnectionPool' and 'Host unreachable' in str(rec):
errlog('sharedutils: ' + 'socks request unable to route to host, check hsdir resolution status!')
return None
errlog('sharedutils: ' + 'socks request connection error - ' + str(rec))
return None
def siteschema(location):
'''
returns a dict with the site schema
'''
if not location.startswith('http'):
dbglog('sharedutils: ' + 'assuming we have been given an fqdn and appending protocol')
location = 'http://' + location
schema = {
'fqdn': getapex(location),
'title': None,
'version': getonionversion(location)[0],
'slug': location,
'available': False,
'delay': None,
'updated': None,
'lastscrape': '2021-05-01 00:00:00.000000',
'enabled': True
}
dbglog('sharedutils: ' + 'schema - ' + str(schema))
return schema
def runshellcmd(cmd):
'''
runs a shell command and returns the output
'''
stdlog('sharedutils: ' + 'running shell command - ' + str(cmd))
cmdout = subprocess.run(
cmd,
shell=True,
universal_newlines=True,
check=True,
stdout=subprocess.PIPE
)
response = cmdout.stdout.strip().split('\n')
# if empty list output, error
# if len(response) == 1:
# honk('sharedutils: ' + 'shell command returned no output')
return response
def getsitetitle(html) -> str:
'''
tried to parse out the title of a site from the html
'''
stdlog('sharedutils: ' + 'getting site title')
try:
title = lxml.html.parse(html)
titletext = title.find(".//title").text
except AssertionError:
stdlog('sharedutils: ' + 'could not fetch site title from source - ' + str(html))
return None
except AttributeError:
stdlog('sharedutils: ' + 'could not fetch site title from source - ' + str(html))
return None
# limit title text to 50 chars
if titletext is not None:
if len(titletext) > 50:
titletext = titletext[:50]
stdlog('sharedutils: ' + 'site title - ' + str(titletext))
return titletext.replace('\t', '').replace('\b', '').replace('\n', '')
stdlog('sharedutils: ' + 'could not find site title from source - ' + str(html))
return None
def gcount(posts):
group_counts = {}
for post in posts:
if post['group_name'] in group_counts:
group_counts[post['group_name']] += 1
else:
group_counts[post['group_name']] = 1
return group_counts
def gcountYear(posts,year):
date_format = "%Y-%m-%d %H:%M:%S.%f"
date_debut = datetime(year, 1, 1)
date_fin = datetime(year, 12, 31)
group_counts = {}
for post in posts:
if post['group_name'] in group_counts:
date = datetime.strptime(post['discovered'], date_format)
if date <= date_fin and date >= date_debut:
group_counts[post['group_name']] += 1
else:
date = datetime.strptime(post['discovered'], date_format)
if date <= date_fin and date >= date_debut:
group_counts[post['group_name']] = 1
return group_counts
def last_day_of_month(month, year):
# Obtenir le dernier jour du mois en utilisant la fonction monthrange de la bibliothèque calendar
last_day = calendar.monthrange(year, month)[1]
return last_day
def gcountMonth(posts,year,month=0):
date_format = "%Y-%m-%d %H:%M:%S.%f"
if month == 0:
date_debut = datetime(year, 1, 1)
date_fin = datetime(year, 12, 31)
else:
date_debut = datetime(year, month, 1)
date_fin = datetime(year, month, last_day_of_month(month,year))
group_counts = {}
for post in posts:
if post['group_name'] in group_counts:
date = datetime.strptime(post['published'], date_format)
if date <= date_fin and date >= date_debut:
group_counts[post['group_name']] += 1
else:
date = datetime.strptime(post['published'], date_format)
if date <= date_fin and date >= date_debut:
group_counts[post['group_name']] = 1
return group_counts
def hasprotocol(slug):
'''
checks if a url begins with http - cheap protocol check before we attampt to fetch a page
'''
return bool(slug.startswith('http'))
def getapex(slug):
'''
returns the domain for a given webpage/url slug
'''
stripurl = tldextract.extract(slug)
print(stripurl)
if stripurl.subdomain:
return stripurl.subdomain + '.' + stripurl.domain + '.' + stripurl.suffix
return stripurl.domain + '.' + stripurl.suffix
def striptld(slug):
'''
strips the tld from a url
'''
stripurl = tldextract.extract(slug)
return stripurl.domain
def getonionversion(slug):
'''
returns the version of an onion service (v2/v3)
https://support.torproject.org/onionservices/v2-deprecation
'''
version = None
stripurl = tldextract.extract(slug)
location = stripurl.domain + '.' + stripurl.suffix
stdlog('sharedutils: ' + 'checking for onion version - ' + str(location))
if len(stripurl.domain) == 16:
stdlog('sharedutils: ' + 'v2 onionsite detected')
version = 2
elif len(stripurl.domain) == 56:
stdlog('sharedutils: ' + 'v3 onionsite detected')
version = 3
else:
stdlog('sharedutils: ' + 'unknown onion version, assuming clearnet')
version = 0
return version, location
def openhtml(file):
'''
opens a file and returns the html
'''
with open(file, 'r', encoding='utf-8') as f:
html = f.read()
return html
def openjson(file):
'''
opens a file and returns the json as a dict
'''
with open(file, encoding='utf-8') as jsonfile:
data = json.load(jsonfile)
return data
def checktcp(host, port):
'''
checks if a tcp port is open - used to check if a socks proxy is available
'''
stdlog('sharedutils: ' + 'attempting socket connection')
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
result = sock.connect_ex((str(host), int(port)))
sock.close()
if result == 0:
stdlog('sharedutils: ' + 'socket - successful connection')
return True
stdlog('sharedutils: ' + 'socket - failed connection')
return False
def postcount():
post_count = 1
posts = openjson('posts.json')
for post in posts:
post_count += 1
return post_count
def grouppostavailable(groupname):
grouppost_count = 0
posts = openjson('posts.json')
for post in posts:
if post['group_name'] == groupname:
grouppost_count += 1
if grouppost_count > 0:
return True
else:
return False
def grouppostcount(groupname):
grouppost_count = 0
posts = openjson('posts.json')
for post in posts:
if post['group_name'] == groupname:
grouppost_count += 1
if grouppost_count > 1:
grouppost_count = str(grouppost_count) + ' victims found'
elif grouppost_count == 1:
grouppost_count = '1 victim found'
elif grouppost_count ==0:
grouppost_count = 'no victim found'
return grouppost_count
def postcountgroup(groupname):
grouppost_count = 0
posts = openjson('posts.json')
for post in posts:
if post['group_name'] == groupname:
grouppost_count += 1
return grouppost_count
def groupcount():
groups = openjson('groups.json')
return len(groups)
#def parsercount():
# groups = openjson('groups.json')
# parse_count = 1
# for group in groups:
# if group['parser'] is True:
# parse_count += 1
# return parse_count
def parsercount():
directory = './parsers/'
pattern = '*.py'
exclude_pattern = '__init__.py'
py_files = [file for file in os.listdir(directory) if fnmatch.fnmatch(file, pattern)]
py_files = [file for file in py_files if file != exclude_pattern]
return len(py_files)
def hostcount():
groups = openjson('groups.json')
host_count = 0
for group in groups:
for host in group['locations']:
host_count += 1
return host_count
def headlesscount():
groups = openjson('groups.json')
js_count = 0
for group in groups:
if group['javascript_render'] is True:
js_count += 1
return js_count
def onlinecount():
groups = openjson('groups.json')
online_count = 0
for group in groups:
for host in group['locations']:
if host['available'] is True:
online_count += 1
return online_count
def version2count():
groups = openjson('groups.json')
version2_count = 0
for group in groups:
for host in group['locations']:
if host['version'] == 2:
version2_count += 1
return version2_count
def version3count():
groups = openjson('groups.json')
version3_count = 0
for group in groups:
for host in group['locations']:
if host['version'] == 3:
version3_count += 1
return version3_count
def monthlypostcount():
'''
returns the number of posts within the current month
'''
post_count = 0
posts = openjson('posts.json')
current_month = datetime.now().month
current_year = datetime.now().year
for post in posts:
datetime_object = datetime.strptime(post['published'], '%Y-%m-%d %H:%M:%S.%f')
if datetime_object.year == current_year and datetime_object.month == current_month:
post_count += 1
return post_count
def postssince(days):
'''returns the number of posts within the last x days'''
post_count = 0
posts = openjson('posts.json')
for post in posts:
datetime_object = datetime.strptime(post['published'], '%Y-%m-%d %H:%M:%S.%f')
if datetime_object > datetime.now() - timedelta(days=days):
post_count += 1
return post_count
def poststhisyear():
'''returns the number of posts within the current year'''
post_count = 0
posts = openjson('posts.json')
current_year = datetime.now().year
for post in posts:
datetime_object = datetime.strptime(post['published'], '%Y-%m-%d %H:%M:%S.%f')
if datetime_object.year == current_year:
post_count += 1
return post_count
def postslastyear():
'''
returns the number of posts last year
'''
post_count = 0
posts = openjson('posts.json')
previous_year = datetime.now() - timedelta(days=365)
previous_year = previous_year.year
for post in posts:
datetime_object = datetime.strptime(post['published'], '%Y-%m-%d %H:%M:%S.%f')
if datetime_object.year == previous_year:
post_count += 1
return post_count
def postslastyears(year):
'''
returns the number of posts last year
'''
post_count = 0
before = 365 * int(year)
posts = openjson('posts.json')
previous_year = datetime.now() - timedelta(days=before)
previous_year = previous_year.year
for post in posts:
datetime_object = datetime.strptime(post['published'], '%Y-%m-%d %H:%M:%S.%f')
if datetime_object.year == previous_year:
post_count += 1
return post_count
def postslast24h():
'''returns the number of posts within the last 24 hours'''
post_count = 0
posts = openjson('posts.json')
for post in posts:
datetime_object = datetime.strptime(post['published'], '%Y-%m-%d %H:%M:%S.%f')
if datetime_object > datetime.now() - timedelta(hours=24):
post_count += 1
return post_count
def countcaptchahosts():
'''returns a count on the number of groups that have captchas'''
groups = openjson('groups.json')
captcha_count = 0
for group in groups:
if group['captcha'] is True:
captcha_count += 1
return captcha_count
def postsjson2cvs():
df = pd.read_json (r'posts.json')
df.to_csv (r'docs/posts.csv', index = None)
def countpostsyeartodate():
posts = openjson('posts.json')
# Obtenir l'annΓ©e courante et soustraire 1 pour obtenir l'annΓ©e prΓ©cΓ©dente
current_year = datetime.now().year
year_last_year = current_year - 1
# Convertir la date actuelle de l'annΓ©e prΓ©cΓ©dente au format datetime
date_last_year = datetime.now().replace(year=year_last_year)
# Compter les publications qui tombent dans la plage de dates
count_posts_last_year = 0
for post in posts:
published_date = datetime.strptime(post["published"], "%Y-%m-%d %H:%M:%S.%f")
if datetime(year_last_year, 1, 1) <= published_date <= date_last_year:
count_posts_last_year += 1
return count_posts_last_year
def tobluesky(post_title,group):
try:
url = os.environ.get('BLUESKY_URL')
handle = os.environ.get('BLUESKY_HANDLE')
password = os.environ.get('BLUESKY_APP_PASSWORD')
resp = requests.post(url,
json={"identifier": handle, "password": password},
)
resp.raise_for_status()
session = resp.json()
now = datetime.now(timezone.utc).isoformat().replace("+00:00", "Z")
text= "According to https://ransomware.live, " + group + " ransomware group has added " + post_title + " to its victims. "
#startoffset = len(text)
startoffset = 13
#uri = "https://www.ransomware.live/#/group/" + group
uri = "https://ransomware.live"
#text+= uri
#endoffset = len(text)
endoffset = 36
# Required fields that each post must include
post = {
"$type": "app.bsky.feed.post",
"text": text,
"createdAt": now,
"facets": [{
"index": {
"byteStart": startoffset,
"byteEnd": endoffset,
},
"features": [{
"$type": "app.bsky.richtext.facet#link",
"uri": uri,
}],
}],
}
resp = requests.post("https://bsky.social/xrpc/com.atproto.repo.createRecord",
headers={"Authorization": "Bearer " + session["accessJwt"]},
json={
"repo": session["did"],
"collection": "app.bsky.feed.post",
"record": post,
},
)
except:
errlog('Error posting on bluesky')
def tomattermost(post_title,group):
webhook=os.environ.get('MATTERMOST_WEBHOOK')
# Prepare the payload
message = "β οΈ **" + group + "** ransomware group has added **" + post_title + "** to its victims. "
payload = {'text': message,
'username': 'Ransomware.live',
'icon_url': "https://ransomware.live/ransomwarelive.png"
}
# Headers for the HTTP request
headers = {'Content-Type': 'application/json'}
# Perform the POST request to the Mattermost webhook
response = requests.post(webhook, data=json.dumps(payload), headers=headers)
# Check for successful transmission
if not response.status_code == 200:
stdlog("Error: " + response.status_code)
def totwitter(post_title, group):
dbglog('sharedutils: ' + 'posting to twitter')
try:
client = tweepy.Client(
consumer_key=os.environ.get('TWITTER_CONSUMER_KEY'),
consumer_secret=os.environ.get('TWITTER_CONSUMER_SECRET'),
access_token=os.environ.get('TWITTER_ACCESS_TOKEN'),
access_token_secret=os.environ.get('TWITTER_ACCESS_TOKEN_SECRET')
)
status = str(group) + ' : ' + str(post_title) + ' https://www.ransomware.live/#/profiles?id=' + str(group)
client.create_tweet(text=status)
except TypeError as te:
honk('sharedutils: ' + 'twitter tweepy unsatisfied: ' + str(te))
def todiscord(post_title, group, webhook):
'''
sends a post to a discord webhook defined as an envar
'''
dbglog('sharedutils: ' + 'sending to discord webhook')
# avoid json decode errors by escaping the title if contains \ or "
post_title = post_title.replace('\\', '\\\\').replace('"', '\\"')
discord_data = '''
{
"content": "`%s`",
"embeds": [
{
"color": null,
"author": {
"name": "%s",
"url": "https://www.ransomware.live/#/profiles?id=%s",
"icon_url": "https://avatars.githubusercontent.com/u/10137"
}
}
]
}''' % (post_title, group, group)
discord_json = json.loads(discord_data)
stdlog('sharedutils: ' + 'sending to discord webhook')
dscheaders = {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
try:
hook_uri = webhook
hookpost = requests.post(hook_uri, json=discord_json, headers=dscheaders)
except requests.exceptions.RequestException as e:
honk('sharedutils: ' + 'error sending to discord webhook: ' + str(e))
if hookpost.status_code == 204:
return True
if hookpost.status_code == 429:
errlog('sharedutils: ' + 'discord webhook rate limit exceeded')
else:
honk('sharedutils: ' + 'recieved discord webhook error resonse ' + str(hookpost.status_code) + ' with text ' + str(hookpost.text))
return False
def toMastodon(post_title, group_name):
'''
send a post to Mastodon
'''
load_dotenv()
mastodon = Mastodon(
access_token = os.getenv('MASTODON_TOKEN'),
api_base_url = 'https://infosec.exchange/'
)
mastodon.status_post("π΄ββ οΈ A new victim called "+ post_title + " has been claimed by #Ransomware group "+ group_name+'. More information at https://ransomware.live')
def toPushover(post_title, group_name):
stdlog('Send notification')
load_dotenv()
USER_KEY=os.getenv('PUSH_USER')
API_KEY= os.getenv('PUSH_API')
MESSAGE = "<b>" + post_title + "</b> est victime du ransomware <b>" + group_name + "</b>"
conn = http.client.HTTPSConnection("api.pushover.net:443")
conn.request("POST", "/1/messages.json",
urllib.parse.urlencode({
"token": API_KEY,
"user": USER_KEY,
"message": MESSAGE,
"html": 1
}), { "Content-type": "application/x-www-form-urlencoded" })
conn.getresponse()
def toteams(post_title, group):
'''
sends a post to a miCroSoFt tEaMs webhook defined as an envar
'''
dbglog('sharedutils: ' + 'sending to microsoft teams webhook')
# avoid json decode errors by escaping the title if contains \ or "
post_title = post_title.replace('\\', '\\\\').replace('"', '\\"')
teams_data = '''
{
"type":"message",
"attachments":[
{
"contentType":"application/vnd.microsoft.card.adaptive",
"contentUrl":null,
"content":{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "%s",
"isSubtle": true,
"wrap": true
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "%s",
"url": "https://www.ransomware.live/#/profiles?id=%s"
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4"
}
}
]
}''' % (post_title, group, group)
try:
hook_uri = os.environ.get('MS_TEAMS_WEBHOOK')
hookpost = requests.post(hook_uri, data=teams_data, headers={'Content-Type': 'application/json'})
except requests.exceptions.RequestException as e:
honk('sharedutils: ' + 'error sending to microsoft teams webhook: ' + str(e))
if hookpost.status_code == 200:
return True
if hookpost.status_code == 429:
errlog('sharedutils: ' + 'microsoft teams webhook rate limit exceeded')
else:
honk('sharedutils: ' + 'recieved microsoft teams webhook error resonse ' + str(hookpost.status_code) + ' with text ' + str(hookpost.text))
return False
def find_slug_by_md5(group_name, target_md5):
# Load the JSON data from the file or source
data = openjson('groups.json')
# Find the group entry in the data
group_entry = next((group for group in data if group['name'] == group_name), None)
if group_entry:
# Extract the slugs from the locations
slugs = [location['slug'] for location in group_entry['locations']]
# Calculate the MD5 hash for each slug and compare with the target MD5
for slug in slugs:
md5 = hashlib.md5(slug.encode()).hexdigest()
if md5 == target_md5:
return slug
else:
return None
def extract_md5_from_filename(file_name):
parts = file_name.rsplit("-", 1)
if len(parts) == 2:
before_hyphen, after_hyphen = parts
dot_position = after_hyphen.rfind(".")
if dot_position != -1:
extracted_text = after_hyphen[:dot_position]
return extracted_text