Skip to content

Instantly share code, notes, and snippets.

@LucaBlackDragon
LucaBlackDragon / log.txt
Created November 22, 2023 14:02
OWASP Dependency Check Error Log
2023-11-22T13:46:35.1666113Z ##[section]Starting: OWASP Dependency Check
2023-11-22T13:46:35.2106159Z ==============================================================================
2023-11-22T13:46:35.2107028Z Task : OWASP Dependency Check
2023-11-22T13:46:35.2107663Z Description : Dependency Check is a Software Composition Analysis (SCA) tool that attempts to detect publicly disclosed vulnerabilities contained within a project's dependencies.
2023-11-22T13:46:35.2108232Z Version : 6.1.1
2023-11-22T13:46:35.2108469Z Author : Dependency Check
2023-11-22T13:46:35.2108880Z Help : [More Information](https://jeremylong.github.io/DependencyCheck/index.html)
2023-11-22T13:46:35.2109367Z ==============================================================================
2023-11-22T13:46:35.7081429Z Starting Dependency Check...
2023-11-22T13:46:35.7157812Z Setting report directory to C:\agent\_work\18\TestResults\dependency-check
@LucaBlackDragon
LucaBlackDragon / HonukaiPlus.psm1
Last active July 24, 2023 21:07
Configurazione per il nuovo Windows Terminal di Microsoft (https://github.com/microsoft/terminal)
# Honukai variation for oh-my-posh
# https://github.com/JanDeDobbeleer/oh-my-posh
#requires -Version 2 -Modules posh-git
function Write-Theme {
param(
[bool]
$lastCommandFailed,
[string]
$with
@LucaBlackDragon
LucaBlackDragon / alias.sh
Created March 29, 2019 07:46
Oh git, tell me who I am!
# Sets `git whoami` alias
git config --global alias.whoami "!git config --get-regexp --local user || git config --get-regexp --global user"
@LucaBlackDragon
LucaBlackDragon / electron-protocol-registration.js
Last active June 11, 2019 20:52
Start Electron application through registered protocol/app schema (e.g. "my-app://some/thing?param=2")
import { app } from 'electron';
/**
* Startup protocol/app schema registration
*
* @param {string} protocol Startup protocol/app schema to register ("://" must not be included)
*
* process.argv[1] will contain the full protocol/app schema through which the app has been started;
* data can be sent to renderer windows through webContents.send() and ipcRenderer or other means.
*