Files
KnockKnock/Plugins/DylibInserts.h
T
Patrick Wardle 91cc826865 v 2.0.0 (beta)
-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
2018-11-18 20:43:46 -10:00

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