How NOP hack works ?

Peyote

Active member
Joined
May 19, 2013
Messages
87
Reaction score
0
I was wondering how this thing work ?  :imoverit:
Yes, i can use them for bypassing stunt vehicle or lock system, weapon anticheat(sometimes), bypassing bunny hop script, etc
But i never know how NOP hack work and what is stand for ? 
Thank you ..
 

T3KTONIT

Well-known member
Joined
Sep 2, 2013
Messages
308
Reaction score
5
Peyote link said:
I was wondering how this thing work ?  :imoverit:
Yes, i can use them for bypassing stunt vehicle or lock system, weapon anticheat(sometimes), bypassing bunny hop script, etc
But i never know how NOP hack work and what is stand for ? 
Thank you ..

NOP No operation, it's an Assembly instruction
You see,every program has it's own set of instructions that make him do the job he has to do.

A SIMPLE EXAMPLE for Health damage:
Code:
mov eax, [adressforhealth]
dec eax
mov [addressforhealth] , eax
the 'dec' instruction decrements eax with one (eax = eax - 1)
if you NOP that instruction what would it do?

No operation... it won't decrease the health therefore, it will just copy it to eax, and copy it back to the address, There you go, you made a GodMode hack.
Code:
mov eax, [adressforhealth]
nop
mov [addressforhealth] , eax
 

Xer

Well-known member
Joined
May 11, 2013
Messages
256
Reaction score
0
T3K link said:
[quote author=Peyote link=topic=7951.msg45429#msg45429 date=1403782271]
I was wondering how this thing work ?  :imoverit:
Yes, i can use them for bypassing stunt vehicle or lock system, weapon anticheat(sometimes), bypassing bunny hop script, etc
But i never know how NOP hack work and what is stand for ? 
Thank you ..

NOP No operation, it's an Assembly instruction
You see,every program has it's own set of instructions that make him do the job he has to do.

A SIMPLE EXAMPLE for Health damage:

mov eax, [adressforhealth]
dec eax
mov [addressforhealth] , eax

the 'dec' instruction decrements eax with one (eax = eax - 1)
if you NOP that instruction what would it do?

No operation... it won't decrease the health therefore, it will just copy it to eax, and copy it back to the address, There you go, you made a GodMode hack.
[/quote]

:excited_troll:

w0w, theres a smart bitch here.  :dont_care:

i think he is not asking for that thing, he ask how do NOP hacks means on s0biet.
 

blackHat

Expert
Joined
Jul 28, 2013
Messages
930
Reaction score
2
i think NOP disable the data that transfer from you to the server , so some specific stuff like your ammo or health wont get read by the server
 

T3KTONIT

Well-known member
Joined
Sep 2, 2013
Messages
308
Reaction score
5
Xer link said:
[quote author=T3K link=topic=7951.msg45432#msg45432 date=1403784577]
[quote author=Peyote link=topic=7951.msg45429#msg45429 date=1403782271]
I was wondering how this thing work ?  :imoverit:
Yes, i can use them for bypassing stunt vehicle or lock system, weapon anticheat(sometimes), bypassing bunny hop script, etc
But i never know how NOP hack work and what is stand for ? 
Thank you ..

NOP No operation, it's an Assembly instruction
You see,every program has it's own set of instructions that make him do the job he has to do.

A SIMPLE EXAMPLE for Health damage:

mov eax, [adressforhealth]
dec eax
mov [addressforhealth] , eax

the 'dec' instruction decrements eax with one (eax = eax - 1)
if you NOP that instruction what would it do?

No operation... it won't decrease the health therefore, it will just copy it to eax, and copy it back to the address, There you go, you made a GodMode hack.
[/quote]

:excited_troll:

w0w, theres a smart bitch here.  :dont_care:

i think he is not asking for that thing, he ask how do NOP hacks means on s0biet.
[/quote]

this is what 'NOP' means. There aint no other definitions of 'NOP'...
and it's a stupid question to ask what they do in s0beit because obviously he said "I was wondering how this thing work ?"
 

Xer

Well-known member
Joined
May 11, 2013
Messages
256
Reaction score
0
T3K link said:
[quote author=Xer link=topic=7951.msg45444#msg45444 date=1403787129]
[quote author=T3K link=topic=7951.msg45432#msg45432 date=1403784577]
[quote author=Peyote link=topic=7951.msg45429#msg45429 date=1403782271]
I was wondering how this thing work ?  :imoverit:
Yes, i can use them for bypassing stunt vehicle or lock system, weapon anticheat(sometimes), bypassing bunny hop script, etc
But i never know how NOP hack work and what is stand for ? 
Thank you ..

NOP No operation, it's an Assembly instruction
You see,every program has it's own set of instructions that make him do the job he has to do.

A SIMPLE EXAMPLE for Health damage:

mov eax, [adressforhealth]
dec eax
mov [addressforhealth] , eax

the 'dec' instruction decrements eax with one (eax = eax - 1)
if you NOP that instruction what would it do?

No operation... it won't decrease the health therefore, it will just copy it to eax, and copy it back to the address, There you go, you made a GodMode hack.
[/quote]

:excited_troll:

w0w, theres a smart bitch here.  :dont_care:

i think he is not asking for that thing, he ask how do NOP hacks means on s0biet.
[/quote]

this is what 'NOP' means. There aint no other definitions of 'NOP'...
and it's a stupid question to ask what they do in s0beit -_-"
[/quote]

sorry bro, i just get some shit bieng an asian, anyway im proud  :not_bad:
 

YeAhx

Active member
Joined
Mar 13, 2014
Messages
109
Reaction score
1
SoSmart mode activated  :dont_care:
Basically what NOP do is It patch some code(s) and change (or freeze) the certain part of it so it won't send the data over Internet.
 
Top