Skip to content

Instantly share code, notes, and snippets.

@ocbrollingpaper
Created January 18, 2022 18:46
Show Gist options
  • Save ocbrollingpaper/9bc62cfdeb7a9a7c4ca14b34d8c97b89 to your computer and use it in GitHub Desktop.
Save ocbrollingpaper/9bc62cfdeb7a9a7c4ca14b34d8c97b89 to your computer and use it in GitHub Desktop.
nephthys
openapi: 3.0.0
info:
title: Nephthys
version: 0.0.2
description: Nephthys is a ransomware feed developed by Cybernite that allows you to monitor ransomware blogs in real-time.
contact: {}
license:
name: Copyright 2022 Cybernite Technologies LTD
url: 'mailto:office@cybernite.org'
servers:
- url: 'https://nephthys.cybernite.org/v1/'
paths:
/victims:
get:
summary: Get All Victims on Blogs
tags: []
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Victim'
examples: {}
'404':
description: 'Shouldn''t happen :^)'
operationId: get-victims
description: Endpoint lists all posts currently up on all of the blogs.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Victim'
examples:
example-1:
value:
id: 0
createdAt: '2019-08-24T14:15:22Z'
victim: string
link: string
ransom_group: string
description: ''
x-internal: false
parameters: []
parameters: []
components:
schemas:
Victim:
title: Victim
type: object
description: Victim Model
x-examples:
Acme Co.:
id: 1
createdAt: '2022-01-0314:15:22Z'
victim: Acme Co.
link: spookylink.onion
ransom_group: MoscowLockerLLC
properties:
id:
description: Unique identifier for the given victim.
type: integer
createdAt:
type: string
format: date-time
description: The date and time the victim was posted.
victim:
type: string
description: Name of the company being extorted.
link:
type: string
description: Link towards post on extortion blogs. Links ending in .onion will require Tor to access.
ransom_group:
type: string
description: Group which is claiming responsibility.
securitySchemes: {}
security:
- Authorization: []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment