Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
fluent-plugin-tcp_socket_client
Advanced tools
A fluentd input plugin for read TCP socket.
Add this line to your application's Gemfile:
gem 'fluent-plugin-tcp_socket_client'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fluent-plugin-tcp_socket_client --no-document
Read events from TCP sockets.
<source>
@type tcp_socket_client
@log_level debug
server localhost
port 3000
tag prueba
interval 1s
format text
</source>
Interval for retry connect to socket.
interval 5s
Socket server name or IP address.
server localhost
Socket port.
port 3000
Format of the message (json|text|ltsv)
format json
Batch size for emit messages.
emit_messages 10
<system>
workers 1
</system>
<source>
@type tcp_socket_client
server localhost
port 3000
tag prueba
interval 1s
format json
</source>
<match prueba>
@type stdout
</match>
In another terminal run:
require 'socket'
puts "Starting the Server..................."
server = TCPServer.open(3000) # Server would listen on port 3000
loop{ # Servers run forever
client_connection = server.accept # Establish client connect connection
client_connection.puts('{"key":"val"}')
client_connection.close # Disconnect from the client
}
FAQs
Unknown package
We found that fluent-plugin-tcp_socket_client 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.