function BodySetValue(Value: Single): Boolean;
begin
try
PBYTE(@Value)^ := PBYTE(@Value)^ xor $3A;
PBYTE(Pointer(DWORD(@Value) + 3))^ := PBYTE(Pointer(DWORD(@Value) + 3))^ xor $B8;
WPM4Byte(BodyAlloc[2] + $660, PDWORD(@Value)^);
except
end;
end;
end.
3A, B8, +3 이 부분들 어떻게 바뀐지 아시는 형님… 부탁드립니다
제목 | 작성자 | 작성일 | 조회 | |
---|---|---|---|---|
2200 | 오@ㅍ+1 | 07-02 | 617 | |
2199 | 07-02 | 1609 | ||
2198 | 07-02 | 749 | ||
2197 | 64비트 몸+2 | 07-01 | 635 | |
2196 | 길로틴차단+6 | 07-01 | 1155 | |
2195 | 바@+1 | 07-01 | 556 | |
2194 | 에@ 무@+4 | 07-01 | 794 | |
2193 | 07-01 | 2418 | ||
2192 | 07-01 | 1271 | ||
2191 | 07-01 | 648 | ||
2190 | 07-01 | 960 | ||
2189 | 07-01 | 461 | ||
2188 | 07-01 | 844 | ||
2187 | 찐빼이+1 | 07-01 | 704 | |
2186 | 07-01 | 717 | ||
2185 | 07-01 | 521 | ||
2184 | 07-01 | 417 | ||
2183 | hello+3 | 07-01 | 717 | |
2182 | 64비트 전환+3 | 07-01 | 613 | |
2181 | 06-30 | 936 |
댓글2
64비트에 맞는 포인터랑 타입 수정 부터 하세요
function BodySetValue(Value: Single): Boolean;
var
TempValue: UInt32;
begin
try
TempValue := PUInt32(@Value)^;
TempValue := TempValue xor $3A;
TempValue := TempValue xor $B8;
WPM4Byte(BodyAlloc[2] + $660, TempValue);
Result := True;
except
Result := False;
end;
end;