Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.69
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
test /
dist /
modules /
auth /
Delete
Unzip
Name
Size
Permission
Date
Action
dto
[ DIR ]
drwxrwxrwx
2025-03-22 07:46
entities
[ DIR ]
drwxrwxrwx
2025-03-22 07:46
auth.controller.d.ts
542
B
-rw-rw-rw-
2025-03-22 07:46
auth.controller.js
4.6
KB
-rw-rw-rw-
2025-03-22 07:46
auth.controller.js.map
2.34
KB
-rw-rw-rw-
2025-03-22 07:46
auth.module.d.ts
36
B
-rw-rw-rw-
2025-03-22 07:46
auth.module.js
2.11
KB
-rw-rw-rw-
2025-03-22 07:46
auth.module.js.map
817
B
-rw-rw-rw-
2025-03-22 07:46
auth.service.d.ts
848
B
-rw-rw-rw-
2025-03-22 07:46
auth.service.js
4.42
KB
-rw-rw-rw-
2025-03-22 07:46
auth.service.js.map
2.66
KB
-rw-rw-rw-
2025-03-22 07:46
jwt-auth.guard.d.ts
349
B
-rw-rw-rw-
2025-03-22 07:46
jwt-auth.guard.js
2
KB
-rw-rw-rw-
2025-03-22 07:46
jwt-auth.guard.js.map
968
B
-rw-rw-rw-
2025-03-22 07:46
jwt.strategy.d.ts
926
B
-rw-rw-rw-
2025-03-22 07:46
jwt.strategy.js
3.24
KB
-rw-rw-rw-
2025-03-22 07:46
jwt.strategy.js.map
1.65
KB
-rw-rw-rw-
2025-03-22 07:46
Save
Rename
import { Strategy } from 'passport-jwt'; import { ConfigService } from '@nestjs/config'; import { Repository } from 'typeorm'; import { TokenBlacklist } from '../auth/entities/token-blacklist.entity'; interface JwtPayload { sub: number; email: string; iat?: number; exp?: number; } declare const JwtStrategy_base: new (...args: [opt: import("passport-jwt").StrategyOptionsWithRequest] | [opt: import("passport-jwt").StrategyOptionsWithoutRequest]) => Strategy & { validate(...args: any[]): unknown; }; export declare class JwtStrategy extends JwtStrategy_base { private configService; private tokenBlacklistRepository; private readonly logger; constructor(configService: ConfigService, tokenBlacklistRepository: Repository<TokenBlacklist>); validate(payload: JwtPayload, done: (error: any, user: any) => void): Promise<{ sub: number; email: string; }>; } export {};