1: <?php
2:
3: /**
4: * Class protector_f5attack_overrun_message
5: */
6: class Protector_f5attack_overrun_message extends ProtectorFilterAbstract
7: {
8: public function execute()
9: {
10: // header( 'Location: http://google.com/' ) ; // redirect somewhere
11: echo 'You have reloaded a page too many times'; // write any message as you like
12: exit;
13: }
14: }
15: