-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp121.html
More file actions
26 lines (23 loc) · 800 Bytes
/
p121.html
File metadata and controls
26 lines (23 loc) · 800 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="example"></div>
<script>
txt = "<p>"+"Browser CodeName: "+ navigator.appCodeName+"</p>"
txt += "<p>"+"Browser Name: "+ navigator.appName+"</p>"
txt += "<p>"+"Browser Version: "+ navigator.appVersion+"</p>"
txt += "<p>"+" Cookie Enable: "+ navigator.cookieEnabled+"</p>"
txt += "<p>"+"Platform: "+ navigator.platform+"</p>"
txt += "<p>"+"User agent header: "+ navigator.userAgent+"</p>"
txt += "<p>"+"User agent language: "+ navigator.systemLanguage +"</p>"
document.getElementById("example").innerHTML = txt
document.write("Java enabled: "+ navigator.javaEnabled());
document.write("<br>")
document.write("Data tained Enabled: "+ navigator.taintEnabled())
</script>
</body>
</html>