Advertisement
fraddyrad

ENIGMA HWID BIPASSER

Aug 4th, 2022
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. //Enigma HWID Bypasser by GautamGreat (Ported to x64dbg by Mobile46)
  2. //Always use an anti-anti-debug plugin (SharpOD, ScyllaHide, etc.)
  3.  
  4. msg "Enigma HWID Bypasser x86"
  5.  
  6. //Clear or disable breakpoints
  7. //bpc
  8. //bphc
  9. //bpmc
  10. bpd
  11. bphd
  12. bpmd
  13.  
  14. //Start
  15. bp VirtualFree
  16. erun
  17. bc VirtualFree
  18.  
  19. ertr 2
  20. sto
  21.  
  22. find cip, "55 8B EC 83 C4 E0 53 56 33 D2"
  23. cmp $result, 0
  24. je error
  25.  
  26. find $result, "74 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? EB ??"
  27. cmp $result, 0
  28. je error
  29.  
  30. mov $hwidPatchAddress, $result
  31. mov $result, #75#
  32.  
  33. log "VA: {$hwidPatchAddress} - RVA: {mod.rva($hwidPatchAddress)}"
  34. log "Old byte: 74, new byte: 75"
  35. log "HWID patched"
  36. ret
  37.  
  38. error:
  39. msg "Pattern not found!"
  40. ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement