24 lines
767 B
TypeScript
24 lines
767 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export async function GET() {
|
|
const content = `Contact: mailto:info@denizbektas.com.tr
|
|
Contact: https://infosec.exchange/@denizbektas
|
|
Encryption: https://denizbektas.com.tr/public.pgp
|
|
Preferred-Languages: tr, en
|
|
Canonical: https://denizbektas.com.tr/security.txt
|
|
|
|
# Responsible Disclosure Policy
|
|
# Please report security vulnerabilities to info@denizbektas.com.tr
|
|
# Use PGP encryption for sensitive reports
|
|
# We will acknowledge receipt within 48 hours
|
|
# We do not offer a bug bounty program at this time
|
|
# Please do not disclose publicly before we have addressed the issue
|
|
|
|
Expires: 2027-04-03T00:00:00.000Z
|
|
`;
|
|
|
|
return new NextResponse(content, {
|
|
headers: { "Content-Type": "text/plain; charset=utf-8" },
|
|
});
|
|
}
|