deniz bektaş
This commit is contained in:
23
app/security.txt/route.ts
Normal file
23
app/security.txt/route.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
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" },
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user