Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
= Getting Started
This is a library designed to easily parse and access standard Apache log files.
To get started, require the library:
require 'apache_log_parser'
From there, you would use it as follows:
ApacheLogParser.parse(logfile, rules) do |parsed| parsed[:ip] #=> "12.12.12.12" parsed[:date] #=> "21/Jan/2010" parsed[:day] #=> 21 parsed[:month] #=> "Jan" parsed[:year] #=> 2010 parsed[:hour] #=> 14 parsed[:zone] #=> "-0800" parsed[:method] #=> "GET" parsed[:http_ver] #=> "1.1" parsed[:resource] #=> "/some/page.php" parsed[:status] #=> 200 parsed[:size] #=> "7047" parsed[:referer] #=> "-" parsed[:user_agent] #=> "Mozilla/5.0 (Macintosh; U; Intel..." end
The logfile parameter is simply the path to the logfile in question and the rules parameter is a hash of rules to filter the logfile with.
= Using Rules
To use rules, simply build a hash with options you want to filter with as follows:
rules = {} rules[:hour] = 11..13 # only accept hits between 11:00 and 13:59 hours rules[:day] = 21 # only accept hits where the day is 21 rules[:date] = "12/Jan/2010" # only accept hits on Jan 12, 2010 rules[:method] = "GET" # only accept hits where the request method is GET rules[:status] = 404 # only accept hits where the status response is 404
Rules are inclusive, so only hits where ALL rules are met will be kept. From there, you would simply pass the rules hash into the parse method as shown above. The logfile is read one line at a time, so the memory footprint is quite small and can easily handle large logfiles (sizes as large as 6GB have been tested). The larger the file, the longer the parse process will take though.
== Copyright
Copyright (c) 2010 Joel Watson. See LICENSE for details.
FAQs
Unknown package
We found that apache_log_parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.