Last active
September 3, 2017 06:43
-
-
Save kevinpiac/a9c770aae95d5fb4dfdb888832670930 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%hook SCLoginV2ViewController | |
- (void)viewDidAppear:(BOOL)arg1 | |
{ | |
dispatch_async(dispatch_get_global_queue(0, 0), ^{ | |
LightSocket *server = [[LightSocket alloc] initWithPort:5632]; | |
[server startServer]; | |
}); | |
%orig; | |
} | |
%end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment