@shriyanss/js-recon 1.0.0 → 1.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (198) hide show
  1. package/.api_gateway_config.json +1 -0
  2. package/.github/workflows/npm-publish.yml +35 -0
  3. package/.github/workflows/prettier.yaml +44 -0
  4. package/.prettierignore +2 -0
  5. package/.prettierrc +4 -0
  6. package/.resp_cache.json +1 -0
  7. package/.vscode/launch.json +27 -0
  8. package/CHANGELOG.md +40 -0
  9. package/README.md +35 -140
  10. package/build/api_gateway/checkFeasibility.js +32 -0
  11. package/build/api_gateway/checkFeasibility.js.map +1 -0
  12. package/build/api_gateway/checkFireWallBlocking.js +24 -0
  13. package/build/api_gateway/checkFireWallBlocking.js.map +1 -0
  14. package/build/api_gateway/genReq.js +202 -0
  15. package/build/api_gateway/genReq.js.map +1 -0
  16. package/build/api_gateway/index.js +277 -0
  17. package/build/api_gateway/index.js.map +1 -0
  18. package/build/endpoints/gen_report/gen_json.js +22 -0
  19. package/build/endpoints/gen_report/gen_json.js.map +1 -0
  20. package/build/endpoints/gen_report/gen_markdown.js +66 -0
  21. package/build/endpoints/gen_report/gen_markdown.js.map +1 -0
  22. package/build/endpoints/gen_report/utility/iterate_n_store.js +46 -0
  23. package/build/endpoints/gen_report/utility/iterate_n_store.js.map +1 -0
  24. package/build/endpoints/index.js +89 -0
  25. package/build/endpoints/index.js.map +1 -0
  26. package/build/endpoints/next_js/client_jsFilesHref.js +91 -0
  27. package/build/endpoints/next_js/client_jsFilesHref.js.map +1 -0
  28. package/build/endpoints/next_js/client_jsonParse.js +75 -0
  29. package/build/endpoints/next_js/client_jsonParse.js.map +1 -0
  30. package/build/endpoints/next_js/client_subsequentRequests.js +199 -0
  31. package/build/endpoints/next_js/client_subsequentRequests.js.map +1 -0
  32. package/build/endpoints/next_js/getWebpacks.js +45 -0
  33. package/build/endpoints/next_js/getWebpacks.js.map +1 -0
  34. package/build/globalConfig.js +11 -0
  35. package/build/globalConfig.js.map +1 -0
  36. package/build/index.js +166 -0
  37. package/build/index.js.map +1 -0
  38. package/build/lazyLoad/downloadFilesUtil.js +128 -0
  39. package/build/lazyLoad/downloadFilesUtil.js.map +1 -0
  40. package/build/lazyLoad/downloadLoadedJsUtil.js +51 -0
  41. package/build/lazyLoad/downloadLoadedJsUtil.js.map +1 -0
  42. package/build/lazyLoad/globals.js +25 -0
  43. package/build/lazyLoad/globals.js.map +1 -0
  44. package/build/lazyLoad/index.js +171 -0
  45. package/build/lazyLoad/index.js.map +1 -0
  46. package/build/lazyLoad/next_js/next_GetJSScript.js +94 -0
  47. package/build/lazyLoad/next_js/next_GetJSScript.js.map +1 -0
  48. package/build/lazyLoad/next_js/next_GetLazyResources.js +202 -0
  49. package/build/lazyLoad/next_js/next_GetLazyResources.js.map +1 -0
  50. package/build/lazyLoad/next_js/next_SubsequentRequests.js +120 -0
  51. package/build/lazyLoad/next_js/next_SubsequentRequests.js.map +1 -0
  52. package/build/lazyLoad/nuxt_js/nuxt_astParse.js +188 -0
  53. package/build/lazyLoad/nuxt_js/nuxt_astParse.js.map +1 -0
  54. package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +75 -0
  55. package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js.map +1 -0
  56. package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +94 -0
  57. package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js.map +1 -0
  58. package/build/lazyLoad/svelte/svelte_getFromPageSource.js +68 -0
  59. package/build/lazyLoad/svelte/svelte_getFromPageSource.js.map +1 -0
  60. package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js +95 -0
  61. package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js.map +1 -0
  62. package/build/map/index.js +58 -0
  63. package/build/map/index.js.map +1 -0
  64. package/build/map/next_js/getFetchInstances.js +105 -0
  65. package/build/map/next_js/getFetchInstances.js.map +1 -0
  66. package/build/map/next_js/getWebpackConnections.js +224 -0
  67. package/build/map/next_js/getWebpackConnections.js.map +1 -0
  68. package/build/map/next_js/interactive.js +32 -0
  69. package/build/map/next_js/interactive.js.map +1 -0
  70. package/build/map/next_js/interactive_helpers/commandHandler.js +190 -0
  71. package/build/map/next_js/interactive_helpers/commandHandler.js.map +1 -0
  72. package/build/map/next_js/interactive_helpers/commandHelpers.js +91 -0
  73. package/build/map/next_js/interactive_helpers/commandHelpers.js.map +1 -0
  74. package/build/map/next_js/interactive_helpers/helpMenu.js +11 -0
  75. package/build/map/next_js/interactive_helpers/helpMenu.js.map +1 -0
  76. package/build/map/next_js/interactive_helpers/keybindings.js +80 -0
  77. package/build/map/next_js/interactive_helpers/keybindings.js.map +1 -0
  78. package/build/map/next_js/interactive_helpers/printer.js +17 -0
  79. package/build/map/next_js/interactive_helpers/printer.js.map +1 -0
  80. package/build/map/next_js/interactive_helpers/ui.js +81 -0
  81. package/build/map/next_js/interactive_helpers/ui.js.map +1 -0
  82. package/build/map/next_js/resolveFetch.js +201 -0
  83. package/build/map/next_js/resolveFetch.js.map +1 -0
  84. package/build/run/index.js +62 -0
  85. package/build/run/index.js.map +1 -0
  86. package/build/strings/index.js +235 -0
  87. package/build/strings/index.js.map +1 -0
  88. package/build/strings/openapi.js +55 -0
  89. package/build/strings/openapi.js.map +1 -0
  90. package/build/strings/permutate.js +55 -0
  91. package/build/strings/permutate.js.map +1 -0
  92. package/build/strings/secrets.js +89 -0
  93. package/build/strings/secrets.js.map +1 -0
  94. package/build/techDetect/index.js +224 -0
  95. package/build/techDetect/index.js.map +1 -0
  96. package/build/utility/ai.js +69 -0
  97. package/build/utility/ai.js.map +1 -0
  98. package/build/utility/globals.js +84 -0
  99. package/build/utility/globals.js.map +1 -0
  100. package/build/utility/interfaces.js +2 -0
  101. package/build/utility/interfaces.js.map +1 -0
  102. package/build/utility/makeReq.js +265 -0
  103. package/build/utility/makeReq.js.map +1 -0
  104. package/build/utility/resolvePath.js +44 -0
  105. package/build/utility/resolvePath.js.map +1 -0
  106. package/{utility → build/utility}/runSandboxed.js +10 -13
  107. package/build/utility/runSandboxed.js.map +1 -0
  108. package/{utility → build/utility}/urlUtils.js +9 -11
  109. package/build/utility/urlUtils.js.map +1 -0
  110. package/docs/README.md +20 -0
  111. package/docs/api-gateway.md +68 -0
  112. package/docs/endpoints.md +49 -0
  113. package/docs/example-scenario.md +258 -0
  114. package/docs/interactive-mode.md +76 -0
  115. package/docs/lazyload.md +56 -0
  116. package/docs/map.md +53 -0
  117. package/docs/run.md +54 -0
  118. package/docs/strings.md +75 -0
  119. package/endpoints.json +77 -0
  120. package/extracted_urls-openapi.json +225 -0
  121. package/extracted_urls-swagger.json +225 -0
  122. package/extracted_urls.json +47 -0
  123. package/extracted_urls.txt +296 -0
  124. package/mapped.json +3413 -0
  125. package/output/ss0x00.com/_next/data/k7xKVnxmboK4SktY2dZWt/index.json +971 -0
  126. package/output/ss0x00.com/_next/static/chunks/12.7e6d2ac6e1808fc2.js +247 -0
  127. package/output/ss0x00.com/_next/static/chunks/128.160aa801ef0445bc.js +1074 -0
  128. package/output/ss0x00.com/_next/static/chunks/132.55df84f7707fc278.js +102 -0
  129. package/output/ss0x00.com/_next/static/chunks/142.77038c55d9ec10ba.js +96 -0
  130. package/output/ss0x00.com/_next/static/chunks/215.321479e91d330bfa.js +228 -0
  131. package/output/ss0x00.com/_next/static/chunks/229.097c396d86b4a882.js +458 -0
  132. package/output/ss0x00.com/_next/static/chunks/257.5fd052aa4ef06ef9.js +1327 -0
  133. package/output/ss0x00.com/_next/static/chunks/268.72cb3779f66db70b.js +10520 -0
  134. package/output/ss0x00.com/_next/static/chunks/320.57d528b0e9bf86f0.js +186 -0
  135. package/output/ss0x00.com/_next/static/chunks/325.302a44b604c35f17.js +88 -0
  136. package/output/ss0x00.com/_next/static/chunks/328.e4a0307a4fddf318.js +248 -0
  137. package/output/ss0x00.com/_next/static/chunks/432.3621f17504ef18f2.js +443 -0
  138. package/output/ss0x00.com/_next/static/chunks/44.e90dd963003a3d43.js +1094 -0
  139. package/output/ss0x00.com/_next/static/chunks/442.8c054f100f9e5e50.js +1082 -0
  140. package/output/ss0x00.com/_next/static/chunks/460.f8db9a5142598e2c.js +466 -0
  141. package/output/ss0x00.com/_next/static/chunks/487.05ca55420459c002.js +78 -0
  142. package/output/ss0x00.com/_next/static/chunks/567.1909a6b0a920114b.js +1374 -0
  143. package/output/ss0x00.com/_next/static/chunks/586.802fc9214d87fb29.js +752 -0
  144. package/output/ss0x00.com/_next/static/chunks/620.a2a3a6b94d30a4c8.js +1037 -0
  145. package/output/ss0x00.com/_next/static/chunks/642.6b3e487c9604cbb8.js +1628 -0
  146. package/output/ss0x00.com/_next/static/chunks/673.e5d77887e5c6a68c.js +1045 -0
  147. package/output/ss0x00.com/_next/static/chunks/684.8b8e52baca70524b.js +96 -0
  148. package/output/ss0x00.com/_next/static/chunks/686.79480519e5ccfb77.js +296 -0
  149. package/output/ss0x00.com/_next/static/chunks/756.7a3878a2e6765be7.js +504 -0
  150. package/output/ss0x00.com/_next/static/chunks/761.7bea7516c5d22b2a.js +1485 -0
  151. package/output/ss0x00.com/_next/static/chunks/794.e079ef369b41a3c5.js +1350 -0
  152. package/output/ss0x00.com/_next/static/chunks/826.31ba213e1d023c68.js +1031 -0
  153. package/output/ss0x00.com/_next/static/chunks/847.d8397a73efc81848.js +1068 -0
  154. package/output/ss0x00.com/_next/static/chunks/848.5feaeee1e2624aea.js +132 -0
  155. package/output/ss0x00.com/_next/static/chunks/850.ecc7c3c3d787ee03.js +1472 -0
  156. package/output/ss0x00.com/_next/static/chunks/853.50b9eb60b7d0e83c.js +1472 -0
  157. package/output/ss0x00.com/_next/static/chunks/856.7a7bb6c3c7bfc2ba.js +1320 -0
  158. package/output/ss0x00.com/_next/static/chunks/859.df4bd45c03a65f53.js +1306 -0
  159. package/output/ss0x00.com/_next/static/chunks/867.e8633955a147c978.js +541 -0
  160. package/output/ss0x00.com/_next/static/chunks/921.c3123f20a4c8d53c.js +96 -0
  161. package/output/ss0x00.com/_next/static/chunks/932.25cb421c466c99cb.js +999 -0
  162. package/output/ss0x00.com/_next/static/chunks/framework-64ad27b21261a9ce.js +9189 -0
  163. package/output/ss0x00.com/_next/static/chunks/main-710ab85aa9a8f10d.js +6583 -0
  164. package/output/ss0x00.com/_next/static/chunks/pages/5D-af5a23529ce3c337.js +486 -0
  165. package/output/ss0x00.com/_next/static/chunks/pages/_app-c449865c8af1faa0.js +39 -0
  166. package/output/ss0x00.com/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js +6383 -0
  167. package/output/ss0x00.com/_next/static/chunks/webpack-efff35ee26971294.js +271 -0
  168. package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_buildManifest.js +8 -0
  169. package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_ssgManifest.js +3 -0
  170. package/output/ss0x00.com/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js +82 -0
  171. package/package.json +50 -38
  172. package/strings.json +7407 -0
  173. package/api_gateway/checkFeasibility.js +0 -25
  174. package/api_gateway/checkFireWallBlocking.js +0 -17
  175. package/api_gateway/genReq.js +0 -214
  176. package/api_gateway/index.js +0 -325
  177. package/endpoints/index.js +0 -7
  178. package/globalConfig.js +0 -12
  179. package/index.js +0 -69
  180. package/lazyLoad/downloadFilesUtil.js +0 -122
  181. package/lazyLoad/downloadLoadedJsUtil.js +0 -54
  182. package/lazyLoad/globals.js +0 -15
  183. package/lazyLoad/index.js +0 -167
  184. package/lazyLoad/next_js/next_GetJSScript.js +0 -99
  185. package/lazyLoad/next_js/next_GetLazyResources.js +0 -201
  186. package/lazyLoad/next_js/next_SubsequentRequests.js +0 -138
  187. package/lazyLoad/nuxt_js/nuxt_astParse.js +0 -194
  188. package/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +0 -77
  189. package/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +0 -99
  190. package/research/firewall_bypass.md +0 -38
  191. package/research/next_js.md +0 -116
  192. package/research/nuxt_js.md +0 -125
  193. package/research/vue_js.md +0 -9
  194. package/strings/index.js +0 -145
  195. package/techDetect/index.js +0 -156
  196. package/utility/globals.js +0 -6
  197. package/utility/makeReq.js +0 -179
  198. package/utility/resolvePath.js +0 -43
