Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
L
lcc-shape
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
wangmingming
lcc-shape
Commits
f7b65a4e
Commit
f7b65a4e
authored
Sep 18, 2023
by
wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
收集更多信息
parent
711720ab
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
16 deletions
+23
-16
collect.js
env/templates/collect.js
+14
-8
src.js
src.js
+1
-1
src_out.js
src_out.js
+6
-6
sss.js
sss.js
+2
-1
No files found.
env/templates/collect.js
View file @
f7b65a4e
...
...
@@ -794,7 +794,6 @@ try {
}
delete
canvas
let
navigatorparams
=
{
appname
:
navigator
.
appName
,
appversion
:
navigator
.
appVersion
,
...
...
@@ -1087,13 +1086,16 @@ try {
"webkitRequestFullScreen"
].
map
(
e
=>
{
return
e
in
document
.
body
?
1
:
0
});
let
navigatorfuncResult
=
[
"vibrate"
,
"webdriver"
,
"credentials"
,
"storage"
,
"requestMediaKeySystemAccess"
,
"bluetooth"
].
map
(
e
=>
{
return
e
in
navigator
?
1
:
0
});
"vibrate"
,
"webdriver"
,
"credentials"
,
"storage"
,
"requestMediaKeySystemAccess"
,
"bluetooth"
].
map
(
e
=>
{
return
e
in
navigator
?
1
:
0
});
let
windowprops
=
Object
.
getOwnPropertyNames
(
window
);
let
lastIndex
=
windowprops
.
lastIndexOf
(
'webkitResolveLocalFileSystemURL'
);
windowprops
=
windowprops
.
slice
(
0
,
lastIndex
);
let
result
=
{
windowparams
:
windowparams
,
screenparams
:
screenparams
,
...
...
@@ -1110,6 +1112,10 @@ try {
useragentdata
:
userAgentData
,
webglimg
:
webglImg
,
matchmedias
:
matchmedias
,
consoleprops
:
Object
.
keys
(
Object
.
getOwnPropertyDescriptors
(
console
)).
sort
(),
webglprops
:
WebGLRenderingContext
?
Object
.
getOwnPropertyNames
(
WebGLRenderingContext
.
prototype
).
filter
(
e
=>
{
return
e
!=
'constructor'
}):[],
windowprops
:
windowprops
,
mathprops
:
Object
.
getOwnPropertyNames
(
Math
),
funcs
:
funcResult
,
funcs2
:
funcResult2
,
documentfunc
:
documentFuncResult
,
...
...
src.js
View file @
f7b65a4e
...
...
@@ -7116,7 +7116,7 @@ Array.prototype.join = function (s) {
"context",
"count",
"countReset",
//
"createTask",
"createTask",
"debug",
"dir",
"dirxml",
src_out.js
View file @
f7b65a4e
...
...
@@ -22,12 +22,12 @@ Date.now = function now() {
};
//
_getOwnPropertyNames = Object.getOwnPropertyNames;
//
Object.getOwnPropertyNames = function (a) {
//
let res = _getOwnPropertyNames(a);
//
con4('getOwnPropertyNames', a, res)
//
return res;
//
}
_getOwnPropertyNames
=
Object
.
getOwnPropertyNames
;
Object
.
getOwnPropertyNames
=
function
(
a
)
{
let
res
=
_getOwnPropertyNames
(
a
);
con4
(
'getOwnPropertyNames'
,
a
,
res
)
return
res
;
}
_join
=
Array
.
prototype
.
join
;
Array
.
prototype
.
join
=
function
(
s
)
{
let
res
=
_join
.
call
(
this
,
s
);
...
...
sss.js
View file @
f7b65a4e
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment