Skip to content

Commit 0228cab

Browse files
committed
add new FOG resolves #109
thanks @cchoffme
1 parent 9a12ed5 commit 0228cab

5 files changed

+33
-1
lines changed

groups.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -6087,7 +6087,7 @@
60876087
{
60886088
"name": "FOG",
60896089
"captcha": false,
6090-
"parser": false,
6090+
"parser": true,
60916091
"javascript_render": false,
60926092
"meta": null,
60936093
"locations": [
@@ -6100,6 +6100,16 @@
61006100
"updated": "2024-07-24 02:50:35.080074",
61016101
"lastscrape": "2024-07-24 02:50:35.080053",
61026102
"enabled": true
6103+
},
6104+
{
6105+
"fqdn": "xbkv2qey6u3gd3qxcojynrt4h5sgrhkar6whuo74wo63hijnn677jnyd.onion",
6106+
"title": null,
6107+
"version": 3,
6108+
"slug": "http://xbkv2qey6u3gd3qxcojynrt4h5sgrhkar6whuo74wo63hijnn677jnyd.onion",
6109+
"available": false,
6110+
"updated": null,
6111+
"lastscrape": "2021-05-01 00:00:00.000000",
6112+
"enabled": true
61036113
}
61046114
],
61056115
"profile": []

parsers.py

+11
Original file line numberDiff line numberDiff line change
@@ -1567,3 +1567,14 @@ def braincipher():
15671567
errlog('braincipher: ' + 'parsing fail')
15681568
for post in posts:
15691569
appender(post, 'braincipher')
1570+
1571+
def FOG():
1572+
stdlog('parser: ' + 'FOG')
1573+
parser = '''
1574+
grep '<p class="pb-4 text-lg font-bold">' source/FOG-*.html | cut -d '>' -f 10 | cut -d '<' -f 1 | grep -v 00 || true
1575+
'''
1576+
posts = runshellcmd(parser)
1577+
if len(posts) == 1:
1578+
errlog('FOG: ' + 'parsing fail')
1579+
for post in posts:
1580+
appender(post, 'FOG')

posts.json

+10
Original file line numberDiff line numberDiff line change
@@ -61293,5 +61293,15 @@
6129361293
"post_title": "supergardens.com.au",
6129461294
"group_name": "dragonforce",
6129561295
"discovered": "2024-07-25 08:50:00.537902"
61296+
},
61297+
{
61298+
"post_title": "Wichita State University Campus of Applied Sciences and Technology",
61299+
"group_name": "FOG",
61300+
"discovered": "2024-07-25 08:50:04.466927"
61301+
},
61302+
{
61303+
"post_title": "German University of Technology in Oman",
61304+
"group_name": "FOG",
61305+
"discovered": "2024-07-25 08:50:04.514055"
6129661306
}
6129761307
]

ransomwatch.py

+1
Original file line numberDiff line numberDiff line change
@@ -316,4 +316,5 @@ def appender(name, location):
316316
parsers.cicada3301()
317317
parsers.pryx()
318318
parsers.braincipher()
319+
parsers.FOG()
319320
stdlog('ransomwatch: ' + 'parse run complete')

source/FOG-xbkv2qey6u3gd3qxcojynrt4h5sgrhkar6whuo74wo63hijnn677jnyd.html

Whitespace-only changes.

0 commit comments

Comments
 (0)