Skip to content

Commit

Permalink
add killsec resolves #102
Browse files Browse the repository at this point in the history
thank you @aternyx !
  • Loading branch information
joshhighet committed Mar 22, 2024
1 parent 68562d8 commit 49db07d
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
22 changes: 22 additions & 0 deletions groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -5711,5 +5711,27 @@
}
],
"profile": []
},
{
"name": "killsecurity",
"captcha": false,
"parser": true,
"javascript_render": false,
"meta": null,
"locations": [
{
"fqdn": "kill432ltnkqvaqntbalnsgojqqs2wz4lhnamrqjg66tq6fuvcztilyd.onion",
"title": "KILL SECURITY",
"version": 3,
"slug": "http://kill432ltnkqvaqntbalnsgojqqs2wz4lhnamrqjg66tq6fuvcztilyd.onion",
"available": true,
"updated": "2024-03-22 13:10:31.849864",
"lastscrape": "2024-03-22 13:10:31.849843",
"enabled": true
}
],
"profile": [
"https://t.me/k1llsec"
]
}
]
11 changes: 11 additions & 0 deletions parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1374,3 +1374,14 @@ def donex():
errlog('donex: ' + 'parsing fail')
for post in posts:
appender(post, 'donex')

def killsecurity():
stdlog('parser: ' + 'killsecurity')
parser = '''
grep '<div class="post-title">' source/killsecurity-*.html | cut -d '>' -f 2 | cut -d '<' -f 1
'''
posts = runshellcmd(parser)
if len(posts) == 1:
errlog('killsecurity: ' + 'parsing fail')
for post in posts:
appender(post, 'killsecurity')
1 change: 1 addition & 0 deletions ransomwatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,4 +299,5 @@ def appender(name, location):
#parsers.mogilevich()
parsers.blackout()
parsers.donex()
parsers.killsecurity()
stdlog('ransomwatch: ' + 'parse run complete')
Empty file.

0 comments on commit 49db07d

Please sign in to comment.