This commit is contained in:
Faker
2022-05-12 11:10:00 +08:00
parent 25fe17e584
commit f3f5c595bb
15 changed files with 637 additions and 301 deletions

12
jd_checkCookie.ts Normal file
View File

@@ -0,0 +1,12 @@
import {getCookie} from "./TS_USER_AGENTS"
let cookie: string = '', UserName: string
!(async () => {
let cookiesArr: string[] = await getCookie(true)
for (let [index, value] of cookiesArr.entries()) {
cookie = value
UserName = decodeURIComponent(cookie.match(/pt_pin=([^;]*)/)![1])
console.log(index + 1, UserName)
}
})()