I hereby claim:
- I am n0ncetonic on github.
- I am noncetonic (https://keybase.io/noncetonic) on keybase.
- I have a public key ASB0ekgJUnmehUCUA-S-F1KMdQyNVLQMxxfuqaIoXNq5jwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Begining with OS X 10.11 El Capitan, a set of security mechanism, System Integrity Protection(SIP), has been enforced and it can only be configured or turned off in the recovery environment like Recovery HD. In the normal environment, SIP configuration will not be permitted even with root privilege. If so, the SIP would be useless since it can be easily turned off.
As many people may already noticed, the configuration of SIP status is stored in
the NVRAM with a property called csr-active-config
. Of course users wouldn’t be
# Blacksun Hackers Research Labs | |
# Nov 2017 | |
# Noncetonic | |
tell application "Google Chrome" | |
set list_of_windows to every window # get every open window | |
repeat with a_window in list_of_windows # iterate through all open windows | |
set tab_list to every tab in a_window # grab all tabs | |
repeat with the_tab in tab_list |
/* | |
File: LaunchServices/IconsCore.h | |
Contains: Icon Utilities and Icon Services Interfaces. | |
Version: LaunchServices-283~12 | |
Copyright: � 1990-2006 by Apple Computer, Inc. All rights reserved | |
Bugs?: For bug reports, consult the following page on |
(* | |
* Automation script that opens a new space on the current monitor | |
* based on the current position of the mouse pointer | |
* | |
* Created by: Charles Levesque | |
* on: december 31st, 2017 | |
* last modified: december 31st, 2017 | |
* version: 1.0 | |
* | |
* |
-- main.scpt | |
-- Cocoa-AppleScript Applet | |
-- | |
-- This app can close and open applications when an other application, | |
-- the trigger, is launced or terminated. This can be useful when two | |
-- applications interfere with eachother or when one is dependend on the | |
-- other (e.g. with setting an VPN connection). | |
-- | |
-- | |
-- Roemer Vlasveld ([email protected]) |
// | |
// PasteboardWatcher.swift | |
// PasteboardWatcher | |
// | |
// Created by Devarshi Kulshreshtha on 6/19/15.PasteboardWatcher | |
// Copyright © 2015 Devarshi Kulshreshtha. All rights reserved. | |
// | |
import Cocoa |
property delayInterval : 15 -- seconds | |
on run | |
activate | |
tell application "System Events" to set UIAccessStatus to UI elements enabled | |
end run | |
on idle | |
try | |
tell application "System Events" | |
tell process "NotificationCenter" |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> /* for rdtscp and clflush */ | |
#pragma optimize("gt",on) | |
#else | |
#include <x86intrin.h> /* for rdtscp and clflush */ | |
#endif |
# Example 1: | |
# laptop% ssh remotehost | |
# remotehost% uptime | laptop remote_uptime | |
# remotehost% exit | |
# laptop% cat remote_uptime | |
# 20:41:11 up 9 days, 4:02, 20 users, load average: 0.02, 0.01, 0.00 | |
# | |
# In other words, it's like starting this: | |
# laptop% ssh remotehost uptime > remote_uptime |