Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
fluent-plugin-ua-parser
Advanced tools
Fluentd filter plugin to parse user-agent.
fluent-plugin-ua-parser | fluentd | ruby |
---|---|---|
>= 1.2.0 | >= v0.14.0 | >= 2.1 |
< 1.2.0 | >= v0.12.0 | >= 1.9 |
# for fluentd
$ gem install fluent-plugin-ua-parser
# for td-agent2
$ sudo td-agent-gem install fluent-plugin-ua-parser
<filter access.nginx.**>
@type ua_parser
</filter>
Assuming following inputs are coming:
access.nginx: {
"remote_addr":"10.20.30.40",
"scheme":"http", "method":"GET", "host":"example.com",
"path":"/", "query":"-", "req_bytes":200, "referer":"-",
"status":200, "res_bytes":800, "res_body_bytes":600, "taken_time":0.001,
"user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36"
}
then output bocomes as belows:
access.nginx: {
"remote_addr":"10.20.30.40",
"scheme":"http", "method":"GET", "host":"example.com",
"path":"/", "query":"-", "req_bytes":200, "referer":"-",
"status":200, "res_bytes":800, "res_body_bytes":600, "taken_time":0.001,
"user_agent":"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.71 Safari/537.36",
"ua":{
"browser":{
"family":"Chrome",
"version":"46.0.2490",
"major_version":46
},
"os":{
"family":"Windows 7",
"version":""
},
"device":"Other"
}
}
<filter access.apache.**>
@type ua_parser
key_name ua_string
delete_key yes
out_key ua
patterns_path /etc/td-agent/data/regexes.yaml
</filter>
Assuming following inputs are coming:
access.apache: {
"remote_addr":"10.20.30.40",
"scheme":"http", "method":"GET", "host":"example.com",
"path":"/", "query":"-", "req_bytes":200, "referer":"-",
"status":200, "res_bytes":800, "res_body_bytes":600, "taken_time":0.001,
"ua_string":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
}
then output bocomes as belows:
access.apache: {
"remote_addr":"10.20.30.40",
"scheme":"http", "method":"GET", "host":"example.com",
"path":"/", "query":"-", "req_bytes":200, "referer":"-",
"status":200, "res_bytes":800, "res_body_bytes":600, "taken_time":0.001,
"ua":{
"browser":{
"family":"Safari",
"version":"9.0.1",
"major_version":9
},
"os":{
"family":"Mac OS X",
"version":"10.11.1",
"major_version":10
},
"device":"Other"
}
}
<filter access.apache.**>
@type ua_parser
key_name ua_string
flatten
</filter>
Assuming following inputs are coming:
access.apache: {
"ua_string":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7"
}
then output bocomes as belows:
access.apache: {
"ua_string":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.7 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.7",
"ua_browser_family":"Safari",
"ua_browser_version":"9.0.1",
"ua_browser_major_version":9,
"ua_os_family":"Mac OS X",
"ua_os_version":"10.11.1",
"ua_os_major_version":10,
"ua_device":"Other"
}
key_name field_key
Target key name. default user_agent.
delete_key bool
Delete input key. default false.
out_key string
Output prefix key name. default ua.
patterns_path file_path
Patterns file(regexes.yaml) path. Get from uap-core
flatten bool join hashed data by '_'. default false.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Copyright (c) 2015 Yuri Umezaki
This plugin use ua-parser to do user agent detection.
FAQs
Unknown package
We found that fluent-plugin-ua-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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.