@@ -0,0 +1,225 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "API Collection",
5
+ "description": "A collection of API endpoints discovered by js-recon.",
6
+ "version": "1.0.0"
7
+ },
8
+ "servers": [
9
+ {
10
+ "url": "{{baseUrl}}",
11
+ "description": "Base URL for the API"
12
+ }
13
+ ],
14
+ "paths": {
15
+ "/www.": {
16
+ "get": {
17
+ "summary": "Discovered endpoint: /www.",
18
+ "description": "An endpoint discovered at /www..",
19
+ "responses": {
20
+ "200": {
21
+ "description": "Successful response. The actual response will vary."
22
+ }
23
+ }
24
+ }
25
+ },
26
+ "/_next/": {
27
+ "get": {
28
+ "summary": "Discovered endpoint: /_next/",
29
+ "description": "An endpoint discovered at /_next/.",
30
+ "responses": {
31
+ "200": {
32
+ "description": "Successful response. The actual response will vary."
33
+ }
34
+ }
35
+ }
36
+ },
37
+ "/_next/image/": {
38
+ "get": {
39
+ "summary": "Discovered endpoint: /_next/image/",
40
+ "description": "An endpoint discovered at /_next/image/.",
41
+ "responses": {
42
+ "200": {
43
+ "description": "Successful response. The actual response will vary."
44
+ }
45
+ }
46
+ }
47
+ },
48
+ "/_error": {
49
+ "get": {
50
+ "summary": "Discovered endpoint: /_error",
51
+ "description": "An endpoint discovered at /_error.",
52
+ "responses": {
53
+ "200": {
54
+ "description": "Successful response. The actual response will vary."
55
+ }
56
+ }
57
+ }
58
+ },
59
+ "/_app": {
60
+ "get": {
61
+ "summary": "Discovered endpoint: /_app",
62
+ "description": "An endpoint discovered at /_app.",
63
+ "responses": {
64
+ "200": {
65
+ "description": "Successful response. The actual response will vary."
66
+ }
67
+ }
68
+ }
69
+ },
70
+ "/_next/data/": {
71
+ "get": {
72
+ "summary": "Discovered endpoint: /_next/data/",
73
+ "description": "An endpoint discovered at /_next/data/.",
74
+ "responses": {
75
+ "200": {
76
+ "description": "Successful response. The actual response will vary."
77
+ }
78
+ }
79
+ }
80
+ },
81
+ "/_not-found": {
82
+ "get": {
83
+ "summary": "Discovered endpoint: /_not-found",
84
+ "description": "An endpoint discovered at /_not-found.",
85
+ "responses": {
86
+ "200": {
87
+ "description": "Successful response. The actual response will vary."
88
+ }
89
+ }
90
+ }
91
+ },
92
+ "/page": {
93
+ "get": {
94
+ "summary": "Discovered endpoint: /page",
95
+ "description": "An endpoint discovered at /page.",
96
+ "responses": {
97
+ "200": {
98
+ "description": "Successful response. The actual response will vary."
99
+ }
100
+ }
101
+ }
102
+ },
103
+ "/_document": {
104
+ "get": {
105
+ "summary": "Discovered endpoint: /_document",
106
+ "description": "An endpoint discovered at /_document.",
107
+ "responses": {
108
+ "200": {
109
+ "description": "Successful response. The actual response will vary."
110
+ }
111
+ }
112
+ }
113
+ },
114
+ "/500": {
115
+ "get": {
116
+ "summary": "Discovered endpoint: /500",
117
+ "description": "An endpoint discovered at /500.",
118
+ "responses": {
119
+ "200": {
120
+ "description": "Successful response. The actual response will vary."
121
+ }
122
+ }
123
+ }
124
+ },
125
+ "/_next/image": {
126
+ "get": {
127
+ "summary": "Discovered endpoint: /_next/image",
128
+ "description": "An endpoint discovered at /_next/image.",
129
+ "responses": {
130
+ "200": {
131
+ "description": "Successful response. The actual response will vary."
132
+ }
133
+ }
134
+ }
135
+ },
136
+ "/index/": {
137
+ "get": {
138
+ "summary": "Discovered endpoint: /index/",
139
+ "description": "An endpoint discovered at /index/.",
140
+ "responses": {
141
+ "200": {
142
+ "description": "Successful response. The actual response will vary."
143
+ }
144
+ }
145
+ }
146
+ },
147
+ "/index": {
148
+ "get": {
149
+ "summary": "Discovered endpoint: /index",
150
+ "description": "An endpoint discovered at /index.",
151
+ "responses": {
152
+ "200": {
153
+ "description": "Successful response. The actual response will vary."
154
+ }
155
+ }
156
+ }
157
+ },
158
+ "/404": {
159
+ "get": {
160
+ "summary": "Discovered endpoint: /404",
161
+ "description": "An endpoint discovered at /404.",
162
+ "responses": {
163
+ "200": {
164
+ "description": "Successful response. The actual response will vary."
165
+ }
166
+ }
167
+ }
168
+ },
169
+ "/api": {
170
+ "get": {
171
+ "summary": "Discovered endpoint: /api",
172
+ "description": "An endpoint discovered at /api.",
173
+ "responses": {
174
+ "200": {
175
+ "description": "Successful response. The actual response will vary."
176
+ }
177
+ }
178
+ }
179
+ },
180
+ "/api/": {
181
+ "get": {
182
+ "summary": "Discovered endpoint: /api/",
183
+ "description": "An endpoint discovered at /api/.",
184
+ "responses": {
185
+ "200": {
186
+ "description": "Successful response. The actual response will vary."
187
+ }
188
+ }
189
+ }
190
+ },
191
+ "/a/i": {
192
+ "get": {
193
+ "summary": "Discovered endpoint: /a/i",
194
+ "description": "An endpoint discovered at /a/i.",
195
+ "responses": {
196
+ "200": {
197
+ "description": "Successful response. The actual response will vary."
198
+ }
199
+ }
200
+ }
201
+ },
202
+ "/a/b": {
203
+ "get": {
204
+ "summary": "Discovered endpoint: /a/b",
205
+ "description": "An endpoint discovered at /a/b.",
206
+ "responses": {
207
+ "200": {
208
+ "description": "Successful response. The actual response will vary."
209
+ }
210
+ }
211
+ }
212
+ },
213
+ "/cdn-cgi/l/email-protection#": {
214
+ "get": {
215
+ "summary": "Discovered endpoint: /cdn-cgi/l/email-protection#",
216
+ "description": "An endpoint discovered at /cdn-cgi/l/email-protection#.",
217
+ "responses": {
218
+ "200": {
219
+ "description": "Successful response. The actual response will vary."
220
+ }
221
+ }
222
+ }
223
+ }
224
+ }
225
+ }
@@ -0,0 +1,225 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "API Collection",
5
+ "description": "A collection of API endpoints discovered by js-recon.",
6
+ "version": "1.0.0"
7
+ },
8
+ "servers": [
9
+ {
10
+ "url": "{{baseUrl}}",
11
+ "description": "Base URL for the API"
12
+ }
13
+ ],
14
+ "paths": {
15
+ "/www.": {
16
+ "get": {
17
+ "summary": "Discovered endpoint: /www.",
18
+ "description": "An endpoint discovered at /www..",
19
+ "responses": {
20
+ "200": {
21
+ "description": "Successful response. The actual response will vary."
22
+ }
23
+ }
24
+ }
25
+ },
26
+ "/_next/": {
27
+ "get": {
28
+ "summary": "Discovered endpoint: /_next/",
29
+ "description": "An endpoint discovered at /_next/.",
30
+ "responses": {
31
+ "200": {
32
+ "description": "Successful response. The actual response will vary."
33
+ }
34
+ }
35
+ }
36
+ },
37
+ "/_next/image/": {
38
+ "get": {
39
+ "summary": "Discovered endpoint: /_next/image/",
40
+ "description": "An endpoint discovered at /_next/image/.",
41
+ "responses": {
42
+ "200": {
43
+ "description": "Successful response. The actual response will vary."
44
+ }
45
+ }
46
+ }
47
+ },
48
+ "/_error": {
49
+ "get": {
50
+ "summary": "Discovered endpoint: /_error",
51
+ "description": "An endpoint discovered at /_error.",
52
+ "responses": {
53
+ "200": {
54
+ "description": "Successful response. The actual response will vary."
55
+ }
56
+ }
57
+ }
58
+ },
59
+ "/_app": {
60
+ "get": {
61
+ "summary": "Discovered endpoint: /_app",
62
+ "description": "An endpoint discovered at /_app.",
63
+ "responses": {
64
+ "200": {
65
+ "description": "Successful response. The actual response will vary."
66
+ }
67
+ }
68
+ }
69
+ },
70
+ "/_next/data/": {
71
+ "get": {
72
+ "summary": "Discovered endpoint: /_next/data/",
73
+ "description": "An endpoint discovered at /_next/data/.",
74
+ "responses": {
75
+ "200": {
76
+ "description": "Successful response. The actual response will vary."
77
+ }
78
+ }
79
+ }
80
+ },
81
+ "/_not-found": {
82
+ "get": {
83
+ "summary": "Discovered endpoint: /_not-found",
84
+ "description": "An endpoint discovered at /_not-found.",
85
+ "responses": {
86
+ "200": {
87
+ "description": "Successful response. The actual response will vary."
88
+ }
89
+ }
90
+ }
91
+ },
92
+ "/page": {
93
+ "get": {
94
+ "summary": "Discovered endpoint: /page",
95
+ "description": "An endpoint discovered at /page.",
96
+ "responses": {
97
+ "200": {
98
+ "description": "Successful response. The actual response will vary."
99
+ }
100
+ }
101
+ }
102
+ },
103
+ "/_document": {
104
+ "get": {
105
+ "summary": "Discovered endpoint: /_document",
106
+ "description": "An endpoint discovered at /_document.",
107
+ "responses": {
108
+ "200": {
109
+ "description": "Successful response. The actual response will vary."
110
+ }
111
+ }
112
+ }
113
+ },
114
+ "/500": {
115
+ "get": {
116
+ "summary": "Discovered endpoint: /500",
117
+ "description": "An endpoint discovered at /500.",
118
+ "responses": {
119
+ "200": {
120
+ "description": "Successful response. The actual response will vary."
121
+ }
122
+ }
123
+ }
124
+ },
125
+ "/_next/image": {
126
+ "get": {
127
+ "summary": "Discovered endpoint: /_next/image",
128
+ "description": "An endpoint discovered at /_next/image.",
129
+ "responses": {
130
+ "200": {
131
+ "description": "Successful response. The actual response will vary."
132
+ }
133
+ }
134
+ }
135
+ },
136
+ "/index/": {
137
+ "get": {
138
+ "summary": "Discovered endpoint: /index/",
139
+ "description": "An endpoint discovered at /index/.",
140
+ "responses": {
141
+ "200": {
142
+ "description": "Successful response. The actual response will vary."
143
+ }
144
+ }
145
+ }
146
+ },
147
+ "/index": {
148
+ "get": {
149
+ "summary": "Discovered endpoint: /index",
150
+ "description": "An endpoint discovered at /index.",
151
+ "responses": {
152
+ "200": {
153
+ "description": "Successful response. The actual response will vary."
154
+ }
155
+ }
156
+ }
157
+ },
158
+ "/404": {
159
+ "get": {
160
+ "summary": "Discovered endpoint: /404",
161
+ "description": "An endpoint discovered at /404.",
162
+ "responses": {
163
+ "200": {
164
+ "description": "Successful response. The actual response will vary."
165
+ }
166
+ }
167
+ }
168
+ },
169
+ "/api": {
170
+ "get": {
171
+ "summary": "Discovered endpoint: /api",
172
+ "description": "An endpoint discovered at /api.",
173
+ "responses": {
174
+ "200": {
175
+ "description": "Successful response. The actual response will vary."
176
+ }
177
+ }
178
+ }
179
+ },
180
+ "/api/": {
181
+ "get": {
182
+ "summary": "Discovered endpoint: /api/",
183
+ "description": "An endpoint discovered at /api/.",
184
+ "responses": {
185
+ "200": {
186
+ "description": "Successful response. The actual response will vary."
187
+ }
188
+ }
189
+ }
190
+ },
191
+ "/a/i": {
192
+ "get": {
193
+ "summary": "Discovered endpoint: /a/i",
194
+ "description": "An endpoint discovered at /a/i.",
195
+ "responses": {
196
+ "200": {
197
+ "description": "Successful response. The actual response will vary."
198
+ }
199
+ }
200
+ }
201
+ },
202
+ "/a/b": {
203
+ "get": {
204
+ "summary": "Discovered endpoint: /a/b",
205
+ "description": "An endpoint discovered at /a/b.",
206
+ "responses": {
207
+ "200": {
208
+ "description": "Successful response. The actual response will vary."
209
+ }
210
+ }
211
+ }
212
+ },
213
+ "/cdn-cgi/l/email-protection#": {
214
+ "get": {
215
+ "summary": "Discovered endpoint: /cdn-cgi/l/email-protection#",
216
+ "description": "An endpoint discovered at /cdn-cgi/l/email-protection#.",
217
+ "responses": {
218
+ "200": {
219
+ "description": "Successful response. The actual response will vary."
220
+ }
221
+ }
222
+ }
223
+ }
224
+ }
225
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "urls": [
3
+ "https://www.youtube.com/embed/",
4
+ "https://player.vimeo.com/video/",
5
+ "https://m2xbcu4klqprtjl25jyr5bbtpi0lxias.lambda-url.ap-south-1.on.aws/",
6
+ "http://www.w3.org/2000/svg",
7
+ "https://www.google.com/maps/search/",
8
+ "https://reactjs.org/docs/error-decoder.html?invariant=",
9
+ "http://www.w3.org/1999/xlink",
10
+ "http://www.w3.org/XML/1998/namespace",
11
+ "http://www.w3.org/1998/Math/MathML",
12
+ "http://www.w3.org/1999/xhtml",
13
+ "http://n",
14
+ "https://fonts.googleapis.com/",
15
+ "https://fonts.gstatic.com",
16
+ "https://use.typekit.net",
17
+ "https://fonts.googleapis.com/css",
18
+ "https://use.typekit.net/",
19
+ "http://f",
20
+ "http://a",
21
+ "http://a/c%20d?a=1&c=3",
22
+ "https://a@b",
23
+ "http://a#б",
24
+ "http://x"
25
+ ],
26
+ "paths": [
27
+ "/www.",
28
+ "/_next/",
29
+ "/_next/image/",
30
+ "/_error",
31
+ "/_app",
32
+ "/_next/data/",
33
+ "/_not-found",
34
+ "/page",
35
+ "/_document",
36
+ "/500",
37
+ "/_next/image",
38
+ "/index/",
39
+ "/index",
40
+ "/404",
41
+ "/api",
42
+ "/api/",
43
+ "/a/i",
44
+ "/a/b",
45
+ "/cdn-cgi/l/email-protection#"
46
+ ]
47
+ }