Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
{
"criteria": {
"fact_check_qa": {
"status": "recommended",
"description": "The fact check questions and answers.",
"value": [
{
"question": "What is the name of the suspicious process?",
"options": [
This file has been truncated, but you can view the full file.
{
"criteria": {
"fact_check_qa": {
"status": "recommended",
"description": "The fact check questions and answers.",
"value": [
{
"question": "What is the name of the suspicious process?",
"options": [
This file has been truncated, but you can view the full file.
{
"criteria": {
"fact_check_qa": {
"status": "recommended",
"description": "The fact check questions and answers.",
"value": [
{
"question": "What is the name of the suspicious process?",
"options": [
This file has been truncated, but you can view the full file.
{
"criteria": {
"fact_check_qa": {
"status": "recommended",
"description": "The fact check questions and answers.",
"value": [
{
"question": "What is the name of the suspicious process?",
"options": [
This file has been truncated, but you can view the full file.
{
"criteria": {
"fact_check_qa": {
"status": "recommended",
"description": "The fact check questions and answers.",
"value": [
{
"question": "What is the name of the suspicious process?",
"options": [
https://192.168.191.31:8006/
$i="$env:USERPROFILE\Desktop\EricZimmermanTools"; (New-Object Net.WebClient).DownloadFile('https://f001.backblazeb2.com/file/EricZimmermanTools/Get-ZimmermanTools.zip',"${i}.zip"); Expand-Archive "$i.zip" -DestinationPath $i; Remove-Item "$i.zip"; PowerShell "$i\Get-ZimmermanTools.ps1" -Dest "$i\Tools"
& "$i\Tools\net6\PECmd.exe" -d "C:\Windows\Prefetch" --json "$i\Outputs" --csv "$i\Outputs"
& "$i\Tools\net6\TimelineExplorer\TimelineExplorer.exe"
& "$i\Tools\net6\EvtxECmd\EvtxECmd.exe" -d "C:\Windows\System32\winevt\Logs" --json "$i\Outputs" --csv "$i\Outputs"
async function executeCommands(ssh, commands) {
let commandOutput = ''; // Collect command output
let currentIndex = 0; // Track the current command index
let outputs = []
// Function to write the next command if available
const writeNextCommand = () => {
if (currentIndex < commands.length) {
console.log('Executing command:', commands[currentIndex], 'of commands', commands);
PS E:\red_team_attack_lab-main> vagrant up
Bringing machine 'dc01' up with 'virtualbox' provider...
Bringing machine 'win2022-1' up with 'virtualbox' provider...
Bringing machine 'win2019-adcs' up with 'virtualbox' provider...
Bringing machine 'win2019-1' up with 'virtualbox' provider...
Bringing machine 'win10-1' up with 'virtualbox' provider...
Bringing machine 'win10-2' up with 'virtualbox' provider...
Bringing machine 'win11-1' up with 'virtualbox' provider...
Bringing machine 'win10-dev' up with 'virtualbox' provider...
Bringing machine 'win7-1' up with 'virtualbox' provider...
@jt0dd
jt0dd / how to install elasticsearch with kibana.md
Created March 31, 2022 01:17 — forked from ionutale/how to install elasticsearch with kibana.md
a small guide to install elasticsearch stack on WSL 2 docker engine

###how to install elasticsearch with kibana

#if you use the "docker WSL 2 enngine" then run the 3 command bellow, 1 at the time:

sysctl -w vm.max_map_count=262144 wsl -d docker-desktop exit

@jt0dd
jt0dd / example.js
Last active October 11, 2021 18:49
tutorial
// my project is built with a framework I built called Manifest.JS, almost every file looks just like this:
// creates a webpage element, the first two arguments are all you need to understand to complete this work:
const elem = new Element('div', settingsObj)
elem.appendTo(document.body)
// to decide what happens in the element, settingsObj looks like this and every property is optional (empty settings would create an empty element):
{
name: 'hi', // helps debugging, just a name
traits: {