question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Docs] Velociraptor Installation Guide

See original GitHub issue

Is your feature request related to a problem? Please describe. Velociraptor would be very nice to teach how to install as it allows them to just do vr start instead of typing out the entire massive flags list to run the code.

Describe the solution you’d like A simple guide showing how to install velociraptor for you.

Describe alternatives you’ve considered Denon???

Additional context N.A

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:5

github_iconTop GitHub Comments

1reaction
ghostcommented, Nov 26, 2020

Is it relevant to the issue?

Just pointing out obvious: there are only more tools.

Appreciate the suggestion, but closing this since a guide for third-party tools would be irrelevant and off-topic to Discordeno.

1reaction
ghostcommented, Nov 26, 2020

https://github.com/denosaurs/denon

import { DenonConfig } from "https://deno.land/x/denon@2.4.5/mod.ts";
import { config as configureEnv } from "https://deno.land/x/dotenv@v1.0.1/mod.ts";

/**
 * 1. Create .env.example with the BOT_TOKEN key empty.
 * 2. Copy it to .env and insert token there.
 * 3. Add ".env" line to .gitignore
 * 4. Pass token to createClient with:
      ...
      token: Deno.env.get("BOT_TOKEN")!
      ...
 */
const env = configureEnv({
  safe: true,
});

const config: DenonConfig = {
  env,
  lock: "lock.json",
  log: env.LOG_LEVEL,
  scripts: {
    start: {
      cmd: "src/bot.ts",
      desc: "Start the bot",
      allow: {
        env: true,
        net: true,
      },
    },
    lock: {
      cmd: "deno cache --lock-write src/bot.ts",
      desc: "Lock dependencies for integrity checking",
    },
  },
};

export default config;
$ denon start

Is it relevant to the issue?

Read more comments on GitHub >

github_iconTop Results From Across the Web

Deploying Clients :: Velociraptor - Digging deeper!
Official release MSI​​ The recommended way to install Velociraptor as a client on Windows is via the release MSI on the Github releases...
Read more >
Installation | Velociraptor
In order to install Velociraptor, you'll need a recent version of Deno. #Installing from deno.land. $ deno install -qAn vr https://deno.land/x/velociraptor@ ...
Read more >
Velocidex/velociraptor: Digging Deeper.... - GitHub
Start the GUI as above ( velociraptor gui ). Select the Server Artifacts sidebar menu, then Build Collector . Select and configure the...
Read more >
How to Install and Configure Velociraptor on Ubuntu 20.04
Step 1 – Create Atlantic.Net Cloud Server · Step 2 – Install and Configure Velociraptor · Step 3 – Create a Systemd Service...
Read more >
Install and setup Velociraptor on Ubuntu 20.04 - kifarunix.com
Download Linux binary Installer · Make the Velociraptor Binary executable · Generate Velociraptor Server Config File · Create Additional GUI · Start ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found