์ด ๋ฌธ์๋ ํธ์
์ผ๋ก ์ธํ ํฌ๋์ฌ๋ง ๋ค๋ฃน๋๋ค.
๋ด๋ถ ํ์ผ ๋ณ๊ฒฝ ์ ๋ฐ์ํ๋ ๋ฌดํ ์ฌ๊ณผ ๋ฑ์ ๋ํด์๋ ๋ค๋ฃจ์ง ์์ต๋๋ค.
๋ง์ฝ ๋ด๋ถ ํ์ผ ๋ณ๊ฒฝ์ผ๋ก ์ธํด ์์คํ
์ด ๋ฉ์ท์ผ๋ฉด ๋ค ํฌ๊ธฐํ๊ณ ์๋ฌด ์๊ฐ์์ด DFU๋ฅผ ํ์๋ฉด ๋ฉ๋๋ค.
So easy.
This file contains hidden or 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
| ; *** Inno Setup version 6.1.0+ Korean messages *** | |
| ; | |
| ; โ 6.0.3+ Translator: SungDong Kim (acroedit@gmail.com) | |
| ; โ 5.5.3+ Translator: Domddol (domddol@gmail.com) | |
| ; โ Translation date: MAR 04, 2014 | |
| ; โ Contributors: Hansoo KIM (iryna7@gmail.com), Woong-Jae An (a183393@hanmail.net) | |
| ; โ Storage: http://www.jrsoftware.org/files/istrans/ | |
| ; โ ์ด ๋ฒ์ญ์ ์๋ก์ด ํ๊ตญ์ด ๋ง์ถค๋ฒ ๊ท์น์ ์ค์ํฉ๋๋ค. | |
| ; Note: When translating this text, do not add periods (.) to the end of | |
| ; messages that didn't have them already, because on those messages Inno |
This file contains hidden or 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
| myPicksOnly = function() { | |
| var isMyPicksOnly = $('#myPick').is(":checked") || false; | |
| if (!isMyPicksOnly) { | |
| $('.sorting a.selected').click(); | |
| return; | |
| } | |
| var html = ''; | |
| picks = $('.tranieeList li.selected'); | |
| if (picks.length > 0) { |
This file contains hidden or 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <strings.h> | |
| #include <sys/utsname.h> | |
| #include "offsets.h" | |
| // offsets from the main kernel 0xfeedfacf | |
| uint64_t allproc_offset; | |
| uint64_t kernproc_offset; |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| #ref: http://www.jailbreakqa.com/questions/117086/create-deb-from-installed-package-no-longer-available-in-cydia | |
| package="$1" | |
| if [ ! "$package" ] | |
| then | |
| echo "Usage: $0 package" | |
| exit 1 |
This file contains hidden or 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
| typedef int32_t sy_call_t(struct extern_proc *, void *, int *); | |
| typedef void sy_munge_t(const void *, void *); | |
| //https://github.com/de7ec7ed/vertigo_applications/blob/493e4c6472fea33432d8f8c3a6819119e26c16f8/ios/krnldr/inc/kern.h | |
| struct sysent50 { // system call table | |
| int16_t sy_narg; // number of args | |
| int8_t sy_resv; // reserved | |
| int8_t sy_flags; // flags | |
| sy_call_t *sy_call; // implementing function | |
| sy_munge_t *sy_arg_munge32; // system call arguments munger for 32-bit process |
This file contains hidden or 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
| // ... | |
| - (SBWorkspace *)sbWorkspace { | |
| return g_sbWorkspace; | |
| } | |
| - (BOOL)launchApplication:(NSString *)identifier { | |
| return [self launchApplication:identifier url:nil]; | |
| } |
This file contains hidden or 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
| #import <UIKit/UIKit.h> | |
| #import <substrate.h> | |
| /** | |
| * | |
| * Aug 7 15:46:09 deVbugs-i5 SpringBoard[12620] <Warning>: @@@@@@@@@@@ <SpringBoard: 0x156d4330>!!!!!!!!!!!!!!!!!!! | |
| * |
This file contains hidden or 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
| include theos/makefiles/common.mk | |
| TWEAK_NAME = StupidHanaNBank | |
| StupidHanaNBank_FILES = Tweak.xm | |
| StupidHanaNBank_FRAMEWORKS = Security | |
| include $(THEOS_MAKE_PATH)/tweak.mk | |
| after-install:: | |
| install.exec "killall -9 HanaNBank" |