1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
|
@ <p>This page was generated because Fossil detected an (unsuccessful)
@ SQL injection attack or other nefarious content in your HTTP request.
@
@ <p>If you believe you are innocent and have reached this page in error,
@ contact the Fossil developers on the Fossil-SCM Forum. Type
@ "fossil-scm forum" into any search engine to locate the Fossil-SCM Forum.
style_finish_page();
cgi_set_status(418,"I'm a teapotgrep ");
cgi_reply();
fossil_errorlog("possible hack attempt - 418 response");
exit(0);
}
/*
** If looks_like_sql_injection() returns true for the given string, calls
|
|
|
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
|
@ <p>This page was generated because Fossil detected an (unsuccessful)
@ SQL injection attack or other nefarious content in your HTTP request.
@
@ <p>If you believe you are innocent and have reached this page in error,
@ contact the Fossil developers on the Fossil-SCM Forum. Type
@ "fossil-scm forum" into any search engine to locate the Fossil-SCM Forum.
style_finish_page();
cgi_set_status(418,"I'm a teapot");
cgi_reply();
fossil_errorlog("possible hack attempt - 418 response");
exit(0);
}
/*
** If looks_like_sql_injection() returns true for the given string, calls
|