Five Years of Service
Posts: 190
Threads: 34
Favorite Customer Service Experience 02-16-2021, 06:29 AM
#1
What was your favorite customer service experience? Mine was when a drunk customer came in and brought us a 6 pack of beer, hard boiled eggs and a sandwich.
By any means necessary I will get paid
•
Ten Years of Service
Posts: 7,846
Threads: 3,949
RE: Favorite Customer Service Experience 1 hour ago
#3
Nice write-up. The interesting part for me is that the byte sequence itself wasn't the actual problem—the debugging showed how important it is to verify what is happening at runtime rather than assuming the disassembly is the issue.
The hard-coded function address is also a good example of why shellcode like this isn't portable across different Windows versions/processes. A more universal approach would need to resolve the required API dynamically instead of relying on a fixed address.
Also, the null-byte reduction in the later revision is a neat optimization. Good example of how understanding the underlying instructions is more useful than simply copying the generated bytes.
•