Skip to content

Commit

Permalink
Extras module update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikuolan committed Sep 5, 2024
1 parent 45a25c4 commit b9744a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion modules/module_extras.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* License: GNU/GPLv2
* @see LICENSE.txt
*
* This file: Optional security extras module (last modified: 2024.09.03).
* This file: Optional security extras module (last modified: 2024.09.05).
*
* False positive risk (an approximate, rough estimate only): « [ ]Low [x]Medium [ ]High »
*/
Expand Down Expand Up @@ -139,6 +139,11 @@
$CIDRAM['Reporter']->report([15, 20, 21], ['Caught probing for webshells/backdoors. Host might be compromised.'], $CIDRAM['BlockInfo']['IPAddr']);
} // 2023.08.18 mod 2024.08.04

/** Probing for vulnerable plugins or webapps. */
if ($Trigger(preg_match('~/dup-installer/main\.installer\.php[57]?(?:$|[/?])~', $LCNrURI), $Exploit = 'CVE-2022-2551')) {
$CIDRAM['Reporter']->report([15, 21], ['Caught probing for ' . $Exploit . ' vulnerability.'], $CIDRAM['BlockInfo']['IPAddr']);
} // 2024.09.05

/** Probing for webshells/backdoors. */
if ($Trigger(preg_match(
'~(?:^|[/?])(?:[1-9cefimnptuwx]{27}\.jsp$)~',
Expand Down
4 changes: 2 additions & 2 deletions modules/modules.dat
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ module_cookies.php:
module_extras.php:
Name: "Optional security extras module"
False Positive Risk: "Medium"
Version: "2024.246.0"
Version: "2024.248.0"
Dependencies:
PHP: "^5.4|^7|^8"
CIDRAM Core: "^1.13.1|^2.0.1"
Expand All @@ -248,7 +248,7 @@ module_extras.php:
- "module_extras.php"
- "module_extras.yaml"
Checksum:
- "ffbe6381d42454d9553c80b3407d3bd0101f2aaa33637ce2e1c200b1e16528d0:28101"
- "9646163293a81a8a7008a4ee48b51edf8ecd4b51b5ccccc4f145efa0379aa0b9:28453"
- "7b891d1fa4b1c52c410220bc758e8cb7064bd6040430fb149a5b60e9ae2e0838:890"
Used with: "modules"
Reannotate: "modules.dat"
Expand Down

0 comments on commit b9744a5

Please sign in to comment.