lib/cms_scanner/target/platform/php.rb in cms_scanner-0.0.19 vs lib/cms_scanner/target/platform/php.rb in cms_scanner-0.0.20
- old
+ new
@@ -3,18 +3,38 @@
module Platform
# Some PHP specific implementation
module PHP
DEBUG_LOG_PATTERN = /\[[^\]]+\] PHP (?:Warning|Error|Notice):/
FPD_PATTERN = /Fatal error:.+? in (.+?) on/
+ ERROR_LOG_PATTERN = /PHP Fatal error/i
# @param [ String ] path
+ # @param [ Regexp ] pattern
# @param [ Hash ] params The request params
#
- # @return [ Boolean ] true if url(path) is a debug log, false otherwise
- def debug_log?(path = nil, params = {})
+ # @return [ Boolean ]
+ def log_file?(path, pattern, params = {})
+ # Only the first 700 bytes of the file are retrieved to avoid getting enture log file
+ # which can be huge (~ 2Go)
res = NS::Browser.get(url(path), params.merge(headers: { 'range' => 'bytes=0-700' }))
- res.body =~ DEBUG_LOG_PATTERN ? true : false
+ res.body =~ pattern ? true : false
+ end
+
+ # @param [ String ] path
+ # @param [ Hash ] params The request params
+ #
+ # @return [ Boolean ] true if url(path) is a debug log, false otherwise
+ def debug_log?(path, params = {})
+ log_file?(path, DEBUG_LOG_PATTERN, params)
+ end
+
+ # @param [ String ] path
+ # @param [ Hash ] params The request params
+ #
+ # @return [ Boolean ] Wether or not url(path) is an error log file
+ def error_log?(path, params = {})
+ log_file?(path, ERROR_LOG_PATTERN, params)
end
# @param [ String ] path
# @param [ Hash ] params The request params
#