Skip to content

Commit

Permalink
Extras module update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maikuolan committed Oct 30, 2024
1 parent 2b19a8f commit 5462b72
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions 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.05).
* This file: Optional security extras module (last modified: 2024.10.30).
*
* False positive risk (an approximate, rough estimate only): « [ ]Low [x]Medium [ ]High »
*/
Expand Down Expand Up @@ -140,9 +140,12 @@
} // 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')) {
if (
$Trigger(preg_match('~/dup-installer/main\.installer\.php[57]?(?:$|[/?])~', $LCNrURI), $Exploit = 'CVE-2022-2551') || // 2024.09.05
$Trigger(preg_match('~/Telerik\.Web\.UI\.WebResource\.axd(?:$|[/?])~i', $LCNrURI), $Exploit = 'CVE-2019-18935') // 2024.10.30
) {
$CIDRAM['Reporter']->report([15, 21], ['Caught probing for ' . $Exploit . ' vulnerability.'], $CIDRAM['BlockInfo']['IPAddr']);
} // 2024.09.05
}

/** Probing for webshells/backdoors. */
if ($Trigger(preg_match(
Expand Down
4 changes: 2 additions & 2 deletions modules/modules.dat
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ module_cookies.php:
module_extras.php:
Name: "Optional security extras module"
False Positive Risk: "Medium"
Version: "2024.248.0"
Version: "2024.303.0"
Dependencies:
PHP: "^5.4|^7|^8"
CIDRAM Core: "^1.13.1|^2.0.1"
Expand All @@ -254,7 +254,7 @@ module_extras.php:
- "module_extras.php"
- "module_extras.yaml"
Checksum:
- "9646163293a81a8a7008a4ee48b51edf8ecd4b51b5ccccc4f145efa0379aa0b9:28453"
- "11d7c968fc19f82aebd98f30d708793181f4e6450d7c0d039f32413a298c6f45:28616"
- "7b891d1fa4b1c52c410220bc758e8cb7064bd6040430fb149a5b60e9ae2e0838:890"
Used with: "modules"
Reannotate: "modules.dat"
Expand Down

0 comments on commit 5462b72

Please sign in to comment.