This project is designed to help developers understand and mitigate code injection and XSS vulnerabilities. It includes a backend API and a frontend interface for testing various attack vectors in a controlled environment.
11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
export interface LoginRequest {
|
|
username: string;
|
|
password: string;
|
|
}
|
|
|
|
export interface LoginResponse {
|
|
success: boolean;
|
|
message?: string;
|
|
token?: string;
|
|
}
|