mirror of
https://github.com/objective-see/KnockKnock.git
synced 2026-03-22 06:52:25 +00:00
91cc826865
-mojave support (privacy checks, dark mode, etc) -command line interface -run as root (scan all users) -improved whitelisting (via path + code signing cert) -senty.io error reportiung
36 lines
569 B
Objective-C
Executable File
36 lines
569 B
Objective-C
Executable File
//
|
|
// Kexts.h
|
|
// KnockKnock
|
|
//
|
|
// Created by Patrick Wardle on 2/19/15.
|
|
// Copyright (c) 2015 Objective-See. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "PluginBase.h"
|
|
|
|
/* GLOBALS */
|
|
|
|
//shared enumerator
|
|
extern ItemEnumerator* sharedItemEnumerator;
|
|
|
|
|
|
@interface DylibInserts : PluginBase
|
|
{
|
|
|
|
}
|
|
|
|
/* (custom) METHODS */
|
|
|
|
//scan all launch items
|
|
// ->looks in their plists for DYLD_INSERT_LIBRARYs
|
|
-(void)scanLaunchItems;
|
|
|
|
//scan all installed applications
|
|
// ->looks in their plists for DYLD_INSERT_LIBRARYs
|
|
-(void)scanApplications;
|
|
|
|
|
|
@end
|