Skip to content

Commit

Permalink
Adding iOS biometrics hook for evaluateAccessControl() (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnovak-praetorian committed Feb 17, 2021
1 parent f1daed8 commit 2977c8a
Showing 1 changed file with 68 additions and 10 deletions.
78 changes: 68 additions & 10 deletions agent/src/ios/userinterface.ts
Expand Up @@ -77,20 +77,20 @@ export namespace userinterface {
// }
// }];

const job: IJob = {
const job1: IJob = {
identifier: jobs.identifier(),
invocations: [],
type: "ios-biometrics-disable",
type: "ios-biometrics-disable-evaluatePolicy",
};

const lacontext: InvocationListener = Interceptor.attach(
const lacontext1: InvocationListener = Interceptor.attach(
ObjC.classes.LAContext["- evaluatePolicy:localizedReason:reply:"].implementation, {
onEnter(args) {

// localizedReason:
const reason = new ObjC.Object(args[3]);
send(
c.blackBright(`[${job.identifier}] `) + `Localized Reason for auth requirement: ` +
c.blackBright(`[${job1.identifier}] `) + `Localized Reason for auth requirement (evaluatePolicy): ` +
c.green(reason.toString()),
);

Expand All @@ -102,13 +102,13 @@ export namespace userinterface {

originalBlock.implementation = (success, error) => {
send(
c.blackBright(`[${job.identifier}] `) + `OS authentication response: ` +
c.blackBright(`[${job1.identifier}] `) + `OS authentication response: ` +
c.red(success),
);

if (!success === true) {
send(
c.blackBright(`[${job.identifier}] `) +
c.blackBright(`[${job1.identifier}] `) +
c.greenBright("Marking OS response as True instead"),
);

Expand All @@ -121,15 +121,73 @@ export namespace userinterface {
savedReplyBlock(success, error);

send(
c.blackBright(`[${job.identifier}] `) +
c.green("Biometrics bypass hook complete"),
c.blackBright(`[${job1.identifier}] `) +
c.green("Biometrics bypass hook complete (evaluatePolicy)"),
);
};
},
});

// register the job
job.invocations.push(lacontext);
jobs.add(job);
job1.invocations.push(lacontext1);
jobs.add(job1);

// -- Sample Swift
// https://gist.github.com/algrid/f3f03915f264f243b9d06e875ad198c8/raw/03998319903ad9d939f85bbcc94ce9c23042b82b/KeychainBio.swift

const job2: IJob = {
identifier: jobs.identifier(),
invocations: [],
type: "ios-biometrics-disable-evaluateAccessControl",
};

const lacontext2: InvocationListener = Interceptor.attach(
ObjC.classes.LAContext["- evaluateAccessControl:operation:localizedReason:reply:"].implementation, {
onEnter(args) {

// localizedReason:
const reason = new ObjC.Object(args[4]);
send(
c.blackBright(`[${job2.identifier}] `) + `Localized Reason for auth requirement (evaluateAccessControl): ` +
c.green(reason.toString()),
);

// get the original block that should run on success for reply:
// and save that block as a callback, to run once we change the reply
// from the OS to a true
const originalBlock = new ObjC.Block(args[5]);
const savedReplyBlock = originalBlock.implementation;

originalBlock.implementation = (success, error) => {
send(
c.blackBright(`[${job2.identifier}] `) + `OS authentication response: ` +
c.red(success),
);

if (!success === true) {
send(
c.blackBright(`[${job2.identifier}] `) +
c.greenBright("Marking OS response as True instead"),
);

// Change the success response from the OS to true
success = true;
error = null;
}

// and run the original block
savedReplyBlock(success, error);

send(
c.blackBright(`[${job2.identifier}] `) +
c.green("Biometrics bypass hook complete (evaluateAccessControl)"),
);
};
},
});

// register the job
job2.invocations.push(lacontext2);
jobs.add(job2);
};
}

0 comments on commit 2977c8a

Please sign in to comment.