node-curl-impersonate
Advanced tools
Comparing version 1.3.0 to 1.3.1
{ | ||
"name": "node-curl-impersonate", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "A wrapper around cURL-impersonate, a binary which can be used to bypass TLS fingerprinting.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -1,9 +0,22 @@ | ||
import { notEqual } from "assert"; | ||
import { equal, notEqual } from "assert"; | ||
import CurlImpersonate from "../src/index"; | ||
test("Returns a successful GET reponse", async () => { | ||
let ci = new CurlImpersonate("https://httpbin.org/get", { | ||
test("Returns a successful GET reponse on TLS Fingerprinting protected URL", async () => { | ||
let ci = new CurlImpersonate("https://api.amiami.com/api/v1.0/items?pagemax=20&lang=eng&mcode=&ransu=&age_confirm=&s_keywords=touhou%20plush", { | ||
method: "GET", | ||
flags: ["--ciphers TLS_AES_128_GCM_SHA256,TLS_AES_256_GCM_SHA384,TLS_CHACHA20_POLY1305_SHA256,ECDHE-ECDSA-AES128-GCM-SHA256,ECDHE-RSA-AES128-GCM-SHA256,ECDHE-ECDSA-AES256-GCM-SHA384,ECDHE-RSA-AES256-GCM-SHA384,ECDHE-ECDSA-CHACHA20-POLY1305,ECDHE-RSA-CHACHA20-POLY1305,ECDHE-RSA-AES128-SHA,ECDHE-RSA-AES256-SHA,AES128-GCM-SHA256,AES256-GCM-SHA384,AES128-SHA,AES256-SHA", "--http2", "--http2-no-server-push", "--compressed", "--tlsv1.2", "--alps", "--tls-permute-extensions", "--cert-compression brotli"], | ||
headers: { | ||
"user-agent": "node-curl-impersonate Test Suite -- contact@wearr.dev" | ||
"sec-ch-ua": `"Chromium";v="110", "Not A(Brand";v="24", "Google Chrome";v="110"`, | ||
"sec-ch-ua-mobile": "?0", | ||
"sec-ch-ua-platform": "Windows", | ||
"Upgrade-Insecure-Requests": "1", | ||
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36", | ||
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", | ||
"Sec-Fetch-Site": "none", | ||
"Sec-Fetch-Mode": "navigate", | ||
"Sec-Fetch-User": "?1", | ||
"Sec-Fetch-Dest": "document", | ||
"Accept-Encoding": "gzip, deflate, br", | ||
"Accept-Language": "en-US,en;q=0.9", | ||
"X-User-Key": "amiami_dev" | ||
}, | ||
@@ -13,3 +26,3 @@ }); | ||
console.log(req) | ||
expect(notEqual(req, null)) | ||
expect(equal(req.statusCode, 200)) | ||
}) | ||
@@ -16,0 +29,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
9090106
498