Skip to content

Commit

Permalink
Changed type identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Stunnenberg committed Jan 25, 2016
1 parent 7ce0afc commit 3a945a6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "abuseio/parser-projecthoneypot",
"description": "Parser addon for handling notifications from projecthoneypot",
"version": "1.2.0",
"version": "1.3.0",
"keywords": ["laravel", "abuseio", "parser", "projecthoneypot"],
"homepage": "http://abuse.io",
"type": "library",
Expand Down
10 changes: 5 additions & 5 deletions config/Projecthoneypot.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,39 +22,39 @@
'feeds' => [
'Harvesting' => [
'class' => 'HARVESTING',
'type' => 'Abuse',
'type' => 'ABUSE',
'enabled' => true,
'fields' => [
'ip',
],
],
'Email' => [
'class' => 'SPAM',
'type' => 'Abuse',
'type' => 'ABUSE',
'enabled' => true,
'fields' => [
'ip',
],
],
'Dictionary' => [
'class' => 'DICTIONARY_ATTACK',
'type' => 'Abuse',
'type' => 'ABUSE',
'enabled' => true,
'fields' => [
'ip',
],
],
'Comment' => [
'class' => 'COMMENT_SPAM',
'type' => 'Abuse',
'type' => 'ABUSE',
'enabled' => true,
'fields' => [
'ip',
],
],
'Potentially' => [
'class' => 'HARVESTING',
'type' => 'Abuse',
'type' => 'ABUSE',
'enabled' => true,
'fields' => [
'ip',
Expand Down

0 comments on commit 3a945a6

Please sign in to comment.