mirror of
https://github.com/vitalygashkov/crextractor.git
synced 2026-07-16 01:44:24 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4264727c33 | ||
|
|
c6ec34ca8b | ||
|
|
3297dce797 | ||
|
|
ae1e4c97d7 | ||
|
|
f5d2233d68 | ||
|
|
196a1cad1d | ||
|
|
00408ad8e8 | ||
|
|
4e5a0d1561 | ||
|
|
cbdde54471 | ||
|
|
777eb4ee2b |
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"$schema": "./node_modules/oxfmt/configuration_schema.json",
|
||||
"printWidth": 100,
|
||||
"singleQuote": true,
|
||||
"jsxSingleQuote": false,
|
||||
"trailingComma": "all",
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"semi": true,
|
||||
"ignorePatterns": []
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"version": "3.92.3 (977)",
|
||||
"id": "dvoxpszj59depczpxvwj",
|
||||
"secret": "_VQmMQlJw65tMCIT-SvM2r6OvBTs85Gf",
|
||||
"encoded": "ZHZveHBzemo1OWRlcGN6cHh2d2o6X1ZRbU1RbEp3NjV0TUNJVC1Tdk0ycjZPdkJUczg1R2Y=",
|
||||
"authorization": "Basic ZHZveHBzemo1OWRlcGN6cHh2d2o6X1ZRbU1RbEp3NjV0TUNJVC1Tdk0ycjZPdkJUczg1R2Y="
|
||||
"version": "3.97.3 (1023)",
|
||||
"id": "t5u2txnuq8td1z0hodzt",
|
||||
"secret": "4qEyXRs-WUeFwWPp4Dc5QyWu0YFtYP7O",
|
||||
"encoded": "dDV1MnR4bnVxOHRkMXowaG9kenQ6NHFFeVhScy1XVWVGd1dQcDREYzVReVd1MFlGdFlQN08=",
|
||||
"authorization": "Basic dDV1MnR4bnVxOHRkMXowaG9kenQ6NHFFeVhScy1XVWVGd1dQcDREYzVReVd1MFlGdFlQN08="
|
||||
}
|
||||
+5
-5
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"version": "3.45.2 (22274)",
|
||||
"id": "cb9nzrmht32vgtexygko",
|
||||
"secret": "KUwmMjJXxxursHITd1zvl2C2yQaQo8N4",
|
||||
"encoded": "Y2I5bnpybWh0MzJ2Z3RleHlna286S1V3bU1qSlh4eHVyc0hJVGQxenZsMkMyeVFhUW84TjQ=",
|
||||
"authorization": "Basic Y2I5bnpybWh0MzJ2Z3RleHlna286S1V3bU1qSlh4eHVyc0hJVGQxenZsMkMyeVFhUW84TjQ="
|
||||
"version": "3.54.5 (22304)",
|
||||
"id": "ea9cmqltlqyzyan1vdy4",
|
||||
"secret": "-_YCpAD5gsxCiOHZzRLgICR8gOWXilQR",
|
||||
"encoded": "ZWE5Y21xbHRscXl6eWFuMXZkeTQ6LV9ZQ3BBRDVnc3hDaU9IWnpSTGdJQ1I4Z09XWGlsUVI=",
|
||||
"authorization": "Basic ZWE5Y21xbHRscXl6eWFuMXZkeTQ6LV9ZQ3BBRDVnc3hDaU9IWnpSTGdJQ1I4Z09XWGlsUVI="
|
||||
}
|
||||
+29
-9
@@ -15,14 +15,23 @@ const downloadMobileApk = async () => {
|
||||
};
|
||||
|
||||
const downloadTvApk = async () => {
|
||||
const searchParams = new URLSearchParams();
|
||||
searchParams.append('query', 'crunchyroll');
|
||||
searchParams.append('cdn', 'web');
|
||||
searchParams.append('q', 'bXlDUFU9YXJtNjQtdjhhLGFybWVhYmktdjdhLGFybWVhYmkmbGVhbmJhY2s9MA');
|
||||
searchParams.append('aab', '1');
|
||||
const searchUrl = `https://ws2-cache.aptoide.com/api/7/apps/search?${searchParams.toString()}`;
|
||||
const searchResults = await fetch(searchUrl).then((r) => r.json());
|
||||
const id = searchResults.datalist?.list?.[0]?.id;
|
||||
if (!id) {
|
||||
console.error('Unable to find ID for TV APK');
|
||||
return;
|
||||
}
|
||||
const source = 'https://webservices.aptoide.com/webservices/3/getApkInfo';
|
||||
const formData = new FormData();
|
||||
formData.append('identif', 'id:71666229');
|
||||
formData.append('mode', 'json');
|
||||
const response = await fetch(source, {
|
||||
method: 'POST',
|
||||
body: formData,
|
||||
});
|
||||
const body = new FormData();
|
||||
body.append('identif', `id:${id}`);
|
||||
body.append('mode', 'json');
|
||||
const response = await fetch(source, { method: 'POST', body });
|
||||
const json = await response.json();
|
||||
const url = json.apk.path;
|
||||
const filepath = join(process.cwd(), 'crunchyroll.apk');
|
||||
@@ -74,7 +83,15 @@ const parseCredentials = async (decompiledDir) => {
|
||||
if (id && secret) return { id, secret };
|
||||
}
|
||||
|
||||
const constantsPath = join(decompiledDir, 'sources', 'com', 'crunchyroll', 'api', 'util', 'Constants.java');
|
||||
const constantsPath = join(
|
||||
decompiledDir,
|
||||
'sources',
|
||||
'com',
|
||||
'crunchyroll',
|
||||
'api',
|
||||
'util',
|
||||
'Constants.java',
|
||||
);
|
||||
const constants = await readFile(constantsPath, 'utf8');
|
||||
return {
|
||||
id: constants.split(' PROD_CLIENT_ID = "')[1].split('"')[0],
|
||||
@@ -127,7 +144,10 @@ const extract = async ({ target = 'mobile', output, cleanup = false } = {}) => {
|
||||
console.log(`Authorization: ${authorization}`);
|
||||
|
||||
if (output) {
|
||||
await writeFile(output, JSON.stringify({ version, id, secret, encoded, authorization }, null, 2));
|
||||
await writeFile(
|
||||
output,
|
||||
JSON.stringify({ version, id, secret, encoded, authorization }, null, 2),
|
||||
);
|
||||
}
|
||||
|
||||
return { version, id, secret, encoded, authorization };
|
||||
|
||||
Generated
+159
-7
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "crextractor",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.5",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "crextractor",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.5",
|
||||
"funding": [
|
||||
{
|
||||
"type": "individual",
|
||||
@@ -21,12 +21,125 @@
|
||||
"crextractor": "bin/cli.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.2"
|
||||
"oxfmt": "^0.28.0",
|
||||
"typescript": "^5.9.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20"
|
||||
"node": ">=22"
|
||||
}
|
||||
},
|
||||
"node_modules/@oxfmt/darwin-arm64": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@oxfmt/darwin-arm64/-/darwin-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-jmUfF7cNJPw57bEK7sMIqrYRgn4LH428tSgtgLTCtjuGuu1ShREyrkeB7y8HtkXRfhBs4lVY+HMLhqElJvZ6ww==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
]
|
||||
},
|
||||
"node_modules/@oxfmt/darwin-x64": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@oxfmt/darwin-x64/-/darwin-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-S6vlV8S7jbjzJOSjfVg2CimUC0r7/aHDLdUm/3+/B/SU/s1jV7ivqWkMv1/8EB43d1BBwT9JQ60ZMTkBqeXSFA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"darwin"
|
||||
]
|
||||
},
|
||||
"node_modules/@oxfmt/linux-arm64-gnu": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@oxfmt/linux-arm64-gnu/-/linux-arm64-gnu-0.28.0.tgz",
|
||||
"integrity": "sha512-TfJkMZjePbLiskmxFXVAbGI/OZtD+y+fwS0wyW8O6DWG0ARTf0AipY9zGwGoOdpFuXOJceXvN4SHGLbYNDMY4Q==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@oxfmt/linux-arm64-musl": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@oxfmt/linux-arm64-musl/-/linux-arm64-musl-0.28.0.tgz",
|
||||
"integrity": "sha512-7fyQUdW203v4WWGr1T3jwTz4L7KX9y5DeATryQ6fLT6QQp9GEuct8/k0lYhd+ys42iTV/IkJF20e3YkfSOOILg==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@oxfmt/linux-x64-gnu": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@oxfmt/linux-x64-gnu/-/linux-x64-gnu-0.28.0.tgz",
|
||||
"integrity": "sha512-sRKqAvEonuz0qr1X1ncUZceOBJerKzkO2gZIZmosvy/JmqyffpIFL3OE2tqacFkeDhrC+dNYQpusO8zsfHo3pw==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@oxfmt/linux-x64-musl": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@oxfmt/linux-x64-musl/-/linux-x64-musl-0.28.0.tgz",
|
||||
"integrity": "sha512-fW6czbXutX/tdQe8j4nSIgkUox9RXqjyxwyWXUDItpoDkoXllq17qbD7GVc0whrEhYQC6hFE1UEAcDypLJoSzw==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"linux"
|
||||
]
|
||||
},
|
||||
"node_modules/@oxfmt/win32-arm64": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@oxfmt/win32-arm64/-/win32-arm64-0.28.0.tgz",
|
||||
"integrity": "sha512-D/HDeQBAQRjTbD9OLV6kRDcStrIfO+JsUODDCdGmhRfNX8LPCx95GpfyybpZfn3wVF8Jq/yjPXV1xLkQ+s7RcA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
]
|
||||
},
|
||||
"node_modules/@oxfmt/win32-x64": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/@oxfmt/win32-x64/-/win32-x64-0.28.0.tgz",
|
||||
"integrity": "sha512-4+S2j4OxOIyo8dz5osm5dZuL0yVmxXvtmNdHB5xyGwAWVvyWNvf7tCaQD7w2fdSsAXQLOvK7KFQrHFe33nJUCA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"optional": true,
|
||||
"os": [
|
||||
"win32"
|
||||
]
|
||||
},
|
||||
"node_modules/fastq": {
|
||||
"version": "1.19.1",
|
||||
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
|
||||
@@ -58,6 +171,35 @@
|
||||
"node": ">=20"
|
||||
}
|
||||
},
|
||||
"node_modules/oxfmt": {
|
||||
"version": "0.28.0",
|
||||
"resolved": "https://registry.npmjs.org/oxfmt/-/oxfmt-0.28.0.tgz",
|
||||
"integrity": "sha512-3+hhBqPE6Kp22KfJmnstrZbl+KdOVSEu1V0ABaFIg1rYLtrMgrupx9znnHgHLqKxAVHebjTdiCJDk30CXOt6cw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"tinypool": "2.1.0"
|
||||
},
|
||||
"bin": {
|
||||
"oxfmt": "bin/oxfmt"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^20.19.0 || >=22.12.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/Boshen"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"@oxfmt/darwin-arm64": "0.28.0",
|
||||
"@oxfmt/darwin-x64": "0.28.0",
|
||||
"@oxfmt/linux-arm64-gnu": "0.28.0",
|
||||
"@oxfmt/linux-arm64-musl": "0.28.0",
|
||||
"@oxfmt/linux-x64-gnu": "0.28.0",
|
||||
"@oxfmt/linux-x64-musl": "0.28.0",
|
||||
"@oxfmt/win32-arm64": "0.28.0",
|
||||
"@oxfmt/win32-x64": "0.28.0"
|
||||
}
|
||||
},
|
||||
"node_modules/reusify": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
|
||||
@@ -68,10 +210,20 @@
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/tinypool": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/tinypool/-/tinypool-2.1.0.tgz",
|
||||
"integrity": "sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^20.0.0 || >=22.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/typescript": {
|
||||
"version": "5.9.2",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz",
|
||||
"integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
|
||||
"version": "5.9.3",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
||||
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
||||
"dev": true,
|
||||
"license": "Apache-2.0",
|
||||
"bin": {
|
||||
|
||||
+4
-3
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "crextractor",
|
||||
"version": "1.3.3",
|
||||
"version": "1.3.5",
|
||||
"description": "Utility for extracting credentials from the Crunchyroll Android app",
|
||||
"main": "crextractor.js",
|
||||
"bin": {
|
||||
@@ -32,12 +32,13 @@
|
||||
}
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=20"
|
||||
"node": ">=22"
|
||||
},
|
||||
"dependencies": {
|
||||
"molnia": "^0.1.7"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.2"
|
||||
"oxfmt": "^0.28.0",
|
||||
"typescript": "^5.9.3"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user