CINXE.COM

安全检查

<!DOCTYPE html> <html lang="zh-CN"> <head> <title>安全检查</title> <meta charset=utf-8> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script type="text/javascript"> async function check_response() { const r = await fetch('/__verify', { body: '', method: 'POST', }) const j = await r.json() if(j.status == 'ok') { let params = new URL(document.location).searchParams let url = params.get('url') || '/' if(url.indexOf('/') !== 0) { url = '/' } location.replace(url) } else { location.reload() } } setTimeout(check_response, 1000) </script> </head> <body> <h1>安全检查</h1> <p>请稍候...</p> </body> </html>