Advertisement
FlyFar

Shake.c

Aug 19th, 2023
732
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | Cybersecurity | 0 0
  1. PAYLOADFUNCTIONDEFAULT(payloadCursor) {
  2.     PAYLOADHEAD
  3.  
  4.     POINT cursor;
  5.     GetCursorPos(&cursor);
  6.  
  7.     SetCursorPos(cursor.x + (random() % 3 - 1) * (random() % (runtime / 2200 + 2)), cursor.y + (random() % 3 - 1) * (random() % (runtime / 2200 + 2)));
  8.  
  9.     out: return 2;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement