Skip to content

Commit

Permalink
add braincipher
Browse files Browse the repository at this point in the history
  • Loading branch information
joshhighet committed Jul 4, 2024
1 parent 1a1504d commit 83915d8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1556,3 +1556,14 @@ def pryx():
errlog('pryx: ' + 'parsing fail')
for post in posts:
appender(post, 'pryx')

def braincipher():
stdlog('parser: ' + 'braincipher')
parser = '''
grep 'class="h5">' source/braincipher-*.html | cut -d '>' -f 2 | cut -d '<' -f 1 | sort -u | sed '/More important than money, only honor./d' | sed '/Space for your advertising./d' | sed '/Very expensive advertising./d'
'''
posts = runshellcmd(parser)
if len(posts) == 1:
errlog('braincipher: ' + 'parsing fail')
for post in posts:
appender(post, 'braincipher')
1 change: 1 addition & 0 deletions ransomwatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,4 +315,5 @@ def appender(name, location):
parsers.sensayq()
parsers.cicada3301()
parsers.pryx()
parsers.braincipher()
stdlog('ransomwatch: ' + 'parse run complete')
Empty file.

0 comments on commit 83915d8

Please sign in to comment.