@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.
- package/.api_gateway_config.json +1 -0
- package/.github/workflows/npm-publish.yml +35 -0
- package/.github/workflows/prettier.yaml +44 -0
- package/.prettierignore +2 -0
- package/.prettierrc +4 -0
- package/.resp_cache.json +1 -0
- package/.vscode/launch.json +27 -0
- package/CHANGELOG.md +40 -0
- package/README.md +35 -140
- package/build/api_gateway/checkFeasibility.js +32 -0
- package/build/api_gateway/checkFeasibility.js.map +1 -0
- package/build/api_gateway/checkFireWallBlocking.js +24 -0
- package/build/api_gateway/checkFireWallBlocking.js.map +1 -0
- package/build/api_gateway/genReq.js +202 -0
- package/build/api_gateway/genReq.js.map +1 -0
- package/build/api_gateway/index.js +277 -0
- package/build/api_gateway/index.js.map +1 -0
- package/build/endpoints/gen_report/gen_json.js +22 -0
- package/build/endpoints/gen_report/gen_json.js.map +1 -0
- package/build/endpoints/gen_report/gen_markdown.js +66 -0
- package/build/endpoints/gen_report/gen_markdown.js.map +1 -0
- package/build/endpoints/gen_report/utility/iterate_n_store.js +46 -0
- package/build/endpoints/gen_report/utility/iterate_n_store.js.map +1 -0
- package/build/endpoints/index.js +89 -0
- package/build/endpoints/index.js.map +1 -0
- package/build/endpoints/next_js/client_jsFilesHref.js +91 -0
- package/build/endpoints/next_js/client_jsFilesHref.js.map +1 -0
- package/build/endpoints/next_js/client_jsonParse.js +75 -0
- package/build/endpoints/next_js/client_jsonParse.js.map +1 -0
- package/build/endpoints/next_js/client_subsequentRequests.js +199 -0
- package/build/endpoints/next_js/client_subsequentRequests.js.map +1 -0
- package/build/endpoints/next_js/getWebpacks.js +45 -0
- package/build/endpoints/next_js/getWebpacks.js.map +1 -0
- package/build/globalConfig.js +11 -0
- package/build/globalConfig.js.map +1 -0
- package/build/index.js +166 -0
- package/build/index.js.map +1 -0
- package/build/lazyLoad/downloadFilesUtil.js +128 -0
- package/build/lazyLoad/downloadFilesUtil.js.map +1 -0
- package/build/lazyLoad/downloadLoadedJsUtil.js +51 -0
- package/build/lazyLoad/downloadLoadedJsUtil.js.map +1 -0
- package/build/lazyLoad/globals.js +25 -0
- package/build/lazyLoad/globals.js.map +1 -0
- package/build/lazyLoad/index.js +171 -0
- package/build/lazyLoad/index.js.map +1 -0
- package/build/lazyLoad/next_js/next_GetJSScript.js +94 -0
- package/build/lazyLoad/next_js/next_GetJSScript.js.map +1 -0
- package/build/lazyLoad/next_js/next_GetLazyResources.js +202 -0
- package/build/lazyLoad/next_js/next_GetLazyResources.js.map +1 -0
- package/build/lazyLoad/next_js/next_SubsequentRequests.js +120 -0
- package/build/lazyLoad/next_js/next_SubsequentRequests.js.map +1 -0
- package/build/lazyLoad/nuxt_js/nuxt_astParse.js +188 -0
- package/build/lazyLoad/nuxt_js/nuxt_astParse.js.map +1 -0
- package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +75 -0
- package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js.map +1 -0
- package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +94 -0
- package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js.map +1 -0
- package/build/lazyLoad/svelte/svelte_getFromPageSource.js +68 -0
- package/build/lazyLoad/svelte/svelte_getFromPageSource.js.map +1 -0
- package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js +95 -0
- package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js.map +1 -0
- package/build/map/index.js +58 -0
- package/build/map/index.js.map +1 -0
- package/build/map/next_js/getFetchInstances.js +105 -0
- package/build/map/next_js/getFetchInstances.js.map +1 -0
- package/build/map/next_js/getWebpackConnections.js +224 -0
- package/build/map/next_js/getWebpackConnections.js.map +1 -0
- package/build/map/next_js/interactive.js +32 -0
- package/build/map/next_js/interactive.js.map +1 -0
- package/build/map/next_js/interactive_helpers/commandHandler.js +190 -0
- package/build/map/next_js/interactive_helpers/commandHandler.js.map +1 -0
- package/build/map/next_js/interactive_helpers/commandHelpers.js +91 -0
- package/build/map/next_js/interactive_helpers/commandHelpers.js.map +1 -0
- package/build/map/next_js/interactive_helpers/helpMenu.js +11 -0
- package/build/map/next_js/interactive_helpers/helpMenu.js.map +1 -0
- package/build/map/next_js/interactive_helpers/keybindings.js +80 -0
- package/build/map/next_js/interactive_helpers/keybindings.js.map +1 -0
- package/build/map/next_js/interactive_helpers/printer.js +17 -0
- package/build/map/next_js/interactive_helpers/printer.js.map +1 -0
- package/build/map/next_js/interactive_helpers/ui.js +81 -0
- package/build/map/next_js/interactive_helpers/ui.js.map +1 -0
- package/build/map/next_js/resolveFetch.js +201 -0
- package/build/map/next_js/resolveFetch.js.map +1 -0
- package/build/run/index.js +62 -0
- package/build/run/index.js.map +1 -0
- package/build/strings/index.js +235 -0
- package/build/strings/index.js.map +1 -0
- package/build/strings/openapi.js +55 -0
- package/build/strings/openapi.js.map +1 -0
- package/build/strings/permutate.js +55 -0
- package/build/strings/permutate.js.map +1 -0
- package/build/strings/secrets.js +89 -0
- package/build/strings/secrets.js.map +1 -0
- package/build/techDetect/index.js +224 -0
- package/build/techDetect/index.js.map +1 -0
- package/build/utility/ai.js +69 -0
- package/build/utility/ai.js.map +1 -0
- package/build/utility/globals.js +84 -0
- package/build/utility/globals.js.map +1 -0
- package/build/utility/interfaces.js +2 -0
- package/build/utility/interfaces.js.map +1 -0
- package/build/utility/makeReq.js +265 -0
- package/build/utility/makeReq.js.map +1 -0
- package/build/utility/resolvePath.js +44 -0
- package/build/utility/resolvePath.js.map +1 -0
- package/{utility → build/utility}/runSandboxed.js +10 -13
- package/build/utility/runSandboxed.js.map +1 -0
- package/{utility → build/utility}/urlUtils.js +9 -11
- package/build/utility/urlUtils.js.map +1 -0
- package/docs/README.md +20 -0
- package/docs/api-gateway.md +68 -0
- package/docs/endpoints.md +49 -0
- package/docs/example-scenario.md +258 -0
- package/docs/interactive-mode.md +76 -0
- package/docs/lazyload.md +56 -0
- package/docs/map.md +53 -0
- package/docs/run.md +54 -0
- package/docs/strings.md +75 -0
- package/endpoints.json +77 -0
- package/extracted_urls-openapi.json +225 -0
- package/extracted_urls-swagger.json +225 -0
- package/extracted_urls.json +47 -0
- package/extracted_urls.txt +296 -0
- package/mapped.json +3413 -0
- package/output/ss0x00.com/_next/data/k7xKVnxmboK4SktY2dZWt/index.json +971 -0
- package/output/ss0x00.com/_next/static/chunks/12.7e6d2ac6e1808fc2.js +247 -0
- package/output/ss0x00.com/_next/static/chunks/128.160aa801ef0445bc.js +1074 -0
- package/output/ss0x00.com/_next/static/chunks/132.55df84f7707fc278.js +102 -0
- package/output/ss0x00.com/_next/static/chunks/142.77038c55d9ec10ba.js +96 -0
- package/output/ss0x00.com/_next/static/chunks/215.321479e91d330bfa.js +228 -0
- package/output/ss0x00.com/_next/static/chunks/229.097c396d86b4a882.js +458 -0
- package/output/ss0x00.com/_next/static/chunks/257.5fd052aa4ef06ef9.js +1327 -0
- package/output/ss0x00.com/_next/static/chunks/268.72cb3779f66db70b.js +10520 -0
- package/output/ss0x00.com/_next/static/chunks/320.57d528b0e9bf86f0.js +186 -0
- package/output/ss0x00.com/_next/static/chunks/325.302a44b604c35f17.js +88 -0
- package/output/ss0x00.com/_next/static/chunks/328.e4a0307a4fddf318.js +248 -0
- package/output/ss0x00.com/_next/static/chunks/432.3621f17504ef18f2.js +443 -0
- package/output/ss0x00.com/_next/static/chunks/44.e90dd963003a3d43.js +1094 -0
- package/output/ss0x00.com/_next/static/chunks/442.8c054f100f9e5e50.js +1082 -0
- package/output/ss0x00.com/_next/static/chunks/460.f8db9a5142598e2c.js +466 -0
- package/output/ss0x00.com/_next/static/chunks/487.05ca55420459c002.js +78 -0
- package/output/ss0x00.com/_next/static/chunks/567.1909a6b0a920114b.js +1374 -0
- package/output/ss0x00.com/_next/static/chunks/586.802fc9214d87fb29.js +752 -0
- package/output/ss0x00.com/_next/static/chunks/620.a2a3a6b94d30a4c8.js +1037 -0
- package/output/ss0x00.com/_next/static/chunks/642.6b3e487c9604cbb8.js +1628 -0
- package/output/ss0x00.com/_next/static/chunks/673.e5d77887e5c6a68c.js +1045 -0
- package/output/ss0x00.com/_next/static/chunks/684.8b8e52baca70524b.js +96 -0
- package/output/ss0x00.com/_next/static/chunks/686.79480519e5ccfb77.js +296 -0
- package/output/ss0x00.com/_next/static/chunks/756.7a3878a2e6765be7.js +504 -0
- package/output/ss0x00.com/_next/static/chunks/761.7bea7516c5d22b2a.js +1485 -0
- package/output/ss0x00.com/_next/static/chunks/794.e079ef369b41a3c5.js +1350 -0
- package/output/ss0x00.com/_next/static/chunks/826.31ba213e1d023c68.js +1031 -0
- package/output/ss0x00.com/_next/static/chunks/847.d8397a73efc81848.js +1068 -0
- package/output/ss0x00.com/_next/static/chunks/848.5feaeee1e2624aea.js +132 -0
- package/output/ss0x00.com/_next/static/chunks/850.ecc7c3c3d787ee03.js +1472 -0
- package/output/ss0x00.com/_next/static/chunks/853.50b9eb60b7d0e83c.js +1472 -0
- package/output/ss0x00.com/_next/static/chunks/856.7a7bb6c3c7bfc2ba.js +1320 -0
- package/output/ss0x00.com/_next/static/chunks/859.df4bd45c03a65f53.js +1306 -0
- package/output/ss0x00.com/_next/static/chunks/867.e8633955a147c978.js +541 -0
- package/output/ss0x00.com/_next/static/chunks/921.c3123f20a4c8d53c.js +96 -0
- package/output/ss0x00.com/_next/static/chunks/932.25cb421c466c99cb.js +999 -0
- package/output/ss0x00.com/_next/static/chunks/framework-64ad27b21261a9ce.js +9189 -0
- package/output/ss0x00.com/_next/static/chunks/main-710ab85aa9a8f10d.js +6583 -0
- package/output/ss0x00.com/_next/static/chunks/pages/5D-af5a23529ce3c337.js +486 -0
- package/output/ss0x00.com/_next/static/chunks/pages/_app-c449865c8af1faa0.js +39 -0
- package/output/ss0x00.com/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js +6383 -0
- package/output/ss0x00.com/_next/static/chunks/webpack-efff35ee26971294.js +271 -0
- package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_buildManifest.js +8 -0
- package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_ssgManifest.js +3 -0
- package/output/ss0x00.com/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js +82 -0
- package/package.json +50 -38
- package/strings.json +7407 -0
- package/api_gateway/checkFeasibility.js +0 -25
- package/api_gateway/checkFireWallBlocking.js +0 -17
- package/api_gateway/genReq.js +0 -214
- package/api_gateway/index.js +0 -325
- package/endpoints/index.js +0 -7
- package/globalConfig.js +0 -12
- package/index.js +0 -69
- package/lazyLoad/downloadFilesUtil.js +0 -122
- package/lazyLoad/downloadLoadedJsUtil.js +0 -54
- package/lazyLoad/globals.js +0 -15
- package/lazyLoad/index.js +0 -167
- package/lazyLoad/next_js/next_GetJSScript.js +0 -99
- package/lazyLoad/next_js/next_GetLazyResources.js +0 -201
- package/lazyLoad/next_js/next_SubsequentRequests.js +0 -138
- package/lazyLoad/nuxt_js/nuxt_astParse.js +0 -194
- package/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +0 -77
- package/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +0 -99
- package/research/firewall_bypass.md +0 -38
- package/research/next_js.md +0 -116
- package/research/nuxt_js.md +0 -125
- package/research/vue_js.md +0 -9
- package/strings/index.js +0 -145
- package/techDetect/index.js +0 -156
- package/utility/globals.js +0 -6
- package/utility/makeReq.js +0 -179
- package/utility/resolvePath.js +0 -43
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
// JS Source: https://ss0x00.com/_next/static/chunks/webpack-efff35ee26971294.js
|
|
2
|
+
!(function () {
|
|
3
|
+
"use strict";
|
|
4
|
+
var e,
|
|
5
|
+
t,
|
|
6
|
+
n,
|
|
7
|
+
r,
|
|
8
|
+
c,
|
|
9
|
+
o,
|
|
10
|
+
a,
|
|
11
|
+
f = {},
|
|
12
|
+
u = {};
|
|
13
|
+
function i(e) {
|
|
14
|
+
var t = u[e];
|
|
15
|
+
if (void 0 !== t) return t.exports;
|
|
16
|
+
var n = (u[e] = { exports: {} }),
|
|
17
|
+
r = !0;
|
|
18
|
+
try {
|
|
19
|
+
(f[e].call(n.exports, n, n.exports, i), (r = !1));
|
|
20
|
+
} finally {
|
|
21
|
+
r && delete u[e];
|
|
22
|
+
}
|
|
23
|
+
return n.exports;
|
|
24
|
+
}
|
|
25
|
+
((i.m = f),
|
|
26
|
+
(e = []),
|
|
27
|
+
(i.O = function (t, n, r, c) {
|
|
28
|
+
if (n) {
|
|
29
|
+
c = c || 0;
|
|
30
|
+
for (var o = e.length; o > 0 && e[o - 1][2] > c; o--) e[o] = e[o - 1];
|
|
31
|
+
e[o] = [n, r, c];
|
|
32
|
+
return;
|
|
33
|
+
}
|
|
34
|
+
for (var a = 1 / 0, o = 0; o < e.length; o++) {
|
|
35
|
+
for (
|
|
36
|
+
var n = e[o][0], r = e[o][1], c = e[o][2], f = !0, u = 0;
|
|
37
|
+
u < n.length;
|
|
38
|
+
u++
|
|
39
|
+
)
|
|
40
|
+
a >= c &&
|
|
41
|
+
Object.keys(i.O).every(function (e) {
|
|
42
|
+
return i.O[e](n[u]);
|
|
43
|
+
})
|
|
44
|
+
? n.splice(u--, 1)
|
|
45
|
+
: ((f = !1), c < a && (a = c));
|
|
46
|
+
if (f) {
|
|
47
|
+
e.splice(o--, 1);
|
|
48
|
+
var d = r();
|
|
49
|
+
void 0 !== d && (t = d);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
return t;
|
|
53
|
+
}),
|
|
54
|
+
(i.n = function (e) {
|
|
55
|
+
var t =
|
|
56
|
+
e && e.__esModule
|
|
57
|
+
? function () {
|
|
58
|
+
return e.default;
|
|
59
|
+
}
|
|
60
|
+
: function () {
|
|
61
|
+
return e;
|
|
62
|
+
};
|
|
63
|
+
return (i.d(t, { a: t }), t);
|
|
64
|
+
}),
|
|
65
|
+
(i.d = function (e, t) {
|
|
66
|
+
for (var n in t)
|
|
67
|
+
i.o(t, n) &&
|
|
68
|
+
!i.o(e, n) &&
|
|
69
|
+
Object.defineProperty(e, n, { enumerable: !0, get: t[n] });
|
|
70
|
+
}),
|
|
71
|
+
(i.f = {}),
|
|
72
|
+
(i.e = function (e) {
|
|
73
|
+
return Promise.all(
|
|
74
|
+
Object.keys(i.f).reduce(function (t, n) {
|
|
75
|
+
return (i.f[n](e, t), t);
|
|
76
|
+
}, []),
|
|
77
|
+
);
|
|
78
|
+
}),
|
|
79
|
+
(i.u = function (e) {
|
|
80
|
+
return (
|
|
81
|
+
"static/chunks/" +
|
|
82
|
+
e +
|
|
83
|
+
"." +
|
|
84
|
+
{
|
|
85
|
+
12: "7e6d2ac6e1808fc2",
|
|
86
|
+
44: "e90dd963003a3d43",
|
|
87
|
+
128: "160aa801ef0445bc",
|
|
88
|
+
132: "55df84f7707fc278",
|
|
89
|
+
142: "77038c55d9ec10ba",
|
|
90
|
+
215: "321479e91d330bfa",
|
|
91
|
+
229: "097c396d86b4a882",
|
|
92
|
+
257: "5fd052aa4ef06ef9",
|
|
93
|
+
268: "72cb3779f66db70b",
|
|
94
|
+
320: "57d528b0e9bf86f0",
|
|
95
|
+
325: "302a44b604c35f17",
|
|
96
|
+
328: "e4a0307a4fddf318",
|
|
97
|
+
432: "3621f17504ef18f2",
|
|
98
|
+
442: "8c054f100f9e5e50",
|
|
99
|
+
460: "f8db9a5142598e2c",
|
|
100
|
+
487: "05ca55420459c002",
|
|
101
|
+
567: "1909a6b0a920114b",
|
|
102
|
+
586: "802fc9214d87fb29",
|
|
103
|
+
620: "a2a3a6b94d30a4c8",
|
|
104
|
+
642: "6b3e487c9604cbb8",
|
|
105
|
+
673: "e5d77887e5c6a68c",
|
|
106
|
+
684: "8b8e52baca70524b",
|
|
107
|
+
686: "79480519e5ccfb77",
|
|
108
|
+
756: "7a3878a2e6765be7",
|
|
109
|
+
761: "7bea7516c5d22b2a",
|
|
110
|
+
794: "e079ef369b41a3c5",
|
|
111
|
+
826: "31ba213e1d023c68",
|
|
112
|
+
847: "d8397a73efc81848",
|
|
113
|
+
848: "5feaeee1e2624aea",
|
|
114
|
+
850: "ecc7c3c3d787ee03",
|
|
115
|
+
853: "50b9eb60b7d0e83c",
|
|
116
|
+
856: "7a7bb6c3c7bfc2ba",
|
|
117
|
+
859: "df4bd45c03a65f53",
|
|
118
|
+
867: "e8633955a147c978",
|
|
119
|
+
921: "c3123f20a4c8d53c",
|
|
120
|
+
932: "25cb421c466c99cb",
|
|
121
|
+
}[e] +
|
|
122
|
+
".js"
|
|
123
|
+
);
|
|
124
|
+
}),
|
|
125
|
+
(i.miniCssF = function (e) {}),
|
|
126
|
+
(i.g = (function () {
|
|
127
|
+
if ("object" == typeof globalThis) return globalThis;
|
|
128
|
+
try {
|
|
129
|
+
return this || Function("return this")();
|
|
130
|
+
} catch (e) {
|
|
131
|
+
if ("object" == typeof window) return window;
|
|
132
|
+
}
|
|
133
|
+
})()),
|
|
134
|
+
(i.o = function (e, t) {
|
|
135
|
+
return Object.prototype.hasOwnProperty.call(e, t);
|
|
136
|
+
}),
|
|
137
|
+
(t = {}),
|
|
138
|
+
(n = "_N_E:"),
|
|
139
|
+
(i.l = function (e, r, c, o) {
|
|
140
|
+
if (t[e]) {
|
|
141
|
+
t[e].push(r);
|
|
142
|
+
return;
|
|
143
|
+
}
|
|
144
|
+
if (void 0 !== c)
|
|
145
|
+
for (
|
|
146
|
+
var a, f, u = document.getElementsByTagName("script"), d = 0;
|
|
147
|
+
d < u.length;
|
|
148
|
+
d++
|
|
149
|
+
) {
|
|
150
|
+
var b = u[d];
|
|
151
|
+
if (
|
|
152
|
+
b.getAttribute("src") == e ||
|
|
153
|
+
b.getAttribute("data-webpack") == n + c
|
|
154
|
+
) {
|
|
155
|
+
a = b;
|
|
156
|
+
break;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
(a ||
|
|
160
|
+
((f = !0),
|
|
161
|
+
((a = document.createElement("script")).charset = "utf-8"),
|
|
162
|
+
(a.timeout = 120),
|
|
163
|
+
i.nc && a.setAttribute("nonce", i.nc),
|
|
164
|
+
a.setAttribute("data-webpack", n + c),
|
|
165
|
+
(a.src = i.tu(e))),
|
|
166
|
+
(t[e] = [r]));
|
|
167
|
+
var l = function (n, r) {
|
|
168
|
+
((a.onerror = a.onload = null), clearTimeout(s));
|
|
169
|
+
var c = t[e];
|
|
170
|
+
if (
|
|
171
|
+
(delete t[e],
|
|
172
|
+
a.parentNode && a.parentNode.removeChild(a),
|
|
173
|
+
c &&
|
|
174
|
+
c.forEach(function (e) {
|
|
175
|
+
return e(r);
|
|
176
|
+
}),
|
|
177
|
+
n)
|
|
178
|
+
)
|
|
179
|
+
return n(r);
|
|
180
|
+
},
|
|
181
|
+
s = setTimeout(
|
|
182
|
+
l.bind(null, void 0, { type: "timeout", target: a }),
|
|
183
|
+
12e4,
|
|
184
|
+
);
|
|
185
|
+
((a.onerror = l.bind(null, a.onerror)),
|
|
186
|
+
(a.onload = l.bind(null, a.onload)),
|
|
187
|
+
f && document.head.appendChild(a));
|
|
188
|
+
}),
|
|
189
|
+
(i.r = function (e) {
|
|
190
|
+
("undefined" != typeof Symbol &&
|
|
191
|
+
Symbol.toStringTag &&
|
|
192
|
+
Object.defineProperty(e, Symbol.toStringTag, { value: "Module" }),
|
|
193
|
+
Object.defineProperty(e, "__esModule", { value: !0 }));
|
|
194
|
+
}),
|
|
195
|
+
(i.tt = function () {
|
|
196
|
+
return (
|
|
197
|
+
void 0 === r &&
|
|
198
|
+
((r = {
|
|
199
|
+
createScriptURL: function (e) {
|
|
200
|
+
return e;
|
|
201
|
+
},
|
|
202
|
+
}),
|
|
203
|
+
"undefined" != typeof trustedTypes &&
|
|
204
|
+
trustedTypes.createPolicy &&
|
|
205
|
+
(r = trustedTypes.createPolicy("nextjs#bundler", r))),
|
|
206
|
+
r
|
|
207
|
+
);
|
|
208
|
+
}),
|
|
209
|
+
(i.tu = function (e) {
|
|
210
|
+
return i.tt().createScriptURL(e);
|
|
211
|
+
}),
|
|
212
|
+
(i.p = "/_next/"),
|
|
213
|
+
(c = { 272: 0 }),
|
|
214
|
+
(i.f.j = function (e, t) {
|
|
215
|
+
var n = i.o(c, e) ? c[e] : void 0;
|
|
216
|
+
if (0 !== n) {
|
|
217
|
+
if (n) t.push(n[2]);
|
|
218
|
+
else if (272 != e) {
|
|
219
|
+
var r = new Promise(function (t, r) {
|
|
220
|
+
n = c[e] = [t, r];
|
|
221
|
+
});
|
|
222
|
+
t.push((n[2] = r));
|
|
223
|
+
var o = i.p + i.u(e),
|
|
224
|
+
a = Error();
|
|
225
|
+
i.l(
|
|
226
|
+
o,
|
|
227
|
+
function (t) {
|
|
228
|
+
if (i.o(c, e) && (0 !== (n = c[e]) && (c[e] = void 0), n)) {
|
|
229
|
+
var r = t && ("load" === t.type ? "missing" : t.type),
|
|
230
|
+
o = t && t.target && t.target.src;
|
|
231
|
+
((a.message =
|
|
232
|
+
"Loading chunk " + e + " failed.\n(" + r + ": " + o + ")"),
|
|
233
|
+
(a.name = "ChunkLoadError"),
|
|
234
|
+
(a.type = r),
|
|
235
|
+
(a.request = o),
|
|
236
|
+
n[1](a));
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"chunk-" + e,
|
|
240
|
+
e,
|
|
241
|
+
);
|
|
242
|
+
} else c[e] = 0;
|
|
243
|
+
}
|
|
244
|
+
}),
|
|
245
|
+
(i.O.j = function (e) {
|
|
246
|
+
return 0 === c[e];
|
|
247
|
+
}),
|
|
248
|
+
(o = function (e, t) {
|
|
249
|
+
var n,
|
|
250
|
+
r,
|
|
251
|
+
o = t[0],
|
|
252
|
+
a = t[1],
|
|
253
|
+
f = t[2],
|
|
254
|
+
u = 0;
|
|
255
|
+
if (
|
|
256
|
+
o.some(function (e) {
|
|
257
|
+
return 0 !== c[e];
|
|
258
|
+
})
|
|
259
|
+
) {
|
|
260
|
+
for (n in a) i.o(a, n) && (i.m[n] = a[n]);
|
|
261
|
+
if (f) var d = f(i);
|
|
262
|
+
}
|
|
263
|
+
for (e && e(t); u < o.length; u++)
|
|
264
|
+
((r = o[u]), i.o(c, r) && c[r] && c[r][0](), (c[r] = 0));
|
|
265
|
+
return i.O(d);
|
|
266
|
+
}),
|
|
267
|
+
(a = self.webpackChunk_N_E = self.webpackChunk_N_E || []).forEach(
|
|
268
|
+
o.bind(null, 0),
|
|
269
|
+
),
|
|
270
|
+
(a.push = o.bind(null, a.push.bind(a))));
|
|
271
|
+
})();
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// JS Source: https://ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_buildManifest.js
|
|
2
|
+
((self.__BUILD_MANIFEST = {
|
|
3
|
+
__rewrites: { afterFiles: [], beforeFiles: [], fallback: [] },
|
|
4
|
+
"/_error": ["static/chunks/pages/_error-77823ddac6993d35.js"],
|
|
5
|
+
"/[[...slug]]": ["static/chunks/pages/[[...slug]]-af5a23529ce3c337.js"],
|
|
6
|
+
sortedPages: ["/_app", "/_error", "/[[...slug]]"],
|
|
7
|
+
}),
|
|
8
|
+
self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB());
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
// JS Source: https://ss0x00.com/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js
|
|
2
|
+
!(function () {
|
|
3
|
+
"use strict";
|
|
4
|
+
function e(e) {
|
|
5
|
+
try {
|
|
6
|
+
if ("undefined" == typeof console) return;
|
|
7
|
+
"error" in console ? console.error(e) : console.log(e);
|
|
8
|
+
} catch (e) {}
|
|
9
|
+
}
|
|
10
|
+
function t(e) {
|
|
11
|
+
return (
|
|
12
|
+
(d.innerHTML = '<a href="' + e.replace(/"/g, """) + '"></a>'),
|
|
13
|
+
d.childNodes[0].getAttribute("href") || ""
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
function r(e, t) {
|
|
17
|
+
var r = e.substr(t, 2);
|
|
18
|
+
return parseInt(r, 16);
|
|
19
|
+
}
|
|
20
|
+
function n(n, c) {
|
|
21
|
+
for (var o = "", a = r(n, c), i = c + 2; i < n.length; i += 2) {
|
|
22
|
+
var l = r(n, i) ^ a;
|
|
23
|
+
o += String.fromCharCode(l);
|
|
24
|
+
}
|
|
25
|
+
try {
|
|
26
|
+
o = decodeURIComponent(escape(o));
|
|
27
|
+
} catch (u) {
|
|
28
|
+
e(u);
|
|
29
|
+
}
|
|
30
|
+
return t(o);
|
|
31
|
+
}
|
|
32
|
+
function c(t) {
|
|
33
|
+
for (var r = t.querySelectorAll("a"), c = 0; c < r.length; c++)
|
|
34
|
+
try {
|
|
35
|
+
var o = r[c],
|
|
36
|
+
a = o.href.indexOf(l);
|
|
37
|
+
a > -1 && (o.href = "mailto:" + n(o.href, a + l.length));
|
|
38
|
+
} catch (i) {
|
|
39
|
+
e(i);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
function o(t) {
|
|
43
|
+
for (var r = t.querySelectorAll(u), c = 0; c < r.length; c++)
|
|
44
|
+
try {
|
|
45
|
+
var o = r[c],
|
|
46
|
+
a = o.parentNode,
|
|
47
|
+
i = o.getAttribute(f);
|
|
48
|
+
if (i) {
|
|
49
|
+
var l = n(i, 0),
|
|
50
|
+
d = document.createTextNode(l);
|
|
51
|
+
a.replaceChild(d, o);
|
|
52
|
+
}
|
|
53
|
+
} catch (h) {
|
|
54
|
+
e(h);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
function a(t) {
|
|
58
|
+
for (var r = t.querySelectorAll("template"), n = 0; n < r.length; n++)
|
|
59
|
+
try {
|
|
60
|
+
i(r[n].content);
|
|
61
|
+
} catch (c) {
|
|
62
|
+
e(c);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
function i(t) {
|
|
66
|
+
try {
|
|
67
|
+
(c(t), o(t), a(t));
|
|
68
|
+
} catch (r) {
|
|
69
|
+
e(r);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
var l = "/cdn-cgi/l/email-protection#",
|
|
73
|
+
u = ".__cf_email__",
|
|
74
|
+
f = "data-cfemail",
|
|
75
|
+
d = document.createElement("div");
|
|
76
|
+
(i(document),
|
|
77
|
+
(function () {
|
|
78
|
+
var e =
|
|
79
|
+
document.currentScript || document.scripts[document.scripts.length - 1];
|
|
80
|
+
e.parentNode.removeChild(e);
|
|
81
|
+
})());
|
|
82
|
+
})();
|
package/package.json
CHANGED
|
@@ -1,40 +1,52 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@shriyanss/js-recon",
|
|
3
|
+
"version": "1.1.0-beta.1",
|
|
4
|
+
"description": "JS Recon Tool",
|
|
5
|
+
"main": "build/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"js-recon": "build/index.js"
|
|
9
|
+
},
|
|
10
|
+
"types": "build/index.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "rm -rf build/ && tsc",
|
|
13
|
+
"start": "node build/index.js",
|
|
14
|
+
"test": "node build/index.js -h"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [],
|
|
17
|
+
"author": "Shriyans Sudhi",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@aws-sdk/client-api-gateway": "^3.829.0",
|
|
21
|
+
"@babel/parser": "^7.27.4",
|
|
22
|
+
"@babel/traverse": "^7.27.4",
|
|
23
|
+
"@babel/types": "^7.27.6",
|
|
24
|
+
"@types/chalk": "^0.4.31",
|
|
25
|
+
"blessed": "^0.1.81",
|
|
26
|
+
"chalk": "^5.4.1",
|
|
27
|
+
"cheerio": "^1.0.0",
|
|
28
|
+
"cli-highlight": "^2.1.11",
|
|
29
|
+
"commander": "^14.0.0",
|
|
30
|
+
"fs": "^0.0.2",
|
|
31
|
+
"inquirer": "^12.6.3",
|
|
32
|
+
"md5": "^2.3.0",
|
|
33
|
+
"ollama": "^0.5.16",
|
|
34
|
+
"openai": "^5.8.2",
|
|
35
|
+
"path": "^0.12.7",
|
|
36
|
+
"prettier": "^3.5.3",
|
|
37
|
+
"puppeteer": "^24.11.2",
|
|
38
|
+
"ses": "^1.13.0"
|
|
39
|
+
},
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/shriyanss/js-recon.git"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/shriyanss/js-recon/issues"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/shriyanss/js-recon#readme",
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"ts-node": "^10.9.2",
|
|
50
|
+
"tsconfig-paths": "^4.2.0"
|
|
51
|
+
}
|
|
40
52
|
}
|