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.
Realtime dashboard for nginx and other clf based webservers.
It was designed to debug and monitor nginx instances but it should work with anything that features a clf log.
npm install -g dashode2
dashode
SCENARIO
- Scenario type. ("local", "server" or "collector")HTTP_PORT
- Dashboard server PORT. (8081)COLLECTOR_PORT
- Collector server PORT. (8080)SERVER
- Collector server. ("http://127.0.0.1:8080")LOG_PATH
- Log path. ("/var/log/nginx/access.log")COLLECTOR_PORT
(defaults to 8080)HTTP_PORT
(defaults to 8081)LOG_PATH
(defaults to "/var/log/nginx/access.log") and reporting to collector server at SERVER
(defaults to "http://127.0.0.1:8080")COLLECTOR_PORT
(defaults to 8080)HTTP_PORT
(defaults to 8081)LOG_PATH
(defaults to "/var/log/nginx/access.log") and reporting to collector server at SERVER
(defaults to "http://127.0.0.1:8080")log_format main '$remote_addr - $remote_user - [$time_local] "$request" ' '$status $body_bytes_sent "$host" ' '"$http_user_agent" "$http_x_forwarded_for" "$http_referer" ' '$upstream_cache_status $request_time $upstream_response_time';
USERNAME
and PASSWORD
.server {
listen 1337;
server_name ~^(.+)$;
location / {
auth_basic "Restricted";
auth_basic_user_file /var/nginx/passwd;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8081/;
}
}
Pedro Dias - @pedromdias
Licensed under the Apache license, version 2.0 (the "license"); You may not use this file except in compliance with the license. You may obtain a copy of the license at:
http://www.apache.org/licenses/LICENSE-2.0.html
Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "as is" basis, without warranties or conditions of any kind, either express or implied. See the license for the specific language governing permissions and limitations under the license.
FAQs
Dashode2
The npm package dashode2 receives a total of 1 weekly downloads. As such, dashode2 popularity was classified as not popular.
We found that dashode2 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.