Don't send referrer header
This userscript append the <meta>
element to <head>
for every websites.
// ==UserScript== | |
// @name Absolute Enable Right Click & Copy | |
// @namespace Absolute Right Click | |
// @description Force Enable Right Click & Copy & Highlight | |
// @shortcutKeys [Ctrl + `] Activate Absolute Right Click Mode To Force Remove Any Type Of Protection | |
// @author Absolute | |
// @version 1.8.9 | |
// @include *://* | |
// @icon https://i.imgur.com/AC7SyUr.png | |
// @compatible Chrome Google Chrome + Tampermonkey |
#!/bin/bash | |
# This script creates a user account under Mac OS X | |
# === Typically, this is all you need to edit === | |
USERNAME= | |
FULLNAME= | |
PASSWORD= | |
# A list of (secondary) groups the user should belong to |
Run commands automatically after suspend: | |
1) Create script with commands (open Terminal and type) | |
sudo touch yourscriptname.sh | |
This will create the file in your home folder. | |
2) Edit script | |
sudo nano yourscriptname.sh |
Prefix | Framework |
---|---|
AB | AddressBook / AddressBookUI |
AC | Accounts |
AD | iAd |
AK | AuthKit |
AL | AssetsLibrary |
AM | Automator |
AU | AudioUnit |
AV | AVFoundation |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<!-- not sure which one it is, so set both --> | |
<key>Ensemble</key> | |
<dict> | |
<key>Enabled</key> | |
<true/> | |
</dict> |
#Generate fairplay file with random generated Key, IV. | |
#And generate also a trobleshooting chunklist bypassing fairplay server and providing the plain key for testing | |
#Source data | |
SOURCE="/Users/jcenzano/Movies/test10m_baseline_30_320x240_a25fpsB.mp4" | |
#Dest data | |
DEST="/Users/jcenzano/Movies/hls-encrypted/result-fairplay" | |
KEYS_DIR="keys" | |
KEY_IV_FILENAME="key-iv.bin" |
#!/usr/bin/env bash | |
# Install all the things (except Microsoft Remote Desktop) | |
function install { | |
xcode-select --install | |
if ! type "brew" > /dev/null; then | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/$(whoami)/.zprofile | |
eval "$(/opt/homebrew/bin/brew shellenv)" |
iOS 16 introduced launch constraints, which can be used to constraint the launch of an application. | |
There are three types of constraints: | |
Self Constraints, which the launched application itself must meet | |
Parent Constraints, which the parent process must meet | |
Responsible Constraints, which the "responsible process" must meet (I assume that the responsible process is the process that asked launchd to launch a service) | |
Additionally, the TrustCache format was updated (see below) to support assigning each binary a "Constraint Category", which forces Self and Parent Constraints. | |
Note that Self, Parent and Responsible Constraints can also be set by the process performing the launch and they can be included in the code signature, in the new blob type 0xFADE8181. In both cases, the constraints are DER encoded (just like the DER entitlements). | |
Constraint Categories (from TrustCache, new in version 2): |
Below are a list of System Preference pane URLs and paths that can be accessed with scripting to assist users with enabling macOS security settings without having to walk them through launching System Preferences, finding panes, and scrolling to settings. Not all panes have an accessible anchor and some are OS specific.
To find the Pane ID of a specific pane, open the System Preferences app and select the desired Preference Pane. With the pane selected, open the ScriptEditor.app and run the following script to copy the current Pane ID to your clipboard and display any available anchors:
tell application "System Preferences"
set CurrentPane to the id of the current pane
set the clipboard to CurrentPane