├── .gitignore ├── .vscode └── settings.json ├── archive ├── hsw │ ├── 1_39_0_hsw_bind.js │ ├── 1_40_0_hsw_bind.js │ ├── 1_40_13_hsw_bind.js │ ├── 1_40_14_hsw_bind.js │ ├── 1_40_15_hsw_bind.js │ ├── 1_40_16_hsw_bind.js │ ├── 1_40_21_hsw_bind.js │ ├── 1_40_30_hsw_bind.js │ ├── 1_40_31_hsw_bind.js │ ├── 1_40_32_hsw_bind.js │ ├── 1_40_33_hsw_bind.js │ └── 1_40_34_hsw_bind.js └── wasm │ ├── custom_1_40_13.wat │ ├── custom_1_40_14.wat │ ├── custom_1_40_15.wat │ ├── custom_1_40_16.wat │ ├── custom_1_40_21.wat │ ├── custom_1_40_30.wat │ ├── custom_1_40_31.wat │ ├── custom_1_40_32.wat │ ├── custom_1_40_33.wat │ ├── custom_1_40_34.wat │ └── custom_1_40_7.wat ├── encryptions ├── blob.py ├── fetcher.py ├── main.py └── request.py ├── fp_build ├── go.mod ├── go.sum ├── jwt.go ├── main.go ├── rand.go ├── stamp.go └── xxhash.go ├── readme.md ├── sandbox ├── 1_40_32_hsw_bind.js ├── main.js ├── package-lock.json ├── package.json ├── start.bash └── test.py ├── src ├── assets │ ├── .json │ ├── build.wasm │ ├── custom_1_40_35.wat │ └── stub.js └── main.py ├── test ├── .html └── decr.go └── versions ├── 1.40.07 ├── 108.wat ├── asm.wat ├── fp.json └── hsw_bind.js ├── 1.40.10 ├── 1_40_10.wasm ├── asm.wat ├── fp.json └── hsw.js ├── 1.40.13 ├── 1_40_13.wasm ├── fp.json ├── hsw.js ├── hsw.wat └── hsw_bind.js ├── 1.40.14 ├── hsw.wat └── hsw_bind.js ├── 1.40.15 ├── fp.json ├── hsw.js └── hsw.wat ├── 1.40.16 ├── 1_40_16.wasm ├── 1_40_16_hsw_bind.js ├── fp.json ├── hsw.js └── hsw.wat ├── 1.40.20 ├── fp.json ├── hsw.js └── hsw.wat ├── 1.40.21 ├── .json ├── fp.json ├── hsw.js └── hsw.wat ├── 1.40.22 └── fp.json ├── 1.40.23 └── fp.json ├── 1.40.24 ├── fp.json └── hsw.js ├── 1.40.25 └── fp.json ├── 1.40.30 ├── custom.js ├── fp.json ├── hsw.js └── wasm.wat ├── 1.40.31 ├── custom.js ├── hsw.js ├── hsw.wasm └── wasm.wat ├── 1.40.32 └── custom.js ├── 1.40.33 ├── custom.js ├── fp.json └── wasm.wat ├── 1.50.1 └── hsw.js ├── 1.50 ├── exec.html └── hsw.js ├── exec.html ├── fingerprint_dumper.js ├── key_dumper.js ├── n_dumper.js └── vm.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /archive/hsw/1_39_0_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_39_0_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_0_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_0_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_13_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_13_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_14_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_14_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_15_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_15_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_16_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_16_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_21_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_21_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_30_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_30_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_31_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_31_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_32_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_32_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_33_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_33_hsw_bind.js -------------------------------------------------------------------------------- /archive/hsw/1_40_34_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/hsw/1_40_34_hsw_bind.js -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_13.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_13.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_14.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_14.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_15.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_15.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_16.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_16.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_21.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_21.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_30.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_30.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_31.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_31.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_32.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_32.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_33.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_33.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_34.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_34.wat -------------------------------------------------------------------------------- /archive/wasm/custom_1_40_7.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/archive/wasm/custom_1_40_7.wat -------------------------------------------------------------------------------- /encryptions/blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/encryptions/blob.py -------------------------------------------------------------------------------- /encryptions/fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/encryptions/fetcher.py -------------------------------------------------------------------------------- /encryptions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/encryptions/main.py -------------------------------------------------------------------------------- /encryptions/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/encryptions/request.py -------------------------------------------------------------------------------- /fp_build/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/fp_build/go.mod -------------------------------------------------------------------------------- /fp_build/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/fp_build/go.sum -------------------------------------------------------------------------------- /fp_build/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/fp_build/jwt.go -------------------------------------------------------------------------------- /fp_build/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/fp_build/main.go -------------------------------------------------------------------------------- /fp_build/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/fp_build/rand.go -------------------------------------------------------------------------------- /fp_build/stamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/fp_build/stamp.go -------------------------------------------------------------------------------- /fp_build/xxhash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/fp_build/xxhash.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/readme.md -------------------------------------------------------------------------------- /sandbox/1_40_32_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/sandbox/1_40_32_hsw_bind.js -------------------------------------------------------------------------------- /sandbox/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/sandbox/main.js -------------------------------------------------------------------------------- /sandbox/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/sandbox/package-lock.json -------------------------------------------------------------------------------- /sandbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/sandbox/package.json -------------------------------------------------------------------------------- /sandbox/start.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/sandbox/start.bash -------------------------------------------------------------------------------- /sandbox/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/sandbox/test.py -------------------------------------------------------------------------------- /src/assets/.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/src/assets/.json -------------------------------------------------------------------------------- /src/assets/build.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/src/assets/build.wasm -------------------------------------------------------------------------------- /src/assets/custom_1_40_35.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/src/assets/custom_1_40_35.wat -------------------------------------------------------------------------------- /src/assets/stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/src/assets/stub.js -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/src/main.py -------------------------------------------------------------------------------- /test/.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/test/.html -------------------------------------------------------------------------------- /test/decr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/test/decr.go -------------------------------------------------------------------------------- /versions/1.40.07/108.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.07/108.wat -------------------------------------------------------------------------------- /versions/1.40.07/asm.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.07/asm.wat -------------------------------------------------------------------------------- /versions/1.40.07/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.07/fp.json -------------------------------------------------------------------------------- /versions/1.40.07/hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.07/hsw_bind.js -------------------------------------------------------------------------------- /versions/1.40.10/1_40_10.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.10/1_40_10.wasm -------------------------------------------------------------------------------- /versions/1.40.10/asm.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.10/asm.wat -------------------------------------------------------------------------------- /versions/1.40.10/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.10/fp.json -------------------------------------------------------------------------------- /versions/1.40.10/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.10/hsw.js -------------------------------------------------------------------------------- /versions/1.40.13/1_40_13.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.13/1_40_13.wasm -------------------------------------------------------------------------------- /versions/1.40.13/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.13/fp.json -------------------------------------------------------------------------------- /versions/1.40.13/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.13/hsw.js -------------------------------------------------------------------------------- /versions/1.40.13/hsw.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.13/hsw.wat -------------------------------------------------------------------------------- /versions/1.40.13/hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.13/hsw_bind.js -------------------------------------------------------------------------------- /versions/1.40.14/hsw.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.14/hsw.wat -------------------------------------------------------------------------------- /versions/1.40.14/hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.14/hsw_bind.js -------------------------------------------------------------------------------- /versions/1.40.15/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.15/fp.json -------------------------------------------------------------------------------- /versions/1.40.15/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.15/hsw.js -------------------------------------------------------------------------------- /versions/1.40.15/hsw.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.15/hsw.wat -------------------------------------------------------------------------------- /versions/1.40.16/1_40_16.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.16/1_40_16.wasm -------------------------------------------------------------------------------- /versions/1.40.16/1_40_16_hsw_bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.16/1_40_16_hsw_bind.js -------------------------------------------------------------------------------- /versions/1.40.16/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.16/fp.json -------------------------------------------------------------------------------- /versions/1.40.16/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.16/hsw.js -------------------------------------------------------------------------------- /versions/1.40.16/hsw.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.16/hsw.wat -------------------------------------------------------------------------------- /versions/1.40.20/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.20/fp.json -------------------------------------------------------------------------------- /versions/1.40.20/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.20/hsw.js -------------------------------------------------------------------------------- /versions/1.40.20/hsw.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.20/hsw.wat -------------------------------------------------------------------------------- /versions/1.40.21/.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.21/.json -------------------------------------------------------------------------------- /versions/1.40.21/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.21/fp.json -------------------------------------------------------------------------------- /versions/1.40.21/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.21/hsw.js -------------------------------------------------------------------------------- /versions/1.40.21/hsw.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.21/hsw.wat -------------------------------------------------------------------------------- /versions/1.40.22/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.22/fp.json -------------------------------------------------------------------------------- /versions/1.40.23/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.23/fp.json -------------------------------------------------------------------------------- /versions/1.40.24/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.24/fp.json -------------------------------------------------------------------------------- /versions/1.40.24/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.24/hsw.js -------------------------------------------------------------------------------- /versions/1.40.25/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.25/fp.json -------------------------------------------------------------------------------- /versions/1.40.30/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.30/custom.js -------------------------------------------------------------------------------- /versions/1.40.30/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.30/fp.json -------------------------------------------------------------------------------- /versions/1.40.30/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.30/hsw.js -------------------------------------------------------------------------------- /versions/1.40.30/wasm.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.30/wasm.wat -------------------------------------------------------------------------------- /versions/1.40.31/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.31/custom.js -------------------------------------------------------------------------------- /versions/1.40.31/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.31/hsw.js -------------------------------------------------------------------------------- /versions/1.40.31/hsw.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.31/hsw.wasm -------------------------------------------------------------------------------- /versions/1.40.31/wasm.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.31/wasm.wat -------------------------------------------------------------------------------- /versions/1.40.32/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.32/custom.js -------------------------------------------------------------------------------- /versions/1.40.33/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.33/custom.js -------------------------------------------------------------------------------- /versions/1.40.33/fp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.33/fp.json -------------------------------------------------------------------------------- /versions/1.40.33/wasm.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.40.33/wasm.wat -------------------------------------------------------------------------------- /versions/1.50.1/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.50.1/hsw.js -------------------------------------------------------------------------------- /versions/1.50/exec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.50/exec.html -------------------------------------------------------------------------------- /versions/1.50/hsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/1.50/hsw.js -------------------------------------------------------------------------------- /versions/exec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/exec.html -------------------------------------------------------------------------------- /versions/fingerprint_dumper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/fingerprint_dumper.js -------------------------------------------------------------------------------- /versions/key_dumper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/key_dumper.js -------------------------------------------------------------------------------- /versions/n_dumper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/n_dumper.js -------------------------------------------------------------------------------- /versions/vm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Implex-ltd/hcaptcha-reverse/HEAD/versions/vm.js --------------------------------------------------------------------------------