mirror of
https://github.com/Lissy93/web-check.git
synced 2024-11-07 17:05:53 +01:00
27 lines
870 B
JavaScript
27 lines
870 B
JavaScript
import axios from 'axios';
|
|
import middleware from './_common/middleware.js';
|
|
|
|
const httpsSecHandler = async (url) => {
|
|
const fullUrl = url.startsWith('http') ? url : `http://${url}`;
|
|
|
|
try {
|
|
const response = await axios.get(fullUrl);
|
|
const headers = response.headers;
|
|
return {
|
|
strictTransportPolicy: headers['strict-transport-security'] ? true : false,
|
|
xFrameOptions: headers['x-frame-options'] ? true : false,
|
|
xContentTypeOptions: headers['x-content-type-options'] ? true : false,
|
|
xXSSProtection: headers['x-xss-protection'] ? true : false,
|
|
contentSecurityPolicy: headers['content-security-policy'] ? true : false,
|
|
}
|
|
} catch (error) {
|
|
return {
|
|
statusCode: 500,
|
|
body: JSON.stringify({ error: error.message }),
|
|
};
|
|
}
|
|
};
|
|
|
|
export const handler = middleware(httpsSecHandler);
|
|
export default handler;
|