tailieunhanh - Cracking part 37
Tài liệu hướng dẫn làm cracking phần 37 | thực ra cũng dễ dịch lắm. Nếu bạn nào rãnh rỗi cứ dịch ra cho anh em thì rất tốt. viii-Các lệnh giống trong ASM Các lệnh này của Script đều có trong tập lệnh ASM nên thật dễ dàng khi tiếp xúc các lệnh này. Quote ADD dest src Adds src to dest and stores result in dest Example add x OF add eax x add 401000 5 add y times If y was 1000 before this command then y is 1000 times after it AND dest src ANDs src and dest and stores result in dest Example and x 0F and eax x and 401000 5 DEC var Substracts 1 from variable Example dec v INC var Adds 1 to variable Example inc v MOV dest src Move src to dest. Src can be a long hex string in the format some hex numbers for example 1234 . Remember that the number of digits in the hex string must be even . 2 4 6 8 etc. Example mov x OF mov y Hello world mov eax ecx mov ecx 00DEAD00BEEF00 mov CF 1 mov DF PF OR dest src ORs src and dest and stores result in dest Example or x 0F or eax x or 401000 5 SHL dest src Shifts dest to the left src times and stores the result in dest. Example mov x 00000010 shl x 8 x is now 00001000 SHR dest src Shifts dest to the right src times and stores the result in dest. Example mov x 00001000 shr x 8 x is now 00000010 SUB dest src Substracts src from dest and stores result in dest Example sub x 0F sub eax x sub 401000 5 XOR dest src XORs src and dest and stores result in dest Example xor x 0F xor eax x xor 401000 5 Tóm lại các lệnh sắp xếp trong mục này là Quote ADD SUB DEC INC AND OR XOR SHL SHR MOV ix-Lệnh nhảy và lệnh so sánh a Label Nhãn Trước hết phải nói về Nhãn Label vì lệnh nhảy lúc nào cũng liên quan đến Label. Trong ngôn ngữ lập trình cấp cao khi ta muốn điều khiển một lệnh nhảy nhảy đến 1 routine nào thì ta phải khai báo trước routine đó một cái tên nhãn label . Lúc đó chương trình chúng ta mới biết đường mà nhảy . Trong Script lables khai báo như sau Quote Labels Labels được định nghĩa bằng cách đặt dấu sau một cái name. Example SOME_LABEL Sau đây tui cũng xin giới thiệu với các bạn một .
đang nạp các trang xem trước