-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathhackit.co.il.yaml
72 lines (70 loc) · 3.39 KB
/
hackit.co.il.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
openapi: 3.0.1
info:
title: AI Powered Web Scanner by HACKIT.
description: Smart Web Scanner developed by Yuval Avidani from HACKIT. It uses for scanning websites for potential security threats in order to help the good guys protect from bad guys.
version: 'v1'
servers:
- url: https://hackit.co.il
paths:
/scan:
post:
operationId: hackit
summary: Scan the website and find vulnerabilities
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
url:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
message:
type: string
subdomains:
type: array
items:
type: string
directories:
type: array
items:
type: string
valid_links:
type: array
items:
type: string
injections:
type: array
items:
type: string
special_headers:
type: object
hidden_tags:
type: array
items:
type: string
special_files:
type: array
items:
type: object
properties:
name:
type: string
content:
type: string
url:
type: string
waf:
type: string
ip_address:
type: string
censys_data:
type: object