+ NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
+
+ NSURL *url([NSURL URLWithString:[NSString stringWithUTF8String:argv[1]]]);
+
+ if (void (*SBSOpenSensitiveURLAndUnlock)(NSURL *, BOOL) = (void (*)(NSURL *, BOOL)) dlsym(RTLD_DEFAULT, "SBSOpenSensitiveURLAndUnlock"))
+ (*SBSOpenSensitiveURLAndUnlock)(url, YES);
+ else
+ [[UIApplication alloc] openURL:url];
+
+ [pool release];