我正在试图编译一个可以通过javascript访问的信息列表,例如:
我知道用户可以更改这些信息中的任何一个,它的可靠性纯粹是与信任相关的,但我仍然感兴趣的是,可以从客户端挖掘哪些其他信息。
发布于 2011-11-18 09:34:32
别忘了
允许Cookies
的
下面是与数据挖掘演示的有用链接:
http://www.alanwood.net/demos/browserinfo.html
发布于 2016-05-07 20:21:59
以下是大部分信息:
var info={
timeOpened:new Date(),
timezone:(new Date()).getTimezoneOffset()/60,
pageon(){return window.location.pathname},
referrer(){return document.referrer},
previousSites(){return history.length},
browserName(){return navigator.appName},
browserEngine(){return navigator.product},
browserVersion1a(){return navigator.appVersion},
browserVersion1b(){return navigator.userAgent},
browserLanguage(){return navigator.language},
browserOnline(){return navigator.onLine},
browserPlatform(){return navigator.platform},
javaEnabled(){return navigator.javaEnabled()},
dataCookiesEnabled(){return navigator.cookieEnabled},
dataCookies1(){return document.cookie},
dataCookies2(){return decodeURIComponent(document.cookie.split(";"))},
dataStorage(){return localStorage},
sizeScreenW(){return screen.width},
sizeScreenH(){return screen.height},
sizeDocW(){return document.width},
sizeDocH(){return document.height},
sizeInW(){return innerWidth},
sizeInH(){return innerHeight},
sizeAvailW(){return screen.availWidth},
sizeAvailH(){return screen.availHeight},
scrColorDepth(){return screen.colorDepth},
scrPixelDepth(){return screen.pixelDepth},
latitude(){return position.coords.latitude},
longitude(){return position.coords.longitude},
accuracy(){return position.coords.accuracy},
altitude(){return position.coords.altitude},
altitudeAccuracy(){return position.coords.altitudeAccuracy},
heading(){return position.coords.heading},
speed(){return position.coords.speed},
timestamp(){return position.timestamp},
};发布于 2017-01-20 19:33:31
visitor.js是一个javascript库,它提供有关客户端的信息。
包括:
上一次visit
G 221
还有更多。
http://www.visitorjs.com/
游客可能非常方便,但并不是免费的。
https://stackoverflow.com/questions/8180296
复制相似问题