달력

05

« 2012/05 »

  •  
  •  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  •  
  •  
2011/09/26 09:58

탈옥된 iOS 기기 스마트뱅킹 FAQ iOS SmartBank2011/09/26 09:58

Q. **은행 업데이트 되었는데 더 이상 분석 작업 안하시나요?
A. 아이폰5 출시도 임박했고해서, iOS를 순정으로 돌렸습니다. 때문에 더 이상 수정 코드는 올라오지 않을 것 같습니다.


지난 FAQ 보기


저작자 표시 비영리 동일 조건 변경 허락
Posted by akalune
2011/09/20 13:14

신한은행 - 신한 S뱅크 v3.5.3 iOS SmartBank2011/09/20 13:14

덤프파일/수정코드 적용 방법을 비롯한 기타 질문사항은 FAQ 페이지를 참고하세요.


http://itunes.apple.com/us/app/id357484932?mt=8

0x2C28 1F D1 -> 1F E0

* Crackulous 이용, iPhone3Gs iOS 4.3.3 Tested


What's New in Version 3.5.3

- 신규
1. 공인인증서 내보내기
2. 공인인증서 발급
3. 공인인증서 폐기


저작자 표시 비영리 동일 조건 변경 허락
Posted by akalune
2011/08/22 17:49

신한은행 - 신한 S뱅크 v3.5.2 iOS SmartBank2011/08/22 17:49

덤프파일/수정코드 적용 방법을 비롯한 기타 질문사항은 FAQ 페이지를 참고하세요.


http://itunes.apple.com/us/app/id357484932?mt=8

0x2FB8 1F D1 -> 1F E0

* Crackulous 이용, iPhone3Gs iOS 4.3.3 Tested


What's New in Version 3.5.2

- 보안모듈 교체
- 기타 오류 수정


저작자 표시 비영리 동일 조건 변경 허락
Posted by akalune


  1. Login as administrator and open a terminal window

  2. Create scriptfile for muting
  3. sudo nano /path/to/mute-on.sh
  4. Enter this as content, when done press control+O to save and control+X to exit:
  5. #!/bin/bash
    osascript -e 'set volume with output muted'
  6. Create scriptfile for unmuting
  7. sudo nano /path/to/mute-off.sh
  8. Enter this as content, when done press control+O to save and control+X to exit:
  9. #!/bin/bash
    osascript -e 'set volume without output muted'
  10. Make both files executable:
  11. sudo chmod u+x /path/to/mute-on.sh
    sudo chmod u+x /path/to/mute-off.sh
  12. Check if any hooks already exist (these will be overwritten, so make sure it is OK for you)
  13. sudo defaults read com.apple.loginwindow LoginHook
    sudo defaults read com.apple.loginwindow LogoutHook
  14. Add hooks for muting
  15. sudo defaults write com.apple.loginwindow LogoutHook /path/to/mute-on.sh
    sudo defaults write com.apple.loginwindow LoginHook /path/to/mute-off.sh


Notes:

- /path/to/ is the location of the scripts, I used /Library/Scripts/

- you can skip the unmuting loginhook (i.e. each logout will silence your machine), but I like it this way because I always have sound available exactly at the volume level I set last time

- root has to be the owner of the script files - running an editor from command line with sudo is the easiest way to achieve that (otherwise you need to chown)

- to delete the hooks, use the following:
sudo defaults delete com.apple.loginwindow LoginHook
sudo defaults delete com.apple.loginwindow LogoutHook



저작자 표시 비영리 동일 조건 변경 허락
Posted by akalune

Mac OS X를 사용하는 경우 파인더는 각각의 폴더에 저장된 파일들의 정보들을 .DS_Store 라는 이름으로 숨김파일 속성으로 만들어 놓습니다. 예전에는 보안때문에 이 파일이 네트워크 계정에 만들어 지는것을 방지했지만 Mac OS X 10.6 부터는 암호화 되어 저장이 되기 때문에 보안에 크게 문제가 되지는 않습니다.

다만 윈도우즈와 네트워크로 연결하는 경우 숨김파일이 눈에 거슬린다면 터미널을 열고 다음 명령어를 넣으면 네트워크 볼륨에 더이상 .DS_Store 파일을 생성하지 않습니다. (SMB/CIFS, AFP, NFS, WebDAV 서버에만 적용됩니다.)

  1. 응용프로그램 > 유틸리티 > Terminal 실행
  2. 다음을 복사해서 붙여 넣습니다
  3. defaults write com.apple.desktopservices DSDontWriteNetworkStores true
  4. 로그아웃 혹은 리부팅을 하면 해당 계정에 적용 됩니다.

다른 계정에도 동일하게 적용 하려면 위의 과정을 다른 계정에서 진행하거나 위 명령이 적용된 계정의 ~/Library/Preferences/com.apple.desktopservices.plist 파일을 복사해서 다른 계정의 ~/Library/Preferences/ 폴더에 넣어 주면 됩니다.


저작자 표시 비영리 동일 조건 변경 허락
TAG Mac OS X
Posted by akalune