gologin 2.1.12 → 2.1.14
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/package.json +1 -1
- package/src/gologin.js +35 -5
- package/.sentry-native/15e25388-76f1-4a90-cea4-9a33e95e5be5.run/af276dd3-14b9-4b32-df19-69cb16a9a85e.envelope +0 -5
- package/.sentry-native/15e25388-76f1-4a90-cea4-9a33e95e5be5.run.lock +0 -0
- package/.sentry-native/last_crash +0 -1
- package/gologin/.eslintrc.json +0 -290
- package/gologin/README.md +0 -163
- package/gologin/example.js +0 -36
- package/gologin/examples/example-amazon-cloud-browser.js +0 -37
- package/gologin/examples/example-amazon-headless.js +0 -50
- package/gologin/examples/example-amazon.js +0 -47
- package/gologin/examples/example-create-custom-profile.js +0 -39
- package/gologin/examples/example-create-profile.js +0 -40
- package/gologin/examples/example-custom-args.js +0 -34
- package/gologin/examples/example-fast-profile-settings.js +0 -69
- package/gologin/examples/example-gmail.js +0 -67
- package/gologin/examples/example-iphey.js +0 -17
- package/gologin/examples/example-local-profile.js +0 -26
- package/gologin/examples/example-login-walmart.js +0 -35
- package/gologin/examples/example-stopremote.js +0 -20
- package/gologin/examples/example-timezone.js +0 -44
- package/gologin/fonts.js +0 -4293
- package/gologin/fonts_config +0 -104
- package/gologin/gologin-browser-ext.zip +0 -0
- package/gologin/gologin_zeroprofile.b64 +0 -1
- package/gologin/index.d.ts +0 -61
- package/gologin/package.json +0 -49
- package/gologin/profile_export_example.csv +0 -2
- package/gologin/run.sh +0 -1
- package/gologin/src/bookmarks/utils.js +0 -15
- package/gologin/src/browser/browser-api.js +0 -95
- package/gologin/src/browser/browser-checker.js +0 -392
- package/gologin/src/browser/browser-user-data-manager.js +0 -335
- package/gologin/src/cookies/cookies-manager.js +0 -189
- package/gologin/src/extensions/extensions-extractor.js +0 -56
- package/gologin/src/extensions/extensions-manager.js +0 -384
- package/gologin/src/extensions/user-extensions-manager.js +0 -295
- package/gologin/src/gologin-api.js +0 -110
- package/gologin/src/gologin.js +0 -1472
- package/gologin/src/profile/profile-archiver.js +0 -86
- package/gologin/src/profile/profile-directories-to-remove.js +0 -75
- package/gologin/src/utils/browser.js +0 -62
- package/gologin/src/utils/common.js +0 -76
- package/gologin/src/utils/constants.js +0 -1
- package/gologin/src/utils/utils.js +0 -49
- package/gologin/zero_profile.zip +0 -0
- package/gologin-canvas.zip +0 -0
- package/gologin.zip +0 -0
- package/test.html +0 -1
package/package.json
CHANGED
package/src/gologin.js
CHANGED
|
@@ -9,6 +9,7 @@ import { dirname, join, resolve as _resolve, sep } from 'path';
|
|
|
9
9
|
import requests from 'requestretry';
|
|
10
10
|
import rimraf from 'rimraf';
|
|
11
11
|
import { SocksProxyAgent } from 'socks-proxy-agent';
|
|
12
|
+
import { fileURLToPath } from 'url';
|
|
12
13
|
|
|
13
14
|
import { fontsCollection } from '../fonts.js';
|
|
14
15
|
import { getCurrentProfileBookmarks } from './bookmarks/utils.js';
|
|
@@ -62,6 +63,7 @@ export class GoLogin {
|
|
|
62
63
|
this.isEmptyFonts = false;
|
|
63
64
|
this.isFirstSession = false;
|
|
64
65
|
this.isCloudHeadless = options.isCloudHeadless ?? true;
|
|
66
|
+
this.storageGatewayUrl = `${STORAGE_GATEWAY_BASE_URL}/upload`;
|
|
65
67
|
|
|
66
68
|
this.tmpdir = tmpdir();
|
|
67
69
|
this.autoUpdateBrowser = !!options.autoUpdateBrowser;
|
|
@@ -217,12 +219,11 @@ export class GoLogin {
|
|
|
217
219
|
async postFile(fileName, fileBuff) {
|
|
218
220
|
debug('POSTING FILE', fileBuff.length);
|
|
219
221
|
debug('Getting signed URL for S3');
|
|
220
|
-
const apiUrl = `${STORAGE_GATEWAY_BASE_URL}/upload`;
|
|
221
222
|
|
|
222
223
|
const bodyBufferBiteLength = Buffer.byteLength(fileBuff);
|
|
223
224
|
console.log('BUFFER SIZE', bodyBufferBiteLength);
|
|
224
225
|
|
|
225
|
-
await requests.put(
|
|
226
|
+
await requests.put(this.storageGatewayUrl, {
|
|
226
227
|
headers: {
|
|
227
228
|
Authorization: `Bearer ${this.access_token}`,
|
|
228
229
|
browserId: this.profile_id,
|
|
@@ -243,7 +244,7 @@ export class GoLogin {
|
|
|
243
244
|
|
|
244
245
|
async emptyProfileFolder() {
|
|
245
246
|
debug('get emptyProfileFolder');
|
|
246
|
-
const currentDir = dirname(
|
|
247
|
+
const currentDir = dirname(fileURLToPath(import.meta.url));
|
|
247
248
|
const zeroProfilePath = join(currentDir, '..', 'zero_profile.zip');
|
|
248
249
|
const profile = await readFile(_resolve(zeroProfilePath));
|
|
249
250
|
debug('emptyProfileFolder LENGTH ::', profile.length);
|
|
@@ -975,14 +976,14 @@ export class GoLogin {
|
|
|
975
976
|
false;
|
|
976
977
|
|
|
977
978
|
if (this.uploadCookiesToServer) {
|
|
978
|
-
await this.
|
|
979
|
+
const updateResult = await this.uploadProfileDataToServer();
|
|
980
|
+
this.storageGatewayUrl = updateResult.storageGateway.url;
|
|
979
981
|
}
|
|
980
982
|
|
|
981
983
|
this.is_stopping = true;
|
|
982
984
|
await this.sanitizeProfile();
|
|
983
985
|
|
|
984
986
|
if (is_posting) {
|
|
985
|
-
await this.saveBookmarksToDb();
|
|
986
987
|
await this.commitProfile();
|
|
987
988
|
}
|
|
988
989
|
|
|
@@ -1000,6 +1001,35 @@ export class GoLogin {
|
|
|
1000
1001
|
return false;
|
|
1001
1002
|
}
|
|
1002
1003
|
|
|
1004
|
+
async uploadProfileDataToServer() {
|
|
1005
|
+
const cookies = await loadCookiesFromFile(this.cookiesFilePath);
|
|
1006
|
+
const bookmarks = await getCurrentProfileBookmarks(this.bookmarksFilePath);
|
|
1007
|
+
|
|
1008
|
+
const body = {
|
|
1009
|
+
cookies,
|
|
1010
|
+
bookmarks,
|
|
1011
|
+
isCookiesEncrypted: true,
|
|
1012
|
+
isStorageGateway: true,
|
|
1013
|
+
};
|
|
1014
|
+
|
|
1015
|
+
const updateResult = await requests.post(`${API_URL}/browser/features/profile/${this.profile_id}/update_after_close`, {
|
|
1016
|
+
headers: {
|
|
1017
|
+
Authorization: `Bearer ${this.access_token}`,
|
|
1018
|
+
'User-Agent': 'gologin-api',
|
|
1019
|
+
},
|
|
1020
|
+
json: body,
|
|
1021
|
+
maxAttempts: 3,
|
|
1022
|
+
retryDelay: 2000,
|
|
1023
|
+
timeout: 20 * 1000,
|
|
1024
|
+
}).catch((e) => {
|
|
1025
|
+
console.log(e);
|
|
1026
|
+
|
|
1027
|
+
return e;
|
|
1028
|
+
});
|
|
1029
|
+
|
|
1030
|
+
return updateResult.body;
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1003
1033
|
async stopBrowser() {
|
|
1004
1034
|
if (!this.port) {
|
|
1005
1035
|
throw new Error('Empty GoLogin port');
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
{"dsn":"https://b93e53b7421f415d4a4691101a732b4d@sentry-orbita.amzn.pro/1","event_id":"af276dd3-14b9-4b32-df19-69cb16a9a85e"}
|
|
2
|
-
{"type":"event","length":32359}
|
|
3
|
-
{"event_id":"af276dd3-14b9-4b32-df19-69cb16a9a85e","timestamp":"2024-12-03T13:06:45.671Z","platform":"native","level":"fatal","exception":{"values":[{"type":"SIGTRAP","value":"Trap","mechanism":{"type":"signalhandler","synthetic":true,"handled":false,"meta":{"signal":{"name":"SIGTRAP","number":5}}},"stacktrace":{"frames":[{"instruction_addr":"0x55c6fa1b72a0"},{"instruction_addr":"0x55c6fa1cfaa1"},{"instruction_addr":"0x7fbaf5cd7520"},{"instruction_addr":"0x55c6f3edbbfa"},{"instruction_addr":"0x55c6f3edb7b5"},{"instruction_addr":"0x55c6f3edb707"},{"instruction_addr":"0x55c6f3edbcee"}],"registers":{"r8":"0x0","r9":"0x0","r10":"0x0","r11":"0x246","r12":"0x89","r13":"0x89","r14":"0x69c044a3900","r15":"0x69c02d175c0","rdi":"0x55c7029bee60","rsi":"0x0","rbp":"0x7fff9c977a30","rbx":"0x88","rdx":"0x1","rax":"0x0","rcx":"0x0","rsp":"0x7fff9c977560","rip":"0x55c6fa1cfaa1"}}}]},"release":"129.1.2.61","environment":"production","sdk":{"name":"sentry.native","version":"0.6.1","packages":[{"name":"github:getsentry/sentry-native","version":"0.6.1"}],"integrations":["inproc"]},"tags":{},"extra":{},"contexts":{"os":{"build":"125-generic","name":"Linux","version":"5.15.0"}},"breadcrumbs":[],"debug_meta":{"images":[{"type":"elf","code_file":"/home/ivan/.gologin/browser/orbita-browser/chrome","image_addr":"0x55c6f10b4000","image_size":294182912,"code_id":"71d7cd938b93b9d8f5352e7de1431a84d977b9df","debug_id":"93cdd771-938b-d8b9-f535-2e7de1431a84"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/nss/libnssckbi.so","image_addr":"0x7fbadbfba000","image_size":589824,"code_id":"6d90edd33de0828081613f58547b1c7df391975e","debug_id":"d3ed906d-e03d-8082-8161-3f58547b1c7d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so","image_addr":"0x7fbadc04a000","image_size":835584,"code_id":"38498cc0b4e4d4e423cfe00eb9ff3a3645fa0034","debug_id":"c08c4938-e4b4-e4d4-23cf-e00eb9ff3a36"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6","image_addr":"0x7fbadc11a000","image_size":1363968,"code_id":"87d00c07f9d8a822a4251d4f053484e5c0e4ead8","debug_id":"070cd087-d8f9-22a8-a425-1d4f053484e5"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so","image_addr":"0x7fbadc27b000","image_size":368640,"code_id":"9d68b157ab2c47c745266b896e7df0aa90786301","debug_id":"57b1689d-2cab-c747-4526-6b896e7df0aa"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30","image_addr":"0x7fbadd0df000","image_size":2265088,"code_id":"e37fe1a879783838de78cbc8c80621fa685d58a2","debug_id":"a8e17fe3-7879-3838-de78-cbc8c80621fa"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libicudata.so.70.1","image_addr":"0x7fbadd30b000","image_size":29483008,"code_id":"b1c2496dd0543023c7a19c961bb7f3abc818f465","debug_id":"6d49c2b1-54d0-2330-c7a1-9c961bb7f3ab"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libicuuc.so.70.1","image_addr":"0x7fbadef29000","image_size":2068480,"code_id":"bef3ff1d70aadd68aab07d858a759360c8b919ae","debug_id":"1dfff3be-aa70-68dd-aab0-7d858a759360"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13","image_addr":"0x7fbadf124000","image_size":1970176,"code_id":"aebf8e42966c3ce475ff9d9d51a762831adcbb61","debug_id":"428ebfae-6c96-e43c-75ff-9d9d51a76283"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/librsvg-2.so.2.48.0","image_addr":"0x7fbadf306000","image_size":10911744,"code_id":"e29ac4267b59a7fa0226e2db1475d480a295b615","debug_id":"26c49ae2-597b-faa7-0226-e2db1475d480"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so","image_addr":"0x7fbadfd82000","image_size":20480,"code_id":"cc0bb6bc80c180edd1a2f7b5deff6e3dda24b16f","debug_id":"bcb60bcc-c180-ed80-d1a2-f7b5deff6e3d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2","image_addr":"0x7fbae9a7d000","image_size":24576,"code_id":"a976800e191c9353f1e93a5b436c126f2d672ffb","debug_id":"0e8076a9-1c19-5393-f1e9-3a5b436c126f"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libogg.so.0.8.5","image_addr":"0x7fbaeaa85000","image_size":45056,"code_id":"842412496daf280ca5491dfb6581df5a378b72f0","debug_id":"49122484-af6d-0c28-a549-1dfb6581df5a"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.9","image_addr":"0x7fbaeaa90000","image_size":184320,"code_id":"fc9c832676aac541183d1b4774746bec48b66051","debug_id":"26839cfc-aa76-41c5-183d-1b4774746bec"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libltdl.so.7.3.1","image_addr":"0x7fbaeaabd000","image_size":45056,"code_id":"be74205d7325609af44c23c4b469c222a7faaecf","debug_id":"5d2074be-2573-9a60-f44c-23c4b469c222"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libtdb.so.1.4.5","image_addr":"0x7fbaeaac8000","image_size":98304,"code_id":"add802f354e46a856c5729b2c917ff1d43ba1550","debug_id":"f302d8ad-e454-856a-6c57-29b2c917ff1d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.8","image_addr":"0x7fbaeaae0000","image_size":45056,"code_id":"02874bbb32f5adc492b1cb2f72038522bcd7e181","debug_id":"bb4b8702-f532-c4ad-92b1-cb2f72038522"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5","image_addr":"0x7fbaeaaeb000","image_size":77824,"code_id":"8b0e38fcd7ea22902e91958062f571883edba0ea","debug_id":"fc380e8b-ead7-9022-2e91-958062f57188"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so","image_addr":"0x7fbaeab02000","image_size":65536,"code_id":"28be9445dc37a4f123f206cda2ffc7dea558a315","debug_id":"4594be28-37dc-f1a4-23f2-06cda2ffc7de"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so","image_addr":"0x7fbaebb14000","image_size":274432,"code_id":"e7fa580fb91bb21aac9fc69229e0961dc743f2b1","debug_id":"0f58fae7-1bb9-1ab2-ac9f-c69229e0961d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so","image_addr":"0x7fbaebb57000","image_size":217088,"code_id":"28abe694dac468552cc1d23d6f643e7989de85e8","debug_id":"94e6ab28-c4da-5568-2cc1-d23d6f643e79"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0","image_addr":"0x7fbaebc41000","image_size":20480,"code_id":"70f2a36d79c623f42fd70fa7ffb06d8877c74f16","debug_id":"6da3f270-c679-f423-2fd7-0fa7ffb06d88"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libjpeg.so.8.2.2","image_addr":"0x7fbaebc46000","image_size":528384,"code_id":"c54abff9294357e28532a76a049a4cb2542fc15b","debug_id":"f9bf4ac5-4329-e257-8532-a76a049a4cb2"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libwayland-client.so.0.20.0","image_addr":"0x7fbaebcc7000","image_size":69632,"code_id":"a85980f4efa33fa5cadfbf257349fef99d499427","debug_id":"f48059a8-a3ef-a53f-cadf-bf257349fef9"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.20.0","image_addr":"0x7fbaebcd8000","image_size":20480,"code_id":"e13dfac5961e8fb58c54984fe8110a73c2f5ef99","debug_id":"c5fa3de1-1e96-b58f-8c54-984fe8110a73"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.20.0","image_addr":"0x7fbaebcdd000","image_size":40960,"code_id":"abcd1ab467757354ac36fd0938b82d47d7aebe1f","debug_id":"b41acdab-7567-5473-ac36-fd0938b82d47"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2","image_addr":"0x7fbaebce7000","image_size":49152,"code_id":"d936a5db46d8babb0f2cc490df36b6b18a16d8aa","debug_id":"dba536d9-d846-bbba-0f2c-c490df36b6b1"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.5000.6","image_addr":"0x7fbaebcf3000","image_size":110592,"code_id":"fc7f13d8298f5e10fb1acbaa5472ec8b6fbf2bd9","debug_id":"d8137ffc-8f29-105e-fb1a-cbaa5472ec8b"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0","image_addr":"0x7fbaebd0e000","image_size":1265664,"code_id":"5ea53a2b100e4b044eee19d5222881a724abf046","debug_id":"2b3aa55e-0e10-044b-4eee-19d5222881a7"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.4200.8","image_addr":"0x7fbaebe43000","image_size":196608,"code_id":"c3b559c2e575c9a50701b4543c33582222307684","debug_id":"c259b5c3-75e5-a5c9-0701-b4543c335822"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0","image_addr":"0x7fbaebe73000","image_size":49152,"code_id":"71b5bd37d77ea1862d2ed00e9f6ead482f307db8","debug_id":"37bdb571-7ed7-86a1-2d2e-d00e9f6ead48"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.5000.6","image_addr":"0x7fbaebe7f000","image_size":73728,"code_id":"65987e60b791e0eb6231575b8d5cfd33a6379b22","debug_id":"607e9865-91b7-ebe0-6231-575b8d5cfd33"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.29","image_addr":"0x7fbaebe91000","image_size":1073152,"code_id":"01a689222dabac61850278009053b91b15d24959","debug_id":"2289a601-ab2d-61ac-8502-78009053b91b"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.29","image_addr":"0x7fbaebf98000","image_size":8536064,"code_id":"90b2d0ad0e5bb5d7d9acd575efe769320ee34f75","debug_id":"add0b290-5b0e-d7b5-d9ac-d575efe76932"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9","image_addr":"0x7fbaec7c5000","image_size":28672,"code_id":"67ac11842ec8e8beb3c0760f7ee49b5cf113546d","debug_id":"8411ac67-c82e-bee8-b3c0-760f7ee49b5c"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/gtk-3.0/modules/libcanberra-gtk3-module.so","image_addr":"0x7fbaec7cc000","image_size":36864,"code_id":"0fc1057142c32f6adcf7c096ad0c0cd4f8f82840","debug_id":"7105c10f-c342-6a2f-dcf7-c096ad0c0cd4"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libmd.so.0.0.5","image_addr":"0x7fbaf4603000","image_size":53248,"code_id":"cd2d2f71b3967ebde30e2aa43b8eb63339020c06","debug_id":"712f2dcd-96b3-bd7e-e30e-2aa43b8eb633"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libresolv.so.2","image_addr":"0x7fbaf4612000","image_size":73728,"code_id":"95ebf3f0e57d22d884105b9316288167790a36fb","debug_id":"f0f3eb95-7de5-d822-8410-5b9316288167"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libkeyutils.so.1.9","image_addr":"0x7fbaf4626000","image_size":28672,"code_id":"ff27227afa5eeddccab180dd29bd7fcff94aea7c","debug_id":"7a2227ff-5efa-dced-cab1-80dd29bd7fcf"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgpg-error.so.0.32.1","image_addr":"0x7fbaf462d000","image_size":155648,"code_id":"3fbec71c67bee60d8aef00697ee187079b0fb307","debug_id":"1cc7be3f-be67-0de6-8aef-00697ee18707"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9","image_addr":"0x7fbaf4653000","image_size":143360,"code_id":"43a72967cf84155914c8b3e915926733d1e57c11","debug_id":"6729a743-84cf-5915-14c8-b3e915926733"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25","image_addr":"0x7fbaf4676000","image_size":110592,"code_id":"b8a924f277180f8743a0c6463a379b1a4ad1aae5","debug_id":"f224a9b8-1877-870f-43a0-c6463a379b1a"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcrypto.so.3","image_addr":"0x7fbaf4693000","image_size":4460544,"code_id":"55c2d087f6f4d9d01ae137a278cb4b440f75c237","debug_id":"87d0c255-f4f6-d0d9-1ae1-37a278cb4b44"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0","image_addr":"0x7fbaf4ad7000","image_size":36864,"code_id":"2ad45e51f4ac4fc8b5f4ef938a18ca8e0a05e4af","debug_id":"515ed42a-acf4-c84f-b5f4-ef938a18ca8e"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1","image_addr":"0x7fbaf4ae0000","image_size":159744,"code_id":"5ffbc76fc948f6b88d766a7210c2e6a329a6c278","debug_id":"6fc7fb5f-48c9-b8f6-8d76-6a7210c2e6a3"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libdatrie.so.1.4.0","image_addr":"0x7fbaf4b07000","image_size":36864,"code_id":"128b6874a47f2b783d9e9060d3caaee4110bfd3d","debug_id":"74688b12-7fa4-782b-3d9e-9060d3caaee4"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libbsd.so.0.11.5","image_addr":"0x7fbaf4b10000","image_size":94208,"code_id":"9a6c72469251e2feb63e175ef5cb944ce6e00df3","debug_id":"46726c9a-5192-fee2-b63e-175ef5cb944c"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4","image_addr":"0x7fbaf4b2a000","image_size":618496,"code_id":"184a841c55fb7fe5e3873fcda8368c71016cd54c","debug_id":"1c844a18-fb55-e57f-e387-3fcda8368c71"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0","image_addr":"0x7fbaf4bc1000","image_size":225280,"code_id":"ecc1dfaec3a7241b41b76c3590fa135fb3c8ddfa","debug_id":"aedfc1ec-a7c3-1b24-41b7-6c3590fa135f"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1","image_addr":"0x7fbaf4bf8000","image_size":532480,"code_id":"f110719303ddbea25a5e89ff730fec520eed67b0","debug_id":"937110f1-dd03-a2be-5a5e-89ff730fec52"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libhogweed.so.6.4","image_addr":"0x7fbaf4c7a000","image_size":294912,"code_id":"3cc4a3474de72db89e9dcc93bfb95fe377f48c37","debug_id":"47a3c43c-e74d-b82d-9e9d-cc93bfb95fe3"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libtasn1.so.6.6.2","image_addr":"0x7fbaf4cc2000","image_size":98304,"code_id":"2fde6ecb43c586fe4077118f771077aa1298e7ea","debug_id":"cb6ede2f-c543-fe86-4077-118f771077aa"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libunistring.so.2.2.0","image_addr":"0x7fbaf4cdc000","image_size":1744896,"code_id":"ca5149da8d5a298b8f286ffca3d6e2402ec0fe01","debug_id":"da4951ca-5a8d-8b29-8f28-6ffca3d6e240"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0","image_addr":"0x7fbaf4e86000","image_size":1290240,"code_id":"a0ffe1d002de5812dc718186172efb78604ddf2c","debug_id":"d0e1ffa0-de02-1258-dc71-8186172efb78"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1","image_addr":"0x7fbaf4fc1000","image_size":57344,"code_id":"f58f4ed7c296c30c240753420a451da43518cc04","debug_id":"d74e8ff5-96c2-0cc3-2407-53420a451da4"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcom_err.so.2.1","image_addr":"0x7fbaf4fcf000","image_size":24576,"code_id":"034d7bc7ded23dc6d02c05aad4c0f7b203881721","debug_id":"c77b4d03-d2de-c63d-d02c-05aad4c0f7b2"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1","image_addr":"0x7fbaf4fd5000","image_size":188416,"code_id":"93691953307d918936c1eda0c5f5cf73f72af0b0","debug_id":"53196993-7d30-8991-36c1-eda0c5f5cf73"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3","image_addr":"0x7fbaf5004000","image_size":831488,"code_id":"1e24e996e3708e3bb3cb2cac71451fc185ba35e9","debug_id":"96e9241e-70e3-3b8e-b3cb-2cac71451fc1"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgcrypt.so.20.3.4","image_addr":"0x7fbaf50d1000","image_size":1298432,"code_id":"60a5e524de0ed8323edf33e9eb9127a9eee02359","debug_id":"24e5a560-0ede-32d8-3edf-33e9eb9127a9"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcap.so.2.44","image_addr":"0x7fbaf520f000","image_size":45056,"code_id":"b4bf900abf14aabe12d90988ceb30888acb2bcb0","debug_id":"0a90bfb4-14bf-beaa-12d9-0988ceb30888"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3","image_addr":"0x7fbaf521a000","image_size":131072,"code_id":"a85971851cd059f1af80d553c8e7170d42ec59a1","debug_id":"857159a8-d01c-f159-af80-d553c8e7170d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5","image_addr":"0x7fbaf523a000","image_size":176128,"code_id":"b85da6c48eb60a646615392559483b93617ef265","debug_id":"c4a65db8-b68e-640a-6615-392559483b93"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9","image_addr":"0x7fbaf5265000","image_size":57344,"code_id":"4b1f390dd6e24d49684db8b2443d082379e8e977","debug_id":"0d391f4b-e2d6-494d-684d-b8b2443d0823"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8","image_addr":"0x7fbaf5275000","image_size":847872,"code_id":"5d9d0d946a3154a748e87e17af9d14764519237b","debug_id":"940d9d5d-316a-a754-48e8-7e17af9d1476"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/liblber-2.5.so.0.1.13","image_addr":"0x7fbaf5344000","image_size":69632,"code_id":"eb842ddeae4869aed7679cb518a427a13c397fa9","debug_id":"de2d84eb-48ae-ae69-d767-9cb518a427a1"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libldap-2.5.so.0.1.13","image_addr":"0x7fbaf5355000","image_size":380928,"code_id":"60e3f466b3064e2ca56d514bc770759d8ef1c1d6","debug_id":"66f4e360-06b3-2c4e-a56d-514bc770759d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libnettle.so.8.4","image_addr":"0x7fbaf53b4000","image_size":286720,"code_id":"3d9c6bf106ef53d625b7b1c8bb1300e84598a74a","debug_id":"f16b9c3d-ef06-d653-25b7-b1c8bb1300e8"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpsl.so.5.3.2","image_addr":"0x7fbaf53fa000","image_size":81920,"code_id":"2b1afc1a3bc8bdb016e432c50db058632e7895b9","debug_id":"1afc1a2b-c83b-b0bd-16e4-32c50db05863"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libssh.so.4.8.7","image_addr":"0x7fbaf540e000","image_size":446464,"code_id":"b7fd78c4b3609dd386755b09bba2fb6b096d906b","debug_id":"c478fdb7-60b3-d39d-8675-5b09bba2fb6b"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/librtmp.so.1","image_addr":"0x7fbaf547b000","image_size":126976,"code_id":"9517ef375cd71ea3da824b4118f1599735093d66","debug_id":"37ef1795-d75c-a31e-da82-4b4118f15997"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libidn2.so.0.3.7","image_addr":"0x7fbaf549c000","image_size":135168,"code_id":"45b73e0e1c46a76be22f572ee98c60af5768bf8f","debug_id":"0e3eb745-461c-6ba7-e22f-572ee98c60af"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libnghttp2.so.14.20.1","image_addr":"0x7fbaf54bd000","image_size":172032,"code_id":"b02e3f0f2201e893e2dc948840c6e380484c9623","debug_id":"0f3f2eb0-0122-93e8-e2dc-948840c6e380"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0","image_addr":"0x7fbaf54e7000","image_size":61440,"code_id":"cb521131fd3b0f2ee6056cbc2014b3b8ef0d5c0e","debug_id":"311152cb-3bfd-2e0f-e605-6cbc2014b3b8"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0","image_addr":"0x7fbaf54f6000","image_size":20480,"code_id":"edb24ef4079aa423edcc50a3bb0dfb912fe8a57a","debug_id":"f44eb2ed-9a07-23a4-edcc-50a3bb0dfb91"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0","image_addr":"0x7fbaf54fb000","image_size":241664,"code_id":"d58bf7c11ac793d528926238d831792b5ef792cf","debug_id":"c1f78bd5-c71a-d593-2892-6238d831792b"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.1","image_addr":"0x7fbaf5538000","image_size":819200,"code_id":"bc6c65a19e6f75fea5e74a7fd6c0b91182e1a8b0","debug_id":"a1656cbc-6f9e-fe75-a5e7-4a7fd6c0b911"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0","image_addr":"0x7fbaf5600000","image_size":303104,"code_id":"0bb435fdd5ec37178e14ea03bb36f779a4b72a94","debug_id":"fd35b40b-ecd5-1737-8e14-ea03bb36f779"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0","image_addr":"0x7fbaf564a000","image_size":700416,"code_id":"5e936cdac032b6048d9d1a8c0bb0e4a10c86d48c","debug_id":"da6c935e-32c0-04b6-8d9d-1a8c0bb0e4a1"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0","image_addr":"0x7fbaf56f5000","image_size":847872,"code_id":"3b9c495c079286b8d1f55d0937a0a771593eb7e6","debug_id":"5c499c3b-9207-b886-d1f5-5d0937a0a771"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libthai.so.0.3.1","image_addr":"0x7fbaf57c4000","image_size":45056,"code_id":"afa54530349e68380815d606d15dbfda8952799f","debug_id":"3045a5af-9e34-3868-0815-d606d15dbfda"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0","image_addr":"0x7fbaf57cf000","image_size":114688,"code_id":"6e075a666e1da8ffdb948d734e75d82b1b6dc0fb","debug_id":"665a076e-1d6e-ffa8-db94-8d734e75d82b"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0","image_addr":"0x7fbaf57ed000","image_size":77824,"code_id":"7af27bf3e608d5c06645ad4086788afe8a8447e7","debug_id":"f37bf27a-08e6-c0d5-6645-ad4086788afe"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libwayland-server.so.0.20.0","image_addr":"0x7fbaf5800000","image_size":90112,"code_id":"75c4598a62c3c6e94868467866488cdfba049e7d","debug_id":"8a59c475-c362-e9c6-4868-467866488cdf"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0","image_addr":"0x7fbaf5816000","image_size":53248,"code_id":"7ccbfa4c24e93c42fa50dd2e42fa277630f9650c","debug_id":"4cfacb7c-e924-423c-fa50-dd2e42fa2776"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXi.so.6.1.0","image_addr":"0x7fbaf5823000","image_size":81920,"code_id":"8ff5a3ac871a90fd9d0a7917c61f748a41c6b5ee","debug_id":"aca3f58f-1a87-fd90-9d0a-7917c61f748a"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0","image_addr":"0x7fbaf5837000","image_size":32768,"code_id":"6b60f99504aa1d3999ea02a14366d1a39d6c5dcf","debug_id":"95f9606b-aa04-391d-99ea-02a14366d1a3"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXau.so.6.0.0","image_addr":"0x7fbaf5841000","image_size":24576,"code_id":"7089b383cacbfc1760634a3be19a923e51fe3315","debug_id":"83b38970-cbca-17fc-6063-4a3be19a923e"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libselinux.so.1","image_addr":"0x7fbaf5847000","image_size":172032,"code_id":"6fa53202ce676297de24873c886443b2759bfd8a","debug_id":"0232a56f-67ce-9762-de24-873c886443b2"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libmount.so.1.1.0","image_addr":"0x7fbaf5873000","image_size":278528,"code_id":"a339abbcd0eb8dadcbd09c372ffac2f0eb31eeaa","debug_id":"bcab39a3-ebd0-ad8d-cbd0-9c372ffac2f0"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.7200.4","image_addr":"0x7fbaf58b7000","image_size":28672,"code_id":"65b0a48791b8a1f047c2a6768714a431e1cde4f8","debug_id":"87a4b065-b891-f0a1-47c2-a6768714a431"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libz.so.1.2.11","image_addr":"0x7fbaf58be000","image_size":114688,"code_id":"30840b79ac329ecbf1dec0bb60180eed256d319f","debug_id":"790b8430-32ac-cb9e-f1de-c0bb60180eed"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgnutls.so.30.31.0","image_addr":"0x7fbaf58da000","image_size":2002944,"code_id":"97b8f99f392f1fd37b969a7164bcea884e23649b","debug_id":"9ff9b897-2f39-d31f-7b96-9a7164bcea88"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9","image_addr":"0x7fbaf5ac7000","image_size":81920,"code_id":"25001abccdddbfcfbd0a234fd44ef948f710cdcf","debug_id":"bc1a0025-ddcd-cfbf-bd0a-234fd44ef948"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.4","image_addr":"0x7fbaf5adb000","image_size":57344,"code_id":"73946ff5f835e1071e1773d0c0a572d3f671d11e","debug_id":"f56f9473-35f8-07e1-1e17-73d0c0a572d3"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2","image_addr":"0x7fbaf5ae9000","image_size":344064,"code_id":"e137e268414a0f51fd39bf59189043de85df5227","debug_id":"68e237e1-4a41-510f-fd39-bf59189043de"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libsystemd.so.0.32.0","image_addr":"0x7fbaf5b3d000","image_size":811008,"code_id":"e17e357f3a8e8198b1de01bd084ca319c72d231b","debug_id":"7f357ee1-8e3a-9881-b1de-01bd084ca319"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libplds4.so","image_addr":"0x7fbaf5c04000","image_size":20480,"code_id":"09454a834ff4ff9d76b522335aa3671994d878e3","debug_id":"834a4509-f44f-9dff-76b5-22335aa36719"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libplc4.so","image_addr":"0x7fbaf5c0b000","image_size":28672,"code_id":"55d3e83f384e8a6a68ce9c2414e2ea50fdae1f45","debug_id":"3fe8d355-4e38-6a8a-68ce-9c2414e2ea50"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libffi.so.8.1.0","image_addr":"0x7fbaf5c12000","image_size":53248,"code_id":"59c2a6b204f74f358ca7711d2dfd349d88711f6a","debug_id":"b2a6c259-f704-354f-8ca7-711d2dfd349d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpcre.so.3.13.3","image_addr":"0x7fbaf5c1f000","image_size":483328,"code_id":"3982f316c887e3ad9598015fa5bae8557320476a","debug_id":"16f38239-87c8-ade3-9598-015fa5bae855"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libc.so.6","image_addr":"0x7fbaf5c95000","image_size":2211840,"code_id":"490fef8403240c91833978d494d39e537409b92e","debug_id":"84ef0f49-2403-910c-8339-78d494d39e53"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgcc_s.so.1","image_addr":"0x7fbaf5ebe000","image_size":131072,"code_id":"e3a44e0da9c6e835d293ed8fd2882b4c4a87130c","debug_id":"0d4ea4e3-c6a9-35e8-d293-ed8fd2882b4c"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.7.0","image_addr":"0x7fbaf5ede000","image_size":659456,"code_id":"7fde2cdf48a3e4218cd5d0f13dbf1cbd9a435ce1","debug_id":"df2cde7f-a348-21e4-8cd5-d0f13dbf1cbd"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libasound.so.2.0.0","image_addr":"0x7fbaf5f82000","image_size":1060864,"code_id":"d1986cd985564afaa9aa64c753423b01dd5b228e","debug_id":"d96c98d1-5685-fa4a-a9aa-64c753423b01"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libudev.so.1.7.2","image_addr":"0x7fbaf6085000","image_size":172032,"code_id":"a09630833014650812000b6504d3773e88672b8f","debug_id":"833096a0-1430-0865-1200-0b6504d3773e"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0","image_addr":"0x7fbaf60af000","image_size":1208320,"code_id":"60a39c3684e41370bd0a59ed1ecbdccf47e30069","debug_id":"369ca360-e484-7013-bd0a-59ed1ecbdccf"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.5000.6","image_addr":"0x7fbaf61d7000","image_size":421888,"code_id":"42c8896c53d9d22dc73ba7a78b326d61f34e4442","debug_id":"6c89c842-d953-2dd2-c73b-a7a78b326d61"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0","image_addr":"0x7fbaf623e000","image_size":69632,"code_id":"4303e8348c972a416358c5e0c0537352974bb552","debug_id":"34e80343-978c-412a-6358-c5e0c0537352"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0","image_addr":"0x7fbaf624f000","image_size":53248,"code_id":"069f930a2b41f3908a1a92b1a51c38bd13a559e2","debug_id":"0a939f06-412b-90f3-8a1a-92b1a51c38bd"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0","image_addr":"0x7fbaf625e000","image_size":32768,"code_id":"a9c550a40b8154a3b4b5e2ac182bb50c013c3f18","debug_id":"a450c5a9-810b-a354-b4b5-e2ac182bb50c"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXext.so.6.4.0","image_addr":"0x7fbaf6266000","image_size":86016,"code_id":"9fb1880e02dfa11a8c39cd1a170109de08302059","debug_id":"0e88b19f-df02-1aa1-8c39-cd1a170109de"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0","image_addr":"0x7fbaf627b000","image_size":20480,"code_id":"8358b7625700dc247fa21fb4304cba877a28bb04","debug_id":"62b75883-0057-24dc-7fa2-1fb4304cba87"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0","image_addr":"0x7fbaf6280000","image_size":20480,"code_id":"2c84db5342304ba1a76db7dd9b7a3bfaa8a716ce","debug_id":"53db842c-3042-a14b-a76d-b7dd9b7a3bfa"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libX11.so.6.4.0","image_addr":"0x7fbaf6285000","image_size":1310720,"code_id":"37a5d7bbb78e3a99ea8376a7c80ea0c62fe06494","debug_id":"bbd7a537-8eb7-993a-ea83-76a7c80ea0c6"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libm.so.6","image_addr":"0x7fbaf63c5000","image_size":946176,"code_id":"a508ec5d8bf12fb7fd08204e0f87518e5cd0b102","debug_id":"5dec08a5-f18b-b72f-fd08-204e0f87518e"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1","image_addr":"0x7fbaf64ae000","image_size":237568,"code_id":"2843c68233d5ba81da3d6bc31422e49472873dba","debug_id":"82c64328-d533-81ba-da3d-6bc31422e494"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0","image_addr":"0x7fbaf64e8000","image_size":290816,"code_id":"a4b17d939092101dc8f6b2a1d70eaf1fddb2dd51","debug_id":"937db1a4-9290-1d10-c8f6-b2a1d70eaf1f"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0","image_addr":"0x7fbaf652f000","image_size":172032,"code_id":"1bef862a339557aa16c34c7a4b27f8f3aea90517","debug_id":"2a86ef1b-9533-aa57-16c3-4c7a4b27f8f3"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libexpat.so.1.8.7","image_addr":"0x7fbaf6559000","image_size":200704,"code_id":"e16bd88eff9c79f864766208d4e3de9e8dac1e2f","debug_id":"8ed86be1-9cff-f879-6476-6208d4e3de9e"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0","image_addr":"0x7fbaf658a000","image_size":90112,"code_id":"9c7cb19295d20e515902cb0710326a0b8d6394c8","debug_id":"92b17c9c-d295-510e-5902-cb0710326a0b"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.7200.4","image_addr":"0x7fbaf65a0000","image_size":1933312,"code_id":"c5b3325844fb35db0aad817c1086261d1d1f608c","debug_id":"5832b3c5-fb44-db35-0aad-817c1086261d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libcups.so.2","image_addr":"0x7fbaf677c000","image_size":647168,"code_id":"dab4ef56d820af298d5866978365375c5b3510e3","debug_id":"56efb4da-20d8-29af-8d58-66978365375c"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0","image_addr":"0x7fbaf681a000","image_size":229376,"code_id":"7e8009077fbdcd7bf094c51bf78742b96f216d73","debug_id":"0709807e-bd7f-7bcd-f094-c51bf78742b9"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23609.1","image_addr":"0x7fbaf6852000","image_size":172032,"code_id":"b93088667fbd06f6b72d273403d352e7c0554698","debug_id":"668830b9-bd7f-f606-b72d-273403d352e7"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13","image_addr":"0x7fbaf687c000","image_size":319488,"code_id":"63e8b99215502138cb63afd6d65851a5e837ed49","debug_id":"92b9e863-5015-3821-cb63-afd6d65851a5"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libnspr4.so","image_addr":"0x7fbaf68ca000","image_size":249856,"code_id":"4a4ef67c84ac0f4bcd64ae300dac7b336a77ad68","debug_id":"7cf64e4a-ac84-4b0f-cd64-ae300dac7b33"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libsmime3.so","image_addr":"0x7fbaf690a000","image_size":172032,"code_id":"d9d53643b9fea018bd9cd9f5882a569e1d33fe65","debug_id":"4336d5d9-feb9-18a0-bd9c-d9f5882a569e"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libnssutil3.so","image_addr":"0x7fbaf6936000","image_size":208896,"code_id":"27efbf6648d747aeebc9aede9267e701a3375e43","debug_id":"66bfef27-d748-ae47-ebc9-aede9267e701"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libnss3.so","image_addr":"0x7fbaf6969000","image_size":1245184,"code_id":"df61a27bafb30bb304e764df9ee5abee8f1670d2","debug_id":"7ba261df-b3af-b30b-04e7-64df9ee5abee"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.7200.4","image_addr":"0x7fbaf6a9a000","image_size":393216,"code_id":"e4b295ec2fc849132dafd136750dacd65ce4b85b","debug_id":"ec95b2e4-c82f-1349-2daf-d136750dacd6"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7200.4","image_addr":"0x7fbaf6afa000","image_size":1282048,"code_id":"e845b8fd2f396872c036976626389ffc4f50c9c5","debug_id":"fdb845e8-392f-7268-c036-976626389ffc"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libpthread.so.0","image_addr":"0x7fbaf6c34000","image_size":20480,"code_id":"81f46d553e2f7c999e43c3eede73a822bc8d5d93","debug_id":"556df481-2f3e-997c-9e43-c3eede73a822"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libdl.so.2","image_addr":"0x7fbaf6c39000","image_size":20480,"code_id":"6f6fe1a24b7b981e11c9a3373b806d3496d4d9d4","debug_id":"a2e16f6f-7b4b-1e98-11c9-a3373b806d34"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0","image_addr":"0x7fbaf6c41000","image_size":20480,"code_id":"9823bebfa26a681265db4aeb09abf44deec38401","debug_id":"bfbe2398-6aa2-1268-65db-4aeb09abf44d"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2","image_addr":"0x7fbaf6c54000","image_size":180224,"code_id":"4186944c50f8a32b47d74931e3f512b811813b64","debug_id":"4c948641-f850-2ba3-47d7-4931e3f512b8"},{"type":"elf","code_file":"/usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2","image_addr":"0x7fbaf6c80000","image_size":65536,"debug_id":"00000000-0000-0000-0000-000000000000"},{"type":"elf","code_file":"linux-gate.so","image_addr":"0x7fff9c98e000","image_size":8192,"code_id":"b8ecb4b43ff5c8079a027d3f829213beac27e545","debug_id":"b4b4ecb8-f53f-07c8-9a02-7d3f829213be"}]}}
|
|
4
|
-
{"type":"session","length":202}
|
|
5
|
-
{"init":true,"sid":"5a3ae3b5-bafa-40c6-30b2-35a48d81483f","status":"crashed","errors":1,"started":"2024-12-03T13:06:44.108Z","duration":1.594,"attrs":{"release":"129.1.2.61","environment":"production"}}
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2024-12-03T13:06:45.672Z
|
package/gologin/.eslintrc.json
DELETED
|
@@ -1,290 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"env": {
|
|
3
|
-
"browser": true,
|
|
4
|
-
"es2021": true,
|
|
5
|
-
"node": true
|
|
6
|
-
},
|
|
7
|
-
"extends": "eslint:recommended",
|
|
8
|
-
"overrides": [
|
|
9
|
-
],
|
|
10
|
-
"parserOptions": {
|
|
11
|
-
"ecmaVersion": "latest",
|
|
12
|
-
"sourceType": "module"
|
|
13
|
-
},
|
|
14
|
-
"plugins": [
|
|
15
|
-
"simple-import-sort"
|
|
16
|
-
],
|
|
17
|
-
"rules": {
|
|
18
|
-
"padding-line-between-statements": [
|
|
19
|
-
"warn",
|
|
20
|
-
{
|
|
21
|
-
"blankLine": "always",
|
|
22
|
-
"prev": [
|
|
23
|
-
"if",
|
|
24
|
-
"switch",
|
|
25
|
-
"while",
|
|
26
|
-
"function",
|
|
27
|
-
"multiline-const",
|
|
28
|
-
"try"
|
|
29
|
-
],
|
|
30
|
-
"next": "*"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"blankLine": "always",
|
|
34
|
-
"prev": "*",
|
|
35
|
-
"next": [
|
|
36
|
-
"return"
|
|
37
|
-
]
|
|
38
|
-
}
|
|
39
|
-
],
|
|
40
|
-
"indent": [
|
|
41
|
-
"warn",
|
|
42
|
-
2,
|
|
43
|
-
{
|
|
44
|
-
"SwitchCase": 1,
|
|
45
|
-
"ignoredNodes": [
|
|
46
|
-
"ClassBody.body > PropertyDefinition[decorators.length > 0] > .key"
|
|
47
|
-
]
|
|
48
|
-
}
|
|
49
|
-
],
|
|
50
|
-
"linebreak-style": 0,
|
|
51
|
-
"quotes": [
|
|
52
|
-
"warn",
|
|
53
|
-
"single"
|
|
54
|
-
],
|
|
55
|
-
"semi": [
|
|
56
|
-
"warn",
|
|
57
|
-
"always"
|
|
58
|
-
],
|
|
59
|
-
"array-callback-return": [
|
|
60
|
-
"warn"
|
|
61
|
-
],
|
|
62
|
-
"no-await-in-loop": [
|
|
63
|
-
"off"
|
|
64
|
-
],
|
|
65
|
-
"no-duplicate-imports": [
|
|
66
|
-
"warn"
|
|
67
|
-
],
|
|
68
|
-
"arrow-body-style": [
|
|
69
|
-
"warn",
|
|
70
|
-
"as-needed"
|
|
71
|
-
],
|
|
72
|
-
"curly": [
|
|
73
|
-
"warn",
|
|
74
|
-
"all"
|
|
75
|
-
],
|
|
76
|
-
"default-case": [
|
|
77
|
-
"warn"
|
|
78
|
-
],
|
|
79
|
-
"default-case-last": [
|
|
80
|
-
"warn"
|
|
81
|
-
],
|
|
82
|
-
"dot-notation": [
|
|
83
|
-
"warn"
|
|
84
|
-
],
|
|
85
|
-
"eqeqeq": [
|
|
86
|
-
"warn",
|
|
87
|
-
"always"
|
|
88
|
-
],
|
|
89
|
-
"id-length": [
|
|
90
|
-
"warn",
|
|
91
|
-
{
|
|
92
|
-
"min": 1,
|
|
93
|
-
"max": 40,
|
|
94
|
-
"properties": "never"
|
|
95
|
-
}
|
|
96
|
-
],
|
|
97
|
-
"max-depth": [
|
|
98
|
-
"warn",
|
|
99
|
-
{
|
|
100
|
-
"max": 4
|
|
101
|
-
}
|
|
102
|
-
],
|
|
103
|
-
"max-lines": [
|
|
104
|
-
"warn",
|
|
105
|
-
1500
|
|
106
|
-
],
|
|
107
|
-
"no-else-return": [
|
|
108
|
-
"warn",
|
|
109
|
-
{
|
|
110
|
-
"allowElseIf": true
|
|
111
|
-
}
|
|
112
|
-
],
|
|
113
|
-
"no-unused-vars": [
|
|
114
|
-
"warn",
|
|
115
|
-
{
|
|
116
|
-
"vars": "all",
|
|
117
|
-
"args": "after-used",
|
|
118
|
-
"ignoreRestSiblings": false,
|
|
119
|
-
"varsIgnorePattern": "^_"
|
|
120
|
-
}
|
|
121
|
-
],
|
|
122
|
-
"keyword-spacing": [
|
|
123
|
-
"error",
|
|
124
|
-
{
|
|
125
|
-
"before": true,
|
|
126
|
-
"after": true
|
|
127
|
-
}
|
|
128
|
-
],
|
|
129
|
-
"no-empty-function": [
|
|
130
|
-
"warn",
|
|
131
|
-
{
|
|
132
|
-
"allow": [
|
|
133
|
-
"constructors"
|
|
134
|
-
]
|
|
135
|
-
}
|
|
136
|
-
],
|
|
137
|
-
"no-inline-comments": [
|
|
138
|
-
"warn"
|
|
139
|
-
],
|
|
140
|
-
"no-labels": [
|
|
141
|
-
"warn"
|
|
142
|
-
],
|
|
143
|
-
"no-lone-blocks": [
|
|
144
|
-
"warn"
|
|
145
|
-
],
|
|
146
|
-
"no-lonely-if": [
|
|
147
|
-
"warn"
|
|
148
|
-
],
|
|
149
|
-
"no-magic-numbers": [
|
|
150
|
-
"off",
|
|
151
|
-
{
|
|
152
|
-
"ignoreArrayIndexes": true,
|
|
153
|
-
"ignoreDefaultValues": true,
|
|
154
|
-
"ignore": [
|
|
155
|
-
1,
|
|
156
|
-
2,
|
|
157
|
-
3,
|
|
158
|
-
10,
|
|
159
|
-
1000,
|
|
160
|
-
-1,
|
|
161
|
-
0
|
|
162
|
-
]
|
|
163
|
-
}
|
|
164
|
-
],
|
|
165
|
-
"no-multi-assign": [
|
|
166
|
-
"warn"
|
|
167
|
-
],
|
|
168
|
-
"no-multi-str": [
|
|
169
|
-
"warn"
|
|
170
|
-
],
|
|
171
|
-
"no-nested-ternary": [
|
|
172
|
-
"warn"
|
|
173
|
-
],
|
|
174
|
-
"no-return-assign": [
|
|
175
|
-
"warn"
|
|
176
|
-
],
|
|
177
|
-
"no-return-await": [
|
|
178
|
-
"warn"
|
|
179
|
-
],
|
|
180
|
-
"no-sequences": [
|
|
181
|
-
"warn"
|
|
182
|
-
],
|
|
183
|
-
"no-shadow": [
|
|
184
|
-
"warn"
|
|
185
|
-
],
|
|
186
|
-
"no-undefined": [
|
|
187
|
-
"warn"
|
|
188
|
-
],
|
|
189
|
-
"no-underscore-dangle": [
|
|
190
|
-
"warn",
|
|
191
|
-
{
|
|
192
|
-
"allow": [
|
|
193
|
-
"_id"
|
|
194
|
-
]
|
|
195
|
-
}
|
|
196
|
-
],
|
|
197
|
-
"no-unneeded-ternary": [
|
|
198
|
-
"warn"
|
|
199
|
-
],
|
|
200
|
-
"no-unused-expressions": [
|
|
201
|
-
"warn",
|
|
202
|
-
{
|
|
203
|
-
"allowShortCircuit": true,
|
|
204
|
-
"allowTernary": true
|
|
205
|
-
}
|
|
206
|
-
],
|
|
207
|
-
"no-useless-return": [
|
|
208
|
-
"warn"
|
|
209
|
-
],
|
|
210
|
-
"object-shorthand": [
|
|
211
|
-
"warn",
|
|
212
|
-
"always"
|
|
213
|
-
],
|
|
214
|
-
"prefer-arrow-callback": [
|
|
215
|
-
"warn"
|
|
216
|
-
],
|
|
217
|
-
"prefer-const": [
|
|
218
|
-
"warn"
|
|
219
|
-
],
|
|
220
|
-
"prefer-destructuring": [
|
|
221
|
-
"warn"
|
|
222
|
-
],
|
|
223
|
-
"prefer-object-spread": [
|
|
224
|
-
"warn"
|
|
225
|
-
],
|
|
226
|
-
"prefer-spread": [
|
|
227
|
-
"warn"
|
|
228
|
-
],
|
|
229
|
-
"prefer-template": [
|
|
230
|
-
"off"
|
|
231
|
-
],
|
|
232
|
-
"spaced-comment": [
|
|
233
|
-
"warn"
|
|
234
|
-
],
|
|
235
|
-
"yoda": [
|
|
236
|
-
"warn"
|
|
237
|
-
],
|
|
238
|
-
"arrow-spacing": [
|
|
239
|
-
"warn"
|
|
240
|
-
],
|
|
241
|
-
"brace-style": [
|
|
242
|
-
"warn",
|
|
243
|
-
"1tbs",
|
|
244
|
-
{
|
|
245
|
-
"allowSingleLine": false
|
|
246
|
-
}
|
|
247
|
-
],
|
|
248
|
-
"comma-dangle": [
|
|
249
|
-
"warn",
|
|
250
|
-
"always-multiline"
|
|
251
|
-
],
|
|
252
|
-
"dot-location": [
|
|
253
|
-
"warn",
|
|
254
|
-
"property"
|
|
255
|
-
],
|
|
256
|
-
"eol-last": [
|
|
257
|
-
"warn"
|
|
258
|
-
],
|
|
259
|
-
"no-extra-parens": [
|
|
260
|
-
"off"
|
|
261
|
-
],
|
|
262
|
-
"no-multiple-empty-lines": [
|
|
263
|
-
"warn",
|
|
264
|
-
{
|
|
265
|
-
"max": 1
|
|
266
|
-
}
|
|
267
|
-
],
|
|
268
|
-
"no-trailing-spaces": [
|
|
269
|
-
"warn"
|
|
270
|
-
],
|
|
271
|
-
"no-whitespace-before-property": [
|
|
272
|
-
"warn"
|
|
273
|
-
],
|
|
274
|
-
"object-curly-spacing": [
|
|
275
|
-
"warn",
|
|
276
|
-
"always"
|
|
277
|
-
],
|
|
278
|
-
"space-in-parens": [
|
|
279
|
-
"warn"
|
|
280
|
-
],
|
|
281
|
-
"template-curly-spacing": [
|
|
282
|
-
"warn"
|
|
283
|
-
],
|
|
284
|
-
"max-len": [
|
|
285
|
-
"warn",
|
|
286
|
-
150
|
|
287
|
-
],
|
|
288
|
-
"simple-import-sort/imports": "warn"
|
|
289
|
-
}
|
|
290
|
-
}
|
package/gologin/README.md
DELETED
|
@@ -1,163 +0,0 @@
|
|
|
1
|
-
# class GoLogin - class for working with <a href="https://gologin.com" target="_blank">gologin.com</a> API
|
|
2
|
-
# Official Package
|
|
3
|
-
|
|
4
|
-
## Getting Started
|
|
5
|
-
|
|
6
|
-
GoLogin supports Linux, MacOS and Windows platforms.
|
|
7
|
-
|
|
8
|
-
### Installation
|
|
9
|
-
|
|
10
|
-
`npm i gologin`
|
|
11
|
-
|
|
12
|
-
for running example.js install puppeteer-core
|
|
13
|
-
|
|
14
|
-
`npm i puppeteer-core`
|
|
15
|
-
|
|
16
|
-
### Usage
|
|
17
|
-
|
|
18
|
-
Where is token? API token is <a href="https://app.gologin.com/#/personalArea/TokenApi" target="_blank">here</a>.
|
|
19
|
-
To have an access to the page below you need <a href="https://app.gologin.com/#/createUser" target="_blank">register</a> GoLogin account.
|
|
20
|
-
|
|
21
|
-

|
|
22
|
-
|
|
23
|
-
### Example
|
|
24
|
-
|
|
25
|
-
```js
|
|
26
|
-
import puppeteer from 'puppeteer-core';
|
|
27
|
-
|
|
28
|
-
import GoLogin from '../src/gologin.js';
|
|
29
|
-
|
|
30
|
-
const { connect } = puppeteer;
|
|
31
|
-
|
|
32
|
-
(async () => {
|
|
33
|
-
const GL = new GoLogin({
|
|
34
|
-
token: 'yU0token',
|
|
35
|
-
profile_id: 'yU0Pr0f1leiD',
|
|
36
|
-
});
|
|
37
|
-
|
|
38
|
-
const { status, wsUrl } = await GL.start().catch((e) => {
|
|
39
|
-
console.trace(e);
|
|
40
|
-
|
|
41
|
-
return { status: 'failure' };
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
if (status !== 'success') {
|
|
45
|
-
console.log('Invalid status');
|
|
46
|
-
|
|
47
|
-
return;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
const browser = await connect({
|
|
51
|
-
browserWSEndpoint: wsUrl.toString(),
|
|
52
|
-
ignoreHTTPSErrors: true,
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
const page = await browser.newPage();
|
|
56
|
-
await page.goto('https://myip.link/mini');
|
|
57
|
-
console.log(await page.content());
|
|
58
|
-
await browser.close();
|
|
59
|
-
await GL.stop();
|
|
60
|
-
})();
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
### Running example:
|
|
64
|
-
|
|
65
|
-
`DEBUG=gologin* node example.js`
|
|
66
|
-
|
|
67
|
-
###
|
|
68
|
-
### Methods
|
|
69
|
-
#### constructor
|
|
70
|
-
|
|
71
|
-
- `options` <[Object]> Options for profile
|
|
72
|
-
- `autoUpdateBrowser` <[boolean]> do not ask whether download new browser version (default false)
|
|
73
|
-
- `token` <[string]> your API <a href="https://gologin.com/#/personalArea/TokenApi" target="_blank">token</a>
|
|
74
|
-
- `profile_id` <[string]> profile ID
|
|
75
|
-
- `executablePath` <[string]> path to executable Orbita file. Orbita will be downloaded automatically if not specified.
|
|
76
|
-
- `remote_debugging_port` <[int]> port for remote debugging
|
|
77
|
-
- `vncPort` <[integer]> port of VNC server if you using it
|
|
78
|
-
- `tmpdir` <[string]> path to temporary directore for saving profiles
|
|
79
|
-
- `extra_params` arrayof <[string]> extra params for browser orbita (ex. extentions etc.)
|
|
80
|
-
- `uploadCookiesToServer` <[boolean]> upload cookies to server after profile stopping (default false)
|
|
81
|
-
- `writeCookesFromServer` <[boolean]> download cookies from server and write to profile cookies file (default true)
|
|
82
|
-
- `skipOrbitaHashChecking` <[boolean]> skip hash checking for Orbita after downloading process (default false)
|
|
83
|
-
|
|
84
|
-
```js
|
|
85
|
-
import GoLogin from '../src/gologin.js';
|
|
86
|
-
const GL = new GoLogin({
|
|
87
|
-
token: 'yU0token',
|
|
88
|
-
profile_id: 'yU0Pr0f1leiD',
|
|
89
|
-
});
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
#### start()
|
|
93
|
-
|
|
94
|
-
- returns: <[object]> { status, wsUrl }
|
|
95
|
-
|
|
96
|
-
start browser with profile id, returning WebSocket url for puppeteer
|
|
97
|
-
|
|
98
|
-
#### stop()
|
|
99
|
-
|
|
100
|
-
stop browser with profile id
|
|
101
|
-
|
|
102
|
-
### DEBUG
|
|
103
|
-
|
|
104
|
-
For debugging use `DEBUG=* node example.js` command
|
|
105
|
-
|
|
106
|
-
### Selenium
|
|
107
|
-
|
|
108
|
-
To use GoLogin with Selenium see `selenium/example.js`
|
|
109
|
-
|
|
110
|
-
## Full GoLogin API
|
|
111
|
-
**Swagger:** <a href="https://api.gologin.com/docs" target="_blank">link here</a>
|
|
112
|
-
|
|
113
|
-
**Postman:** <a href="https://documenter.getpostman.com/view/21126834/Uz5GnvaL" target="_blank">link here</a>
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
## For local profiles
|
|
117
|
-
|
|
118
|
-
#### startLocal()
|
|
119
|
-
|
|
120
|
-
- returns: string
|
|
121
|
-
|
|
122
|
-
start browser with profile id, return WebSocket url for puppeteer. Extracted profile folder should be in specified temp directory.
|
|
123
|
-
|
|
124
|
-
#### stopLocal()
|
|
125
|
-
|
|
126
|
-
stop current browser without removing archived profile
|
|
127
|
-
|
|
128
|
-
### example-local-profile.js
|
|
129
|
-
|
|
130
|
-
```js
|
|
131
|
-
import puppeteer from 'puppeteer-core';
|
|
132
|
-
|
|
133
|
-
import GoLogin from '../src/gologin.js';
|
|
134
|
-
|
|
135
|
-
const { connect } = puppeteer;
|
|
136
|
-
|
|
137
|
-
(async () => {
|
|
138
|
-
const GL = new GoLogin({
|
|
139
|
-
token: 'yU0token',
|
|
140
|
-
profile_id: 'yU0Pr0f1leiD',
|
|
141
|
-
executablePath: '/usr/bin/orbita-browser/chrome',
|
|
142
|
-
tmpdir: '/my/tmp/dir',
|
|
143
|
-
});
|
|
144
|
-
|
|
145
|
-
const wsUrl = await GL.startLocal();
|
|
146
|
-
const browser = await connect({
|
|
147
|
-
browserWSEndpoint: wsUrl.toString(),
|
|
148
|
-
ignoreHTTPSErrors: true,
|
|
149
|
-
});
|
|
150
|
-
|
|
151
|
-
const page = await browser.newPage();
|
|
152
|
-
await page.goto('https://myip.link');
|
|
153
|
-
console.log(await page.content());
|
|
154
|
-
await browser.close();
|
|
155
|
-
await GL.stopLocal({ posting: false });
|
|
156
|
-
})();
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
## Python support
|
|
160
|
-
|
|
161
|
-
<a href="https://github.com/pyppeteer/pyppeteer" target="_blank">pyppeteer</a> (recommend) and <a href="https://www.selenium.dev" target="_blank">Selenium</a> supported (see file gologin.py)
|
|
162
|
-
|
|
163
|
-
for Selenium may need download <a href="https://chromedriver.chromium.org/downloads" target="_blank">webdriver</a>
|