forked from OISF/suricata
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ticket: OISF#2886 Signed-off-by: mmaatuq <[email protected]>
- Loading branch information
Showing
4 changed files
with
120 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/* Copyright (C) 2024 Open Information Security Foundation | ||
* | ||
* You can copy, redistribute or modify this Program under the terms of | ||
* the GNU General Public License version 2 as published by the Free | ||
* Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* version 2 along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
/** | ||
* \file | ||
* | ||
* \author Mahmoud Maatuq <[email protected]> | ||
* | ||
*/ | ||
|
||
#include "app-layer.h" | ||
#include "app-layer-detect-proto.h" | ||
#include "rust-bindings.h" | ||
#include "app-layer-imap.h" | ||
|
||
static int IMAPRegisterPatternsForProtocolDetection(void) | ||
{ | ||
if (AppLayerProtoDetectPMRegisterPatternCI( | ||
IPPROTO_TCP, ALPROTO_IMAP, "* OK ", 5, 0, STREAM_TOCLIENT) < 0) { | ||
return -1; | ||
} | ||
|
||
if (AppLayerProtoDetectPMRegisterPatternCI( | ||
IPPROTO_TCP, ALPROTO_IMAP, "* NO ", 5, 0, STREAM_TOCLIENT) < 0) { | ||
return -1; | ||
} | ||
|
||
if (AppLayerProtoDetectPMRegisterPatternCI( | ||
IPPROTO_TCP, ALPROTO_IMAP, "* BAD ", 6, 0, STREAM_TOCLIENT) < 0) { | ||
return -1; | ||
} | ||
|
||
if (AppLayerProtoDetectPMRegisterPatternCI( | ||
IPPROTO_TCP, ALPROTO_IMAP, "* LIST ", 7, 0, STREAM_TOCLIENT) < 0) { | ||
return -1; | ||
} | ||
|
||
if (AppLayerProtoDetectPMRegisterPatternCI( | ||
IPPROTO_TCP, ALPROTO_IMAP, "* ESEARCH ", 10, 0, STREAM_TOCLIENT) < 0) { | ||
return -1; | ||
} | ||
|
||
if (AppLayerProtoDetectPMRegisterPatternCI( | ||
IPPROTO_TCP, ALPROTO_IMAP, "* STATUS ", 9, 0, STREAM_TOCLIENT) < 0) { | ||
return -1; | ||
} | ||
|
||
if (AppLayerProtoDetectPMRegisterPatternCI( | ||
IPPROTO_TCP, ALPROTO_IMAP, "* FLAGS ", 8, 0, STREAM_TOCLIENT) < 0) { | ||
return -1; | ||
} | ||
|
||
if (AppLayerProtoDetectPMRegisterPatternCI( | ||
IPPROTO_TCP, ALPROTO_IMAP, "DONE", 4, 0, STREAM_TOSERVER) < 0) { | ||
return -1; | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
void RegisterIMAPParsers(void) | ||
{ | ||
const char *proto_name = "imap"; | ||
|
||
if (AppLayerProtoDetectConfProtoDetectionEnabled("tcp", proto_name)) { | ||
SCLogDebug("IMAP protocol detection is enabled."); | ||
AppLayerProtoDetectRegisterProtocol(ALPROTO_IMAP, proto_name); | ||
if (IMAPRegisterPatternsForProtocolDetection() < 0) | ||
return; | ||
} else { | ||
SCLogDebug("Protocol detector and parser disabled for IMAP."); | ||
return; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* Copyright (C) 2024 Open Information Security Foundation | ||
* | ||
* You can copy, redistribute or modify this Program under the terms of | ||
* the GNU General Public License version 2 as published by the Free | ||
* Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* version 2 along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
/** | ||
* \file | ||
* | ||
* \author Mahmoud Maatuq <[email protected]> | ||
* | ||
*/ | ||
|
||
#ifndef __APP_LAYER_IMAP_H__ | ||
#define __APP_LAYER_IMAP_H__ | ||
void RegisterIMAPParsers(void); | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters