Skip to content

Commit

Permalink
add cicada3301
Browse files Browse the repository at this point in the history
  • Loading branch information
joshhighet committed Jun 20, 2024
1 parent bd91a9f commit 6220d83
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
20 changes: 20 additions & 0 deletions groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -6153,5 +6153,25 @@
}
],
"profile": []
},
{
"name": "cicada3301",
"captcha": false,
"parser": false,
"javascript_render": false,
"meta": null,
"locations": [
{
"fqdn": "cicadabv7vicyvgz5khl7v2x5yygcgow7ryy6yppwmxii4eoobdaztqd.onion",
"title": " ",
"version": 3,
"slug": "http://cicadabv7vicyvgz5khl7v2x5yygcgow7ryy6yppwmxii4eoobdaztqd.onion",
"available": true,
"updated": "2024-06-20 12:57:59.939028",
"lastscrape": "2024-06-20 12:57:59.939021",
"enabled": true
}
],
"profile": []
}
]
11 changes: 11 additions & 0 deletions parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1534,3 +1534,14 @@ def sensayq():
errlog('sensayq: ' + 'parsing fail')
for post in posts:
appender(post, 'sensayq')

def cicada3301():
stdlog('parser: ' + 'cicada3301')
parser = '''
grep -C 1 'tracking-widest">web:</span>' source/cicada3301-*.html | grep href | cut -d '"' -f 2
'''
posts = runshellcmd(parser)
if len(posts) == 1:
errlog('cicada3301: ' + 'parsing fail')
for post in posts:
appender(post, 'cicada3301')
1 change: 1 addition & 0 deletions ransomwatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,4 +313,5 @@ def appender(name, location):
parsers.arcusmedia()
parsers.trinity()
parsers.sensayq()
parsers.cicada3301()
stdlog('ransomwatch: ' + 'parse run complete')
Empty file.

0 comments on commit 6220d83

Please sign in to comment.