repo
stringlengths
7
64
file_url
stringlengths
81
338
file_path
stringlengths
5
257
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:25:31
2026-01-05 01:50:38
truncated
bool
2 classes
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/index.ts
packages/core/index.ts
export * from './src'; export * from './fetch'; export * from './src/utils';
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/saveTikProvider.ts
packages/core/src/saveTikProvider.ts
import {BaseProvider, ExtractedInfo} from './base'; import {getFetch} from '../fetch'; import {ZodObject} from 'zod'; // import {matchLink, runObfuscatedReplaceEvalScript} from './utils'; /** * @class SaveTikProvider */ export class SaveTikProvider extends BaseProvider { /** * Get resource name * ...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/snaptikProvider.ts
packages/core/src/snaptikProvider.ts
import {ZodObject} from 'zod'; import {getFetch} from '../fetch'; import {BaseProvider, ExtractedInfo, MaintenanceProvider} from './base'; import {matchLink, runObfuscatedReplaceEvalScript} from './utils'; /** * @class SnaptikProvider */ export class SnaptikProvider extends BaseProvider { public client = getFetc...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/ttDownloaderProvider.ts
packages/core/src/ttDownloaderProvider.ts
import {ZodObject} from 'zod'; import {getFetch} from '../fetch'; import {BaseProvider, ExtractedInfo} from './base'; import {matchLink} from './utils'; /** * @class TTDownloader */ export class TTDownloader extends BaseProvider { /** * @return {string} */ public resourceName(): string { re...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/tikmateProvider.ts
packages/core/src/tikmateProvider.ts
import {ZodObject} from 'zod'; import {getFetch} from '../fetch'; import {BaseProvider, ExtractedInfo} from './base'; import {deObfuscate, matchLink} from './utils'; /** * @class TikmateProvider */ export class TikmateProvider extends BaseProvider { public client = getFetch('https://tikmate.io'); /** * ...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/fasttokSaveProvider.ts
packages/core/src/fasttokSaveProvider.ts
import {ZodObject} from 'zod'; import {getFetch} from '../fetch'; import {BaseProvider, ExtractedInfo, MaintenanceProvider} from './base'; /** * @class FasttokSaveProvider */ export class FasttokSaveProvider extends BaseProvider { /** * Get provider resource name * @return {string} */ public r...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/saveFromProvider.ts
packages/core/src/saveFromProvider.ts
import got from 'got'; import {getFetch} from '../fetch'; import {BaseProvider, ExtractedInfo, MaintenanceProvider} from './base'; import {deObfuscateSaveFromScript} from './utils'; /** * @class saveFromProvider */ export class SaveFromProvider extends BaseProvider { /** * * @return {string} */ ...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/musicalyDownProvider.ts
packages/core/src/musicalyDownProvider.ts
import got from 'got'; import {getFetch} from '../fetch'; import {BaseProvider, ExtractedInfo} from './base'; import {extractMusicalyDownImages, matchLink} from './utils'; /** * @class MusicalyDown */ export class MusicalyDown extends BaseProvider { public client = getFetch('https://musicaldown.com/id'); /**...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/base.ts
packages/core/src/base.ts
import {Got} from 'got'; import {ZodObject} from 'zod'; export interface ExtractedInfo { error?: string; video?: { id?: string; thumb?: string; urls: string[]; title?: string; duration?: string; }; slides?: string[]; music?: { url: string; tit...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/downTikProvider.ts
packages/core/src/downTikProvider.ts
import {BaseProvider, ExtractedInfo} from './base'; import {getFetch} from '../fetch'; import {matchCustomDownload, matchLink, runObfuscatedScript} from './utils'; import {ZodObject} from 'zod'; /** * @class DownTikProvider */ export class DownTikProvider extends BaseProvider { /** * Get resource name ...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/index.ts
packages/core/src/index.ts
import type {BaseProvider, ExtractedInfo} from './base'; import {MusicalyDown} from './musicalyDownProvider'; import {SnaptikProvider} from './snaptikProvider'; import {TikmateProvider} from './tikmateProvider'; import {TTDownloader} from './ttDownloaderProvider'; import {SaveFromProvider} from './saveFromProvider'; i...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/tikDownProvider.ts
packages/core/src/tikDownProvider.ts
import {BaseProvider, ExtractedInfo} from './base'; import {getFetch} from '../fetch'; import {ZodObject} from 'zod'; /** * @class TikDownProvider */ export class TikDownProvider extends BaseProvider { /** * Get resource name. * * @return {string} */ public resourceName(): string { ...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/nativeProvider.ts
packages/core/src/nativeProvider.ts
import {BaseProvider, ExtractedInfo} from './base'; import {getFetch} from '../fetch'; import {matchTikTokData} from './utils'; import z from 'zod'; /** * @class NativeProvider */ export class NativeProvider extends BaseProvider { /** * Get resource name. * @return {string} */ public resourceN...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/utils/extractor.ts
packages/core/src/utils/extractor.ts
import {getProvider} from '..'; import type {BaseProvider} from '../base'; import {NodeVM} from 'vm2'; export const matchTikTokData = (html: string): string => { const data = html.match( // eslint-disable-next-line max-len /window\['SIGI_STATE'\]=(.*)<\/script><script id="__LOADABLE_REQUIRED_CHUNK...
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/core/src/utils/index.ts
packages/core/src/utils/index.ts
export * from './extractor';
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
hansputera/tiktok-dl
https://github.com/hansputera/tiktok-dl/blob/803879bc7429579b3abf5ff68041078baaaf6d5f/packages/config/useragents.d.ts
packages/config/useragents.d.ts
declare const _default: { random: () => string; } export = _default;
typescript
MIT
803879bc7429579b3abf5ff68041078baaaf6d5f
2026-01-05T05:01:22.817932Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/collect-controller/index.ts
collect-controller/index.ts
import '@ulixee/commons/lib/SourceMapSupport'; import '@double-agent/config/load'; import Collect from '@double-agent/collect'; import { checkSetup } from '@double-agent/collect/servers/Certs'; import Config from '@double-agent/config'; import ShutdownHandler from '@ulixee/commons/lib/ShutdownHandler'; import Server fr...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/collect-controller/interfaces/IAssignment.ts
collect-controller/interfaces/IAssignment.ts
import ISessionPage from '@double-agent/collect/interfaces/ISessionPage'; import { IUserAgentToTestPickType } from '@double-agent/config/interfaces/IUserAgentToTest'; import { IUserAgentMeta } from '@unblocked-web/real-user-agents'; export default interface IAssignment { id: string; num: number; type: IAssignmen...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/collect-controller/lib/utils.ts
collect-controller/lib/utils.ts
export function average(numbers: number[]): number { if (!numbers.length) return 0; return Math.floor(numbers.reduce((t, c) => t + c, 0) / numbers.length); }
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/collect-controller/lib/buildAllAssignments.ts
collect-controller/lib/buildAllAssignments.ts
import IUserAgentToTest, { IUserAgentToTestPickType, UserAgentToTestPickType, } from '@double-agent/config/interfaces/IUserAgentToTest'; import { createUserAgentIdFromIds } from '@double-agent/config'; import buildAssignment from './buildAssignment'; import IAssignment, { AssignmentType } from '../interfaces/IAssig...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/collect-controller/lib/Server.ts
collect-controller/lib/Server.ts
import * as url from 'url'; import { createReadStream, createWriteStream, existsSync, promises as Fs, rmdirSync } from 'fs'; import * as Path from 'path'; import * as http from 'http'; import { pathToRegexp } from 'path-to-regexp'; import Collect from '@double-agent/collect'; import Plugin from '@double-agent/collect/l...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/collect-controller/lib/buildAssignment.ts
collect-controller/lib/buildAssignment.ts
import { IUserAgentToTestPickType } from '@double-agent/config/interfaces/IUserAgentToTest'; import RealUserAgents, { IUserAgentMeta } from '@unblocked-web/real-user-agents'; import IAssignment, { AssignmentType, IAssignmentType } from '../interfaces/IAssignment'; export default function buildAssignment( id: string,...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/index.ts
analyze/index.ts
import '@ulixee/commons/lib/SourceMapSupport'; import * as Fs from 'fs'; import * as Path from 'path'; import IBaseProfile from '@double-agent/collect/interfaces/IBaseProfile'; import { UserAgentToTestPickType, IUserAgentToTestPickType, } from '@double-agent/config/interfaces/IUserAgentToTest'; import { extractProf...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-fingerprints/index.ts
analyze/plugins/browser-fingerprints/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import IFingerprintProfile from '@double-agent/collect-browser-fingerprints/interfaces/IProfile'; import CheckGenerator from './l...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-fingerprints/lib/CheckGenerator.ts
analyze/plugins/browser-fingerprints/lib/CheckGenerator.ts
import IFingerprintProfile from '@double-agent/collect-browser-fingerprints/interfaces/IProfile'; import SessionFingerprintCheck from './checks/SessionFingerprintCheck'; import UniqueFingerprintCheck from './checks/UniqueFingerprintCheck'; export default class CheckGenerator { public readonly checks = []; private...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-fingerprints/lib/checks/UniqueFingerprintCheck.ts
analyze/plugins/browser-fingerprints/lib/checks/UniqueFingerprintCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class UniqueFingerprintCheck extends BaseCheck { public readonly prefix = 'GFNG'; public readonly type = CheckType.OverTime; public readonly fingerprint: string; private readon...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-fingerprints/lib/checks/SessionFingerprintCheck.ts
analyze/plugins/browser-fingerprints/lib/checks/SessionFingerprintCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class SessionFingerprintCheck extends BaseCheck { public readonly prefix = 'SFNG'; public readonly type = CheckType.Individual; private readonly fingerprints: string[]; constru...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tcp/index.ts
analyze/plugins/tcp/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import ITcpProfile from '@double-agent/collect/plugins/tcp/interfaces/IProfile'; import CheckGenerator from './lib/CheckGenerator...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tcp/lib/CheckGenerator.ts
analyze/plugins/tcp/lib/CheckGenerator.ts
import ITcpProfile from '@double-agent/collect/plugins/tcp/interfaces/IProfile'; import RealUserAgents from '@unblocked-web/real-user-agents'; import ExpectedValueCheck from './checks/ExpectedValueCheck'; import ExpectedValuesCheck from './checks/ExpectedValuesCheck'; export default class CheckGenerator { public rea...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tcp/lib/checks/ExpectedValueCheck.ts
analyze/plugins/tcp/lib/checks/ExpectedValueCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class ExpectedValueCheck extends BaseCheck { public readonly prefix = 'EVAL'; public readonly type = CheckType.Individual; private readonly expectedValue: string | number; priva...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tcp/lib/checks/ExpectedValuesCheck.ts
analyze/plugins/tcp/lib/checks/ExpectedValuesCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class ExpectedValueCheck extends BaseCheck { public readonly prefix = 'EVLS'; public readonly type = CheckType.Individual; private readonly expectedValues: (string | number)[]; ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-assets/index.ts
analyze/plugins/http-assets/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import IProfile from '@double-agent/collect-http-assets/interfaces/IProfile'; import CheckGenerator from './lib/CheckGenerator'; ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-assets/lib/CheckGenerator.ts
analyze/plugins/http-assets/lib/CheckGenerator.ts
import IHttpBasicHeadersProfile from '@double-agent/collect-http-assets/interfaces/IProfile'; import SharedCheckGenerator from '@double-agent/analyze/lib/headers/SharedCheckGenerator'; export default class CheckGenerator { public readonly checks = []; private readonly profile: IHttpBasicHeadersProfile; private ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/index.ts
analyze/plugins/tls-clienthello/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import ITlsClienthelloProfile from '@double-agent/collect-tls-clienthello/interfaces/IProfile'; import CheckGenerator from './lib...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/interfaces/IJa3.ts
analyze/plugins/tls-clienthello/interfaces/IJa3.ts
// export default interface IJa3 { // value: string; // md5: string; // }
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/interfaces/IJa3BrowserProfile.ts
analyze/plugins/tls-clienthello/interfaces/IJa3BrowserProfile.ts
// import { IClientHello } from '../lib/parseHelloMessage'; // // export default interface IJa3BrowserProfile { // userAgentString: string; // ja3: string; // ja3Extended: string; // ja3Md5: string; // ja3ExtendedMd5: string; // clientHello?: IClientHello; // }
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/interfaces/ITlsResult.ts
analyze/plugins/tls-clienthello/interfaces/ITlsResult.ts
// import { IClientHello } from '../lib/parseHelloMessage'; // // export default interface ITlsResult { // hasGrease?: boolean; // reason?: string; // ja3Extended?: string; // ja3ExtendedMd5?: string; // ja3?: string; // ja3Md5?: string; // clientHello?: IClientHello; // }
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/interfaces/IJa3erClientHello.ts
analyze/plugins/tls-clienthello/interfaces/IJa3erClientHello.ts
// export default interface IJa3erClientHello { // sslVersion: string; // ciphers: string[]; // extensions: string[]; // supportedGroups: string[]; // curvePointFormats: string[]; // }
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/interfaces/IJa3Details.ts
analyze/plugins/tls-clienthello/interfaces/IJa3Details.ts
// import IJa3 from './IJa3'; // // export default interface IJa3Details extends IJa3 { // uncleaned: string; // raw: { // sslVersion: number; // ciphers: number[]; // extensions: number[]; // curve: number[]; // pointFormats: number[]; // }; // }
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/lib/buildJa3Extended.ts
analyze/plugins/tls-clienthello/lib/buildJa3Extended.ts
// import { cleanGrease } from './buildJa3'; // import { IClientHello } from './parseHelloMessage'; // import crypto from 'crypto'; // import IJa3Details from '../interfaces/IJa3Details'; // import IJa3 from '../interfaces/IJa3'; // // /** // * This extension aims to identify when fields are left out for specifically ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/lib/buildJa3.ts
analyze/plugins/tls-clienthello/lib/buildJa3.ts
// import crypto from 'crypto'; // import { IClientHello } from './parseHelloMessage'; // import IJa3Details from '../interfaces/IJa3Details'; // // /** // * SSLVersion,Cipher,SSLExtension,EllipticCurve,EllipticCurvePointFormat // Example: // // 769,47-53-5-10-49161-49162-49171-49172-50-56-19-4,0-10-11,23-24-25,0 //...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/tls-clienthello/lib/CheckGenerator.ts
analyze/plugins/tls-clienthello/lib/CheckGenerator.ts
import StringCheck from '@double-agent/analyze/lib/checks/StringCheck'; import ITlsClienthelloProfile from '@double-agent/collect-tls-clienthello/interfaces/IProfile'; import IClientHello from '@double-agent/tls-server/interfaces/IClientHello'; import NumberCheck from '@double-agent/analyze/lib/checks/NumberCheck'; imp...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-codecs/index.ts
analyze/plugins/browser-codecs/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import ICodecProfile from '@double-agent/collect-browser-codecs/interfaces/IProfile'; import CheckGenerator from './lib/CheckGene...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-codecs/lib/CheckGenerator.ts
analyze/plugins/browser-codecs/lib/CheckGenerator.ts
import StringArrayCheck from '@double-agent/analyze/lib/checks/StringArrayCheck'; import ICodecProfile from '@double-agent/collect-browser-codecs/interfaces/IProfile'; enum CodecType { audio = 'audio', video = 'video', } export default class CheckGenerator { private readonly profile: ICodecProfile; private re...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http2-session/index.ts
analyze/plugins/http2-session/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import IHttp2SessionProfile from '@double-agent/collect-http2-session/interfaces/IProfile'; import CheckGenerator from './lib/Che...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http2-session/lib/CheckGenerator.ts
analyze/plugins/http2-session/lib/CheckGenerator.ts
import IProfile from '@double-agent/collect-http2-session/interfaces/IProfile'; import NumberCheck from '@double-agent/analyze/lib/checks/NumberCheck'; import BooleanCheck from '@double-agent/analyze/lib/checks/BooleanCheck'; export default class CheckGenerator { public readonly checks = []; private readonly prof...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-basic-headers/index.ts
analyze/plugins/http-basic-headers/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import IHttpBasicHeadersProfile from '@double-agent/collect-http-basic-headers/interfaces/IProfile'; import CheckGenerator from '...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-basic-headers/lib/CheckGenerator.ts
analyze/plugins/http-basic-headers/lib/CheckGenerator.ts
import IHttpBasicHeadersProfile from '@double-agent/collect-http-basic-headers/interfaces/IProfile'; import SharedCheckGenerator from '@double-agent/analyze/lib/headers/SharedCheckGenerator'; export default class CheckGenerator { public readonly checks = []; private readonly profile: IHttpBasicHeadersProfile; p...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-websockets/index.ts
analyze/plugins/http-websockets/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import IProfile from '@double-agent/collect-http-websockets/interfaces/IProfile'; import CheckGenerator from './lib/CheckGenerato...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-websockets/lib/CheckGenerator.ts
analyze/plugins/http-websockets/lib/CheckGenerator.ts
import IProfile from '@double-agent/collect-http-websockets/interfaces/IProfile'; import SharedCheckGenerator from '@double-agent/analyze/lib/headers/SharedCheckGenerator'; export default class CheckGenerator { public readonly checks = []; private readonly profile: IProfile; private readonly userAgentId: string...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/index.ts
analyze/plugins/browser-dom-environment/index.ts
import Plugin from '@double-agent/analyze/lib/Plugin'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import IProfile from '@double-agent/collect-browser-dom-environment/interfaces/IProfile'; import CheckGenerator from './lib/Check...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/interfaces/IDomDescriptor.ts
analyze/plugins/browser-dom-environment/interfaces/IDomDescriptor.ts
export default interface IDomDescriptor { _$flags?: string; _$type?: string; _$get?: string; _$set?: string; _$ref?: string; _$accessException?: string; _$constructorException?: string; _$value?: string | number | boolean; _$getToStringToString?: string; _$setToStringToString?: string; _$function?...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/interfaces/EndpointType.ts
analyze/plugins/browser-dom-environment/interfaces/EndpointType.ts
enum EndpointType { keyOrder = 'keyOrder', flags = 'flags', prototype = 'prototype', number = 'number', function = 'function', string = 'string', stacktrace = 'stacktrace', getter = 'getter', setter = 'setter', class = 'class', ref = 'ref', boolean = 'boolean', array = 'array', symbol = 'sym...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/extractDomEndpoints.ts
analyze/plugins/browser-dom-environment/lib/extractDomEndpoints.ts
import { IProfileData } from '@double-agent/collect-browser-dom-environment/interfaces/IProfile'; import IDomDescriptor from '../interfaces/IDomDescriptor'; export const metaKeys = new Set([ '_$protos', '_$function', '_$functionMethods', '_$flags', '_$accessException', '_$constructorException', '_$ref', ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/CheckGenerator.ts
analyze/plugins/browser-dom-environment/lib/CheckGenerator.ts
import BaseCheck from '@double-agent/analyze/lib/checks/BaseCheck'; import NumberCheck from '@double-agent/analyze/lib/checks/NumberCheck'; import StringCheck from '@double-agent/analyze/lib/checks/StringCheck'; import BooleanCheck from '@double-agent/analyze/lib/checks/BooleanCheck'; import DecimalLengthCheck from '@d...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/FlagsCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/FlagsCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class FlagsCheck extends BaseCheck { public readonly prefix = 'FLAG'; public readonly type = CheckType.Individual; private readonly flags: string[]; constructor(identity: IChec...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/FunctionCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/FunctionCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class FunctionCheck extends BaseCheck { public readonly prefix = 'FUNC'; public readonly type = CheckType.Individual; private readonly codeString: string; private readonly metho...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/SymbolCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/SymbolCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class SymbolCheck extends BaseCheck { public readonly prefix = 'SYMB'; public readonly type = CheckType.Individual; private readonly value: string; constructor(identity: ICheck...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/TypeCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/TypeCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class TypeCheck extends BaseCheck { public readonly prefix = 'TYPE'; public readonly type = CheckType.Individual; private readonly value: string; constructor(identity: ICheckId...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/StacktraceCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/StacktraceCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class StacktraceCheck extends BaseCheck { public readonly prefix = 'STCK'; public readonly type = CheckType.Individual; private readonly errorClass: string; constructor(identit...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/KeyOrderCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/KeyOrderCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class KeyOrderCheck extends BaseCheck { public readonly prefix = 'KORD'; public readonly type = CheckType.Individual; private readonly keys: string[]; constructor(identity: ICh...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/SetterCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/SetterCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; type IData = { codeString: string } | { codeStringToString: string }; export default class SetterCheck extends BaseCheck { public readonly prefix = 'SETR'; public readonly type = CheckType.Individ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/PrototypeCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/PrototypeCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class PrototypeCheck extends BaseCheck { public readonly prefix = 'PRTO'; public readonly type = CheckType.Individual; private readonly prototypes: string[]; constructor(identi...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/RefCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/RefCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class RefCheck extends BaseCheck { public readonly prefix = 'REFR'; public readonly type = CheckType.Individual; private readonly value: string; constructor(identity: ICheckIde...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/ArrayCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/ArrayCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class ArrayCheck extends BaseCheck { public readonly prefix = 'ARRY'; public readonly type = CheckType.Individual; private readonly hasLengthProperty: boolean; constructor(iden...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/AutomationCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/AutomationCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; export default class AutomationCheck extends BaseCheck { public readonly prefix = 'AUTO'; public readonly type = CheckType.Individual; public constructor(identity: ICheckIdentity, meta: ICheckMe...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/GetterCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/GetterCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; type IData = { codeString: string } | { codeStringToString: string } | { accessException: string }; export default class GetterCheck extends BaseCheck { public readonly prefix = 'GETR'; public rea...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/browser-dom-environment/lib/checks/ClassCheck.ts
analyze/plugins/browser-dom-environment/lib/checks/ClassCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; type IData = { hasFunction: boolean } | { constructorException: string }; export default class ClassCheck extends BaseCheck { public readonly prefix = 'CLSS'; public readonly type = CheckType.Indi...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-basic-cookies/index.ts
analyze/plugins/http-basic-cookies/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import IHttpBasicCookiesProfile from '@double-agent/collect-http-basic-cookies/interfaces/IProfile'; import CheckGenerator from '...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-basic-cookies/interfaces/ICookieSetDetails.ts
analyze/plugins/http-basic-cookies/interfaces/ICookieSetDetails.ts
export default interface ICookieSetDetails { name: string; setter: string; previouslyCreated: boolean; attributes: string[]; }
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-basic-cookies/interfaces/ICookieGetDetails.ts
analyze/plugins/http-basic-cookies/interfaces/ICookieGetDetails.ts
export default interface ICookieGetDetails { getter: string; httpProtocol: string; }
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-basic-cookies/lib/CheckGenerator.ts
analyze/plugins/http-basic-cookies/lib/CheckGenerator.ts
import IHttpBasicCookiesProfile, { ICollectedCookieData, ICreatedCookieData, } from '@double-agent/collect-http-basic-cookies/interfaces/IProfile'; import BaseCheck from '@double-agent/analyze/lib/checks/BaseCheck'; import ReadableCookieCheck from './checks/ReadableCookieCheck'; import UnreadableCookieCheck from '....
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-basic-cookies/lib/checks/ReadableCookieCheck.ts
analyze/plugins/http-basic-cookies/lib/checks/ReadableCookieCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; import ICookieSetDetails from '../../interfaces/ICookieSetDetails'; import ICookieGetDetails from '../../interfaces/ICookieGetDetails'; export default class ReadableCookieCheck extends BaseCheck { pu...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-basic-cookies/lib/checks/UnreadableCookieCheck.ts
analyze/plugins/http-basic-cookies/lib/checks/UnreadableCookieCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta, } from '@double-agent/analyze/lib/checks/BaseCheck'; import ICookieGetDetails from '../../interfaces/ICookieGetDetails'; import ICookieSetDetails from '../../interfaces/ICookieSetDetails'; export default class UnreadableCookieCheck extends BaseCheck { ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-xhr/index.ts
analyze/plugins/http-xhr/index.ts
import { DiffGradient } from '@double-agent/analyze/lib/scorers'; import { PositiveMatcher } from '@double-agent/analyze/lib/matchers'; import Plugin from '@double-agent/analyze/lib/Plugin'; import IHttpXhrHeadersProfile from '@double-agent/collect-http-basic-headers/interfaces/IProfile'; import CheckGenerator from './...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins/http-xhr/lib/CheckGenerator.ts
analyze/plugins/http-xhr/lib/CheckGenerator.ts
import IProfile from '@double-agent/collect-http-basic-headers/interfaces/IProfile'; import SharedCheckGenerator from '@double-agent/analyze/lib/headers/SharedCheckGenerator'; import NumberCheck from '@double-agent/analyze/lib/checks/NumberCheck'; import BaseCheck from '@double-agent/analyze/lib/checks/BaseCheck'; exp...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/plugins-in-future/browser-tampering/lib/navigatorTest.ts
analyze/plugins-in-future/browser-tampering/lib/navigatorTest.ts
// function navigatorTest() { // //language // //resolution // // screen size /offset is possible (fingerprint this?) // //platform // //timezone // //webgl driver // //memory/heap size is possible // //vendor // //subproduct // //https://github.com/ghostwords/chameleon/blob/a1a6c20616a56b4896240536...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/Probe.ts
analyze/lib/Probe.ts
import * as Path from 'path'; import Config from '@double-agent/config'; import BaseCheck, { ICheckMeta, ICheckType } from './checks/BaseCheck'; const COUNTER_START = 18278; const counterByPrefix: { [prefix: string]: number } = {}; export default class Probe { public id: string; public checkName: string; public...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/ProbeBucketGenerator.ts
analyze/lib/ProbeBucketGenerator.ts
import ProbeBucket from './ProbeBucket'; import Probe from './Probe'; import Layer from './Layer'; import { BaseMatcher } from './matchers'; import { BaseScorer } from './scorers'; import BaseCheck, { ICheckType } from './checks/BaseCheck'; import extractBrowserGroupings from './extractBrowserGroupings'; export defaul...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/Plugin.ts
analyze/lib/Plugin.ts
import * as Path from 'path'; import IBaseProfile from '@double-agent/collect/interfaces/IBaseProfile'; import ProbeBucketGenerator, { IProbeBucketMeta } from './ProbeBucketGenerator'; import ProbeBucket from './ProbeBucket'; import Layer from './Layer'; import BaseCheck, { CheckType, ICheckMeta, ICheckType } from './c...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/Layer.ts
analyze/lib/Layer.ts
import humanizeString from 'humanize-string'; import initialize from 'initialism'; import slugify from 'slugify'; import { IProbeBucketMeta } from './ProbeBucketGenerator'; export default class Layer { public id: string; public key: string; public name: string; public pluginId: string; constructor(id: strin...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/getAllPlugins.ts
analyze/lib/getAllPlugins.ts
import * as Fs from 'fs'; import * as Path from 'path'; import Plugin from './Plugin'; export const pluginsDir = Path.resolve(__dirname, '../plugins'); export default function getAllPlugins(print = false, filter?: string[]): Plugin[] { const plugins: Plugin[] = []; for (const pluginDirName of Fs.readdirSync(plug...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/ProbeBucket.ts
analyze/lib/ProbeBucket.ts
import { BaseScorer } from './scorers'; import { BaseMatcher } from './matchers'; import Probe from './Probe'; import Layer from './Layer'; import { ICheckType } from './checks/BaseCheck'; const COUNTER_START = 1000; const layerMetaMap: { [key: string]: { counter: number; pluginId: string } } = {}; export default cla...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/extractBrowserGroupings.ts
analyze/lib/extractBrowserGroupings.ts
import Config from '@double-agent/config'; import RealUserAgents from '@unblocked-web/real-user-agents'; export default function extractBrowserGroupings(userAgentIds: string[]): [string, string[]][] { const { idsByGroup, hasAllOf, hasAllExcept, hasNone } = extractGroupedIds(userAgentIds); const details: { [name: s...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/headers/Utils.ts
analyze/lib/headers/Utils.ts
export function isOfficialHeader(key: string): boolean { const keyLower = key.toLowerCase(); for (const prefix of officialHeaderPrefixes) { if (keyLower.startsWith(prefix)) return true; } return officialHeaderKeys.has(keyLower); } export function isOfficialDefaultValueKey(key: string): boolean { return o...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/headers/SharedCheckGenerator.ts
analyze/lib/headers/SharedCheckGenerator.ts
import IHeaderDataPage from '@double-agent/collect/interfaces/IHeaderDataPage'; import DefaultValueCheck from '../checks/DefaultValueCheck'; import StringCaseCheck from '../checks/StringCaseCheck'; import ArrayOrderIndexCheck from '../checks/ArrayOrderIndexCheck'; import { isOfficialDefaultValueKey, isOfficialHeader } ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/scorers/BaseScorer.ts
analyze/lib/scorers/BaseScorer.ts
export default abstract class BaseScorer {}
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/scorers/DiffGradient.ts
analyze/lib/scorers/DiffGradient.ts
import BaseScorer from './BaseScorer'; export default class DiffGradient extends BaseScorer {}
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/scorers/index.ts
analyze/lib/scorers/index.ts
import BaseScorer from './BaseScorer'; import DiffGradient from './DiffGradient'; export { BaseScorer, DiffGradient }; // export class ProgressiveGradient extends BaseScorer {} // export class Binary extends BaseScorer {}
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/matchers/PositiveMatcher.ts
analyze/lib/matchers/PositiveMatcher.ts
import BaseMatcher from './BaseMatcher'; export default class PositiveMatcher extends BaseMatcher {}
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/matchers/BaseMatcher.ts
analyze/lib/matchers/BaseMatcher.ts
export default abstract class BaseMatcher {}
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/matchers/index.ts
analyze/lib/matchers/index.ts
import BaseMatcher from './BaseMatcher'; import PositiveMatcher from './PositiveMatcher'; export { BaseMatcher, PositiveMatcher };
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/checks/StringCaseCheck.ts
analyze/lib/checks/StringCaseCheck.ts
import StringCheck from './StringCheck'; import { CheckType } from './BaseCheck'; export default class StringCaseCheck extends StringCheck { public override readonly prefix = 'STRC'; public override readonly type = CheckType.Individual; public override get signature(): string { return `${this.id}:${this.val...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/checks/BaseCheck.ts
analyze/lib/checks/BaseCheck.ts
export default abstract class BaseCheck { public name: string; public identity: ICheckIdentity; public meta: ICheckMeta; abstract prefix: string; abstract type: ICheckType; protected constructor(identity: ICheckIdentity, meta: ICheckMeta) { this.name = this.constructor.name; this.identity = identi...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/checks/NumberLengthCheck.ts
analyze/lib/checks/NumberLengthCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta } from './BaseCheck'; export default class NumberLengthCheck extends BaseCheck { public readonly prefix = 'NUML'; public readonly type = CheckType.Individual; private readonly length: number; constructor(identity: ICheckIdentity, meta: ICheckMeta, len...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/checks/StringCheck.ts
analyze/lib/checks/StringCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta } from './BaseCheck'; export default class StringCheck extends BaseCheck { public readonly prefix: string = 'STRG'; public readonly type = CheckType.Individual; protected readonly value: string; constructor(identity: ICheckIdentity, meta: ICheckMeta, ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/checks/PathCheck.ts
analyze/lib/checks/PathCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta } from './BaseCheck'; export default class PathCheck extends BaseCheck { public readonly prefix = 'PATH'; public readonly type = CheckType.Individual; public constructor(identity: ICheckIdentity, meta: ICheckMeta) { super(identity, meta); } publ...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/checks/StringArrayCheck.ts
analyze/lib/checks/StringArrayCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta } from './BaseCheck'; export default class StringArrayCheck extends BaseCheck { public readonly prefix: string = 'STRA'; public readonly type = CheckType.Individual; protected readonly value: string; constructor(identity: ICheckIdentity, meta: ICheckM...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/checks/DefaultValueCheck.ts
analyze/lib/checks/DefaultValueCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta } from './BaseCheck'; export default class DefaultValueCheck extends BaseCheck { public readonly prefix = 'DVAL'; public readonly type = CheckType.Individual; private readonly value: string[]; constructor(identity: ICheckIdentity, meta: ICheckMeta, va...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false
unblocked-web/double-agent
https://github.com/unblocked-web/double-agent/blob/1bf2568d0675917128236524270ea9568572b2a6/analyze/lib/checks/DecimalLengthCheck.ts
analyze/lib/checks/DecimalLengthCheck.ts
import BaseCheck, { CheckType, ICheckIdentity, ICheckMeta } from './BaseCheck'; export default class DecimalLengthCheck extends BaseCheck { public readonly prefix = 'DECL'; public readonly type = CheckType.Individual; private readonly length: number; constructor(identity: ICheckIdentity, meta: ICheckMeta, le...
typescript
MIT
1bf2568d0675917128236524270ea9568572b2a6
2026-01-05T05:00:16.677082Z
false