With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| <# | |
| .SYNOPSIS | |
| Install Chocolatey packages. | |
| .DESCRIPTION | |
| This script will install Chocolatey packages and provide notifications to the user after succesful installation. | |
| .NOTES | |
| Author: Peter van der Woude | |
| Contact: pvanderwoude@hotmail.com | |
| Date published: 17-04-2019 |
| <?php | |
| /* | |
| * Display LibreNMS interface graphs in Netbox | |
| * | |
| * 1. Upload this file into the plugin folder of LibreNMS. | |
| * 2. Generate an API key in LibreNMS and insert the connection details below. | |
| * 3. Create graphs in Netbox using the following URL scheme. | |
| * https://nms.level66.network/plugins/netbox-graph.php?device={{ obj.device.name }}&interface={{ obj.name }}&duration=8h | |
| * 4. Save time in your daily work! | |
| * |
| #Requires -Version 7 | |
| # Version 1.2.13 | |
| # check if newer version | |
| $gistUrl = "https://api.github.com/gists/a208d2bd924691bae7ec7904cab0bd8e" | |
| $latestVersionFile = [System.IO.Path]::Combine("$HOME",'.latest_profile_version') | |
| $versionRegEx = "# Version (?<version>\d+\.\d+\.\d+)" | |
| if ([System.IO.File]::Exists($latestVersionFile)) { |
| <# | |
| .SYNOPSIS | |
| Install Chrome and create the registry key to trigger installation of Chrome extension. | |
| .DESCRIPTION | |
| This script installs Google Chrome by using Chocolatey and creates the registry key that will trigger the installation of the Chrome extension. | |
| This script is created for usage with Microsoft Intune, which doesn't support parameters yet. | |
| .NOTES | |
| Author: Peter van der Woude | |
| Contact: pvanderwoude@hotmail.com | |
| Date published: 02-07-2018 |
| function Get-InstalledSoftware { | |
| <# | |
| .SYNOPSIS | |
| Get all installed from the Uninstall keys in the registry. | |
| .DESCRIPTION | |
| Read a list of installed software from each Uninstall key. | |
| This function provides an alternative to using Win32_Product. | |
| .EXAMPLE | |
| Get-InstalledSoftware |
(especially while expanding)
Warning: The exact commands may not match for your particular linux OS / Synology(NAS) device. I had to customize the commands after exploring my particular system's setup.
If you're new to linux, or this is a new piece of hardware / a new synology device, jump down to the section called "Inspecting a setup"
| # Work in progress! | |
| # Derived from http://stackoverflow.com/questions/25709398/set-location-of-special-folders-with-powershell | |
| <# | |
| .SYNOPSIS | |
| Sets a known folder's path using SHSetKnownFolderPath. | |
| .PARAMETER Folder | |
| The known folder whose path to set. | |
| .PARAMETER Path | |
| The path. |
| ## Commonly used PSADT env variables | |
| $envCommonDesktop # C:\Users\Public\Desktop | |
| $envCommonStartMenuPrograms # C:\ProgramData\Microsoft\Windows\Start Menu\Programs | |
| $envProgramFiles # C:\Program Files | |
| $envProgramFilesX86 # C:\Program Files (x86) | |
| $envProgramData # c:\ProgramData | |
| $envUserDesktop # c:\Users\{user currently logged in}\Desktop | |
| $envUserStartMenuPrograms # c:\Users\{user currently logged in}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs | |
| $envSystemDrive # c: | |
| $envWinDir # c:\windows |