14 lines
312 B
PHP
Executable File
14 lines
312 B
PHP
Executable File
<?php
|
|
namespace AIOWPS\Firewall;
|
|
|
|
/**
|
|
* Our list of families
|
|
*/
|
|
return array(
|
|
array('name' => '6G', 'priority' => 10),
|
|
array('name' => 'Blacklist', 'priority' => 1),
|
|
array('name' => 'Bruteforce', 'priority' => 0),
|
|
array('name' => 'General', 'priority' => 20),
|
|
array('name' => 'Bots', 'priority' => 2),
|
|
);
|