Skip to content

Commit

Permalink
add pryx
Browse files Browse the repository at this point in the history
  • Loading branch information
joshhighet committed Jul 4, 2024
1 parent 917d8b0 commit 1a1504d
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 0 deletions.
20 changes: 20 additions & 0 deletions groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -6173,5 +6173,25 @@
}
],
"profile": []
},
{
"name": "pryx",
"captcha": false,
"parser": true,
"javascript_render": false,
"meta": null,
"locations": [
{
"fqdn": "c2mdhim6btaiyae3xqthnxsz64brvdxsnbty4tvos65zb565y4v55iid.onion",
"title": "Styled Back Button",
"version": 3,
"slug": "http://c2mdhim6btaiyae3xqthnxsz64brvdxsnbty4tvos65zb565y4v55iid.onion/b/",
"available": true,
"updated": "2024-07-04 16:56:34.610683",
"lastscrape": "2024-07-04 16:56:34.610664",
"enabled": true
}
],
"profile": []
}
]
11 changes: 11 additions & 0 deletions parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1545,3 +1545,14 @@ def cicada3301():
errlog('cicada3301: ' + 'parsing fail')
for post in posts:
appender(post, 'cicada3301')

def pryx():
stdlog('parser: ' + 'pryx')
parser = '''
grep '<td><a href="' source/pryx-*.html | cut -d '>' -f 3 | cut -d '<' -f 1 | sed 's/\[\*\] //g' | grep -v soon
'''
posts = runshellcmd(parser)
if len(posts) == 1:
errlog('pryx: ' + 'parsing fail')
for post in posts:
appender(post, 'pryx')
5 changes: 5 additions & 0 deletions posts.json
Original file line number Diff line number Diff line change
Expand Up @@ -60328,5 +60328,10 @@
"post_title": "aedifica.com",
"group_name": "ransomhub",
"discovered": "2024-07-04 00:54:34.896983"
},
{
"post_title": "RCBC.edu Data Breach: over 30,000 University Applications Exposed",
"group_name": "pryx",
"discovered": "2024-07-04 16:54:19.174555"
}
]
1 change: 1 addition & 0 deletions ransomwatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,4 +314,5 @@ def appender(name, location):
parsers.trinity()
parsers.sensayq()
parsers.cicada3301()
parsers.pryx()
stdlog('ransomwatch: ' + 'parse run complete')
Empty file.

0 comments on commit 1a1504d

Please sign in to comment.