Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
next-auth /
jwt /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.87
KB
-rw-rw-r--
index.d.ts.map
1.04
KB
-rw-rw-r--
index.js
3.36
KB
-rw-rw-r--
types.d.ts
2.59
KB
-rw-rw-r--
types.d.ts.map
1.1
KB
-rw-rw-r--
types.js
79
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
import type { GetServerSidePropsContext, NextApiRequest } from "next"; import type { NextRequest } from "next/server"; import type { JWT, JWTDecodeParams, JWTEncodeParams, JWTOptions } from "./types"; import type { LoggerInstance } from ".."; export * from "./types"; /** Issues a JWT. By default, the JWT is encrypted using "A256GCM". */ export declare function encode(params: JWTEncodeParams): Promise<string>; /** Decodes a NextAuth.js issued JWT. */ export declare function decode(params: JWTDecodeParams): Promise<JWT | null>; export interface GetTokenParams<R extends boolean = false> { /** The request containing the JWT either in the cookies or in the `Authorization` header. */ req: GetServerSidePropsContext["req"] | NextRequest | NextApiRequest; /** * Use secure prefix for cookie name, unless URL in `NEXTAUTH_URL` is http:// * or not set (e.g. development or test instance) case use unprefixed name */ secureCookie?: boolean; /** If the JWT is in the cookie, what name `getToken()` should look for. */ cookieName?: string; /** * `getToken()` will return the raw JWT if this is set to `true` * @default false */ raw?: R; /** * The same `secret` used in the `NextAuth` configuration. * Defaults to the `NEXTAUTH_SECRET` environment variable. */ secret?: string; decode?: JWTOptions["decode"]; logger?: LoggerInstance | Console; } /** * Takes a NextAuth.js request (`req`) and returns either the NextAuth.js issued JWT's payload, * or the raw JWT string. We look for the JWT in the either the cookies, or the `Authorization` header. * [Documentation](https://next-auth.js.org/tutorials/securing-pages-and-api-routes#using-gettoken) */ export declare function getToken<R extends boolean = false>(params: GetTokenParams<R>): Promise<R extends true ? string : JWT | null>; //# sourceMappingURL=index.d.ts.map
Close