본문 바로가기

분류 전체보기49

메이플랜드 핵이 넘치는 이유 메이플랜드는 메이플스토리 월드라는 메이플에서 제공하는 플랫폼에서 만들어진 게임이다. 게임을 실행하기 위해서는 메이플월드에서 제공되어지는 게임인 메이플랜드를 플레이를 눌러 게임을 접속하여야 한다. 게임을 불러오는 시스템이다 보니 핵을 감지 조차 못하는 경우가 생기는 것으로 보인다. 해당 불러오는 도중에는 게임의 보안세팅이 작동하지 않아 보인다. 대부분의 핵( 치트엔진 )을 이타이밍에 코드 인젝션한뒤 게임이 실행되어진 뒤에는 핵을 끈다. -코드 인젝션)_ Code Injection이란 상대방 프로세스에 독립 실행 코드를 삽입한 후 실행하는 기법이다. 그렇게 되면 게임내에서 돌아가는 보안 시스템은 실질적으로 해킹이 일어난 뒤이기에 감지하지 못하는 것으로 보인다. 실제로 유통되는 핵의 소스코드를 받아 확인해 보.. 2024. 2. 23.
242. Valid Anagram C++문제 풀이 242. Valid Anagram Easy 5643231Add to ListShare Given two strings s and t, return true if t is an anagram of s, and false otherwise. An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once. 두 개의 문자열 s와 t가 주어지면 t가 s의 아나그램이면 true를 반환하고 그렇지 않으면 false를 반환합니다. Anagram은 일반적으로 모든 원래 문자를 정확히 한 번 사용하여 다른 단어 또는 구.. 2022. 7. 20.
387. First Unique Character in a String 문제풀이 387. First Unique Character in a String Easy 5340207Add to ListShare Given a string s, find the first non-repeating character in it and return its index. If it does not exist, return -1. 단 한번만 쓰여진 문자형을 찾아 그 index를 retrun 하면 된다. Example 1: Input: s = "leetcode" Output: 0 Example 2: Input: s = "loveleetcode" Output: 2 Example 3: Input: s = "aabb" Output: -1 Constraints: 1 2022. 7. 19.
20. Valid Parentheses 문제풀이 20. Valid Parentheses Easy 14119658Add to ListShare Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. '(', '), '{', '}, '[' 및 ']] 문자만 포함하는 문자열이 주어지면 입력 문자열이 유효한지 확인하십시오. An input string is valid if: Open brackets must be closed by the same type of brackets. Open brackets must be closed in the correct order. 다음과 같은 경우 입력 문자열이 .. 2022. 7. 13.