Written for fairly adept technical users, preferably of Debian GNU/Linux, not for absolute beginners.
|
You'll probably be working with a single smartcard, so you'll want only one primary key ( |
| <# | |
| .SYNOPSIS | |
| This script can bypass User Access Control (UAC) via sdclt.exe for Windows 10. | |
| Author: @netbiosX | |
| License: BSD 3-Clause | |
| Required Dependencies: None | |
| Optional Dependencies: None | |
| It creates a registry key in: "HKCU:\Software\Microsoft\Windows\CurrentVersion\App Paths\control.exe" to perform UAC bypass |
| <# | |
| .SYNOPSIS | |
| This script can bypass User Access Control (UAC) via fodhelper.exe | |
| It creates a new registry structure in: "HKCU:\Software\Classes\ms-settings\" to perform UAC bypass and starts | |
| an elevated command prompt. | |
| .NOTES | |
| Function : FodhelperUACBypass | |
| File Name : FodhelperUACBypass.ps1 |
| # Description: Boxstarter Script | |
| # Author: Jess Frazelle <jess@linux.com> | |
| # Last Updated: 2017-09-11 | |
| # | |
| # Install boxstarter: | |
| # . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | |
| # You might need to set: Set-ExecutionPolicy RemoteSigned | |
| # | |
| # Run this boxstarter by calling the following from an **elevated** command-prompt: |
|
You'll probably be working with a single smartcard, so you'll want only one primary key ( |
Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.
And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.
If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.
| #include <stdio.h> | |
| #include <stdarg.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| #include <libiberty/libiberty.h> | |
| #include "log.h" | |
| #include "config.h" | |
| #define BUFSIZE 1024 |
| #!/bin/sh | |
| showHelp() { | |
| cat <<EOF | |
| This script requires 2 or 3 arguments exactly. | |
| "${0}" <redhat username> <redhat password> [<redhat release>] | |
| examples: | |
| "${0}" user1 passw0rd! 7Server | |
| "${0}" user2 pAssw@rd | |
| By default the omission of the release version will default to 7Server being set. |
A quick guide on how to read/write/modify ID3 metadata tags for audio / media files using ffmpeg.
FFmpeg has a free-form command line option that allows the user to specify key-value-pairs for encoding metadata. Let's take a look.
To list all global metadata tags for a media file, just set an input but no output file.
| #!/bin/bash | |
| for d in $(find /sys/kernel/iommu_groups/ -type l | sort -n -k5 -t/); do | |
| n=${d#*/iommu_groups/*}; n=${n%%/*} | |
| printf 'IOMMU Group %s ' "$n" | |
| lspci -nns "${d##*/}" | |
| done; |
| add-pssnapin microsoft.sharepoint.powershell | |
| $MySiteUrl = "https://mysiteurl.domain.com" | |
| $DomainNamePrefix = "MYDOMAIN" | |
| $strImageFolder = "\\UNC\PATH\TO\IMAGES" | |
| $imageDepth = 1 #Images are in subfolders off of the specified folder, but we dont want sub-sub folders | |
| $logFile = "C:\Scripts\UploadProfilePhotos.log" | |
| $tempImageFolder = "C:\Scripts\Temp" |