Algorithm
2014.07.01 17:55

OCB5 Injection 앗싸뵹! ㅋㅋ

조회 수 874 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

앗쌰뵹 ㅋㅋㅋ


이렇게 Javascript Injection 으로 점수 조작이 가능하다 ㅋㄷ;




# 인젝션 함수 실행 부분 Example

NSString *prefixUrl1 = @"https://appgame.okcashbag.com/game/2048/";
if([request.URL.absoluteString hasPrefix:prefixUrl1]) {
  [self performSelector:@selector(doInjection) withObject:nil afterDelay:5.0];
}


# Javascript 인젝션 함수 Example

- (void)doInjection {
  NSString *buildString = @"game2048_04210214";
  NSString *scoreString = @"513842";
  NSString *keyString = @"26gameState";
  
  // 초기 값 확인 함
  [self viewJson:keyString];
  
  // 스코어 인젝션
  NSString *game2048String = [[NSUserDefaults standardUserDefaults] objectForKey:buildString];
  if ([game2048String isEqualToString:@"Y"] == NO) {
    [[NSUserDefaults standardUserDefaults] setObject:@"Y" forKey:buildString];
    [self injectScore:scoreString key:keyString];
    
    // 잘 됐는지 확인 함
    [self viewJson:keyString];
  }
}

- (void)viewJson:(NSString *)keyString {
  //NSString *result1 = [NSString stringWithFormat:@"localStorage.getItem('12gameState');"];
  NSString *result1 = [NSString stringWithFormat:@"localStorage.getItem('%@');", keyString];
  NSString *value1 = [_webView stringByEvaluatingJavaScriptFromString:result1];
  NSLog(@"------> value1 : %@", value1);
}

- (void)injectScore:(NSString *)scoreString key:(NSString *)keyString {
  //NSString *keyString = @"12gameState";
  //NSString *scoreString = @"460182";
  //NSString *buildString = @"game2048_1127";
  NSString *result0 = [NSString stringWithFormat:@"localStorage.setItem(\"%@\",
    JSON.stringify({\"grid\":{\"size\":4,\"cells\":[[{\"position\":{\"x\":0,\"y\":0},\"value\":2},
    {\"position\":{\"x\":0,\"y\":1},\"value\":1024},{\"position\":{\"x\":0,\"y\":2},\"value\":8192},
    {\"position\":{\"x\":0,\"y\":3},\"value\":64}],[{\"position\":{\"x\":1,\"y\":0},\"value\":512},
    {\"position\":{\"x\":1,\"y\":1},\"value\":256},{\"position\":{\"x\":1,\"y\":2},\"value\":256},
    {\"position\":{\"x\":1,\"y\":3},\"value\":128}],[{\"position\":{\"x\":2,\"y\":0},\"value\":1024},
    {\"position\":{\"x\":2,\"y\":1},\"value\":4},{\"position\":{\"x\":2,\"y\":2},\"value\":2},
    {\"position\":{\"x\":2,\"y\":3},\"value\":2048}],[{\"position\":{\"x\":3,\"y\":0},\"value\":1024},
    null,null,null]]},\"score\":%@,\"over\":false,\"won\":false,\"keepPlaying\":false,\"started\":true}));",
    keyString, scoreString];
  NSString *value0 = [_webView stringByEvaluatingJavaScriptFromString:result0];
  NSLog(@"------> value0 : %@", value0);
}

?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1109 Develop [linux] CentOS Apache 웹서버에 HTTPS 적용 hooni 2015.10.23 899
1108 Develop [js] e.stopPropagation() VS e.preventDefault () file hooni 2015.04.14 904
1107 Etc 사이버보안실무 수업 메모 hooni 2017.03.30 907
1106 Develop [ios] URL 랜딩 속도(OpenURL 10초 정지되는) 이슈 hooni 2015.02.09 909
1105 Develop [android] Android N requires the IDE to be running with Java 1.8 or later 오류 hooni 2016.08.30 911
1104 System/OS [macos] How to Fix ‘You Shut Down Your Computer Because of a Problem’ file hooni 2022.06.01 911
1103 Develop [ios] Thread Loop 내에서 UI 업데이트 방법 hooni 2015.01.03 912
1102 Develop Aspect Oriented Programming in Objective-C hooni 2015.05.18 914
1101 Develop [io] Apple Watch, Today Extension 앱ID 설정 hooni 2016.04.20 915
1100 Develop [ios] 문자열로 함수 실행하기 (eval 함수처럼) hooni 2015.02.10 920
1099 Develop [ios] NSString, RegularExpression Find/Replace hooni 2017.04.14 920
1098 Develop [android] 초간단 얼럿 (AlertDialog) hooni 2016.10.21 923
1097 Develop [ios] iOS 앱 아이콘을 만드는 유틸 file hooni 2015.01.03 927
1096 Develop [c] 기막힌 정렬 코드 ㅋㄷ file hooni 2015.10.13 935
1095 Develop [c] 이진 탐색 두 가지 코드 (재귀/반복) file hooni 2015.06.26 938
1094 Develop [android] N-Puzzle 게임 file hooni 2015.07.09 938
Board Pagination Prev 1 3 4 5 6 7 ... 74 Next
/ 74