mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-22 03:43:02 +00:00
fix merge conflict
This commit is contained in:
parent
defd1740b8
commit
22100ceed3
4 changed files with 0 additions and 2861 deletions
|
@ -1,3 +0,0 @@
|
||||||
# This file used to trigger updates on packages too out of date
|
|
||||||
# to use the new release tag format. Remove in next update.
|
|
||||||
__version__ = "0.15.0"
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,80 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
||||||
"title": "Sherlock Target Manifest",
|
|
||||||
"description": "Social media targets to probe for the existence of known usernames",
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"$schema": { "type": "string" }
|
|
||||||
},
|
|
||||||
"patternProperties": {
|
|
||||||
"^(?!\\$).*?$": {
|
|
||||||
"type": "object",
|
|
||||||
"description": "Target name and associated information (key should be human readable name)",
|
|
||||||
"required": [ "url", "urlMain", "errorType", "username_claimed" ],
|
|
||||||
"properties": {
|
|
||||||
"url": { "type": "string" },
|
|
||||||
"urlMain": { "type": "string" },
|
|
||||||
"urlProbe": { "type": "string" },
|
|
||||||
"username_claimed": { "type": "string" },
|
|
||||||
"regexCheck": { "type": "string" },
|
|
||||||
"isNSFW": { "type": "boolean" },
|
|
||||||
"headers": { "type": "object" },
|
|
||||||
"request_payload": { "type": "object" },
|
|
||||||
"__comment__": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Used to clarify important target information if (and only if) a commit message would not suffice.\nThis key should not be parsed anywhere within Sherlock."
|
|
||||||
},
|
|
||||||
"tags": {
|
|
||||||
"oneOf": [
|
|
||||||
{ "$ref": "#/$defs/tag" },
|
|
||||||
{ "type": "array", "items": { "$ref": "#/$defs/tag" } }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"request_method": {
|
|
||||||
"type": "string",
|
|
||||||
"enum": [ "GET", "POST", "HEAD", "PUT" ]
|
|
||||||
},
|
|
||||||
"errorType": {
|
|
||||||
"type": "string",
|
|
||||||
"enum": [ "message", "response_url", "status_code" ]
|
|
||||||
},
|
|
||||||
"errorMsg": {
|
|
||||||
"oneOf": [
|
|
||||||
{ "type": "string" },
|
|
||||||
{ "type": "array", "items": { "type": "string" } }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"errorCode": {
|
|
||||||
"oneOf": [
|
|
||||||
{ "type": "integer" },
|
|
||||||
{ "type": "array", "items": { "type": "integer" } }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"errorUrl": { "type": "string" },
|
|
||||||
"response_url": { "type": "string" }
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"errorMsg": {
|
|
||||||
"properties" : { "errorType": { "const": "message" } }
|
|
||||||
},
|
|
||||||
"errorUrl": {
|
|
||||||
"properties": { "errorType": { "const": "response_url" } }
|
|
||||||
},
|
|
||||||
"errorCode": {
|
|
||||||
"properties": { "errorType": { "const": "status_code" } }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"if": { "properties": { "errorType": { "const": "message" } } },
|
|
||||||
"then": { "required": [ "errorMsg" ] },
|
|
||||||
"else": {
|
|
||||||
"if": { "properties": { "errorType": { "const": "response_url" } } },
|
|
||||||
"then": { "required": [ "errorUrl" ] }
|
|
||||||
},
|
|
||||||
"additionalProperties": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"additionalProperties": false,
|
|
||||||
"$defs": {
|
|
||||||
"tag": { "type": "string", "enum": [ "adult", "gaming" ] }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
# This file used to trigger updates on packages too out of date
|
|
||||||
# to use the new release tag format. Remove in next update.
|
|
||||||
__version__ = "0.15.0"
|
|
Loading…
Reference in a new issue