- Copy your binaries (
.deb
package) to/opt/CrowdStrike
. - Add both
.nix
files from this page to your config. - Write your companies ID to
/etc/falcon-sensor.env
in the format ofCOMPANYID="[id]"
. - Apply nixos update.
- Check sensor status using
systemctl status falcon-sensor
(should be running if the nixos update succeeded)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@dac2bcf93045:~# hashcat -I | |
hashcat (v6.2.6) starting in backend information mode | |
CUDA Info: | |
========== | |
CUDA.Version.: 12.2 | |
Backend Device ID #1 (Alias: #9) | |
Name...........: NVIDIA GeForce RTX 4090 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local Path = require("plenary.path") | |
local pickers = require("telescope.pickers") | |
local finders = require("telescope.finders") | |
local conf = require("telescope.config").values | |
local action_state = require("telescope.actions.state") | |
local function extract_makefile_targets() | |
local targets = {} | |
local makefile_path = Path:new("Makefile") |