Skip to content

Commit

Permalink
Fix fingerprint generation
Browse files Browse the repository at this point in the history
  • Loading branch information
noahcoolboy committed Oct 25, 2023
1 parent cec4260 commit f4c096b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions lib/fingerprint.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,19 +221,19 @@ let baseEnhancedFingerprint = {
"webgl_version": "WebGL 1.0 (OpenGL ES 2.0 Chromium)",
"webgl_shading_language_version": "WebGL GLSL ES 1.0 (OpenGL ES GLSL ES 1.0 Chromium)",
"webgl_aliased_line_width_range": "[1, 1]",
"webgl_aliased_point_size_range": "[0.125, 8192]",
"webgl_aliased_point_size_range": "[1, 1023]",
"webgl_antialiasing": "yes",
"webgl_bits": "8,8,24,8,8,0",
"webgl_max_params": "16,32,8192,261,8192,16,8192,32,32,16,256",
"webgl_max_params": "16,64,16384,4096,8192,32,8192,31,16,32,4096",
"webgl_max_viewport_dims": "[8192, 8192]",
"webgl_unmasked_vendor": "Google Inc.",
"webgl_unmasked_renderer": "Google SwiftShader",
"webgl_unmasked_vendor": "Google Inc. (Google)",
"webgl_unmasked_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (Subzero) (0x0000C0DE)), SwiftShader driver)",
"webgl_vsf_params": "23,127,127,23,127,127,23,127,127",
"webgl_vsi_params": "0,31,30,0,31,30,0,31,30",
"webgl_fsf_params": "23,127,127,23,127,127,23,127,127",
"webgl_fsi_params": "0,31,30,0,31,30,0,31,30",
"webgl_hash_webgl": null,
"user_agent_data_brands": "Chromium,Not)A;Brand,Google Chrome",
"user_agent_data_brands": "Chromium,Google Chrome,Not=A?Brand",
"user_agent_data_mobile": null,
"navigator_connection_downlink": null,
"navigator_connection_downlink_max": null,
Expand Down Expand Up @@ -262,7 +262,7 @@ let baseEnhancedFingerprint = {
"window__tree_index": [
0
],
"window__tree_structure": "[[],[[]]]",
"window__tree_structure": "[[]]",
"window__location_href": "https://roblox-api.arkoselabs.com/v2/1.5.5/enforcement.fbfc14b0d793c6ef8359e0e4b4a91f67.html#476068BF-9607-4799-B53D-966BE98E2B81",
"client_config__sitedata_location_href": "https://www.roblox.com/arkose/iframe",
"client_config__surl": "https://roblox-api.arkoselabs.com",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "funcaptcha",
"version": "1.1.6",
"version": "1.1.7",
"description": "A library used to interact with funcaptchas.",
"author": "noahcoolboy",
"license": "MIT",
Expand Down
12 changes: 6 additions & 6 deletions src/fingerprint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,19 +233,19 @@ let baseEnhancedFingerprint = {
"webgl_version": "WebGL 1.0 (OpenGL ES 2.0 Chromium)",
"webgl_shading_language_version": "WebGL GLSL ES 1.0 (OpenGL ES GLSL ES 1.0 Chromium)",
"webgl_aliased_line_width_range": "[1, 1]",
"webgl_aliased_point_size_range": "[0.125, 8192]",
"webgl_aliased_point_size_range": "[1, 1023]",
"webgl_antialiasing": "yes",
"webgl_bits": "8,8,24,8,8,0",
"webgl_max_params": "16,32,8192,261,8192,16,8192,32,32,16,256",
"webgl_max_params": "16,64,16384,4096,8192,32,8192,31,16,32,4096",
"webgl_max_viewport_dims": "[8192, 8192]",
"webgl_unmasked_vendor": "Google Inc.",
"webgl_unmasked_renderer": "Google SwiftShader",
"webgl_unmasked_vendor": "Google Inc. (Google)",
"webgl_unmasked_renderer": "ANGLE (Google, Vulkan 1.3.0 (SwiftShader Device (Subzero) (0x0000C0DE)), SwiftShader driver)",
"webgl_vsf_params": "23,127,127,23,127,127,23,127,127",
"webgl_vsi_params": "0,31,30,0,31,30,0,31,30",
"webgl_fsf_params": "23,127,127,23,127,127,23,127,127",
"webgl_fsi_params": "0,31,30,0,31,30,0,31,30",
"webgl_hash_webgl": null,
"user_agent_data_brands": "Chromium,Not)A;Brand,Google Chrome",
"user_agent_data_brands": "Chromium,Google Chrome,Not=A?Brand",
"user_agent_data_mobile": null,
"navigator_connection_downlink": null,
"navigator_connection_downlink_max": null,
Expand Down Expand Up @@ -274,7 +274,7 @@ let baseEnhancedFingerprint = {
"window__tree_index": [
0
],
"window__tree_structure": "[[],[[]]]",
"window__tree_structure": "[[]]",
"window__location_href": "https://roblox-api.arkoselabs.com/v2/1.5.5/enforcement.fbfc14b0d793c6ef8359e0e4b4a91f67.html#476068BF-9607-4799-B53D-966BE98E2B81",
"client_config__sitedata_location_href": "https://www.roblox.com/arkose/iframe",
"client_config__surl": "https://roblox-api.arkoselabs.com",
Expand Down

0 comments on commit f4c096b

Please sign in to comment.