fork download
  1. global _start
  2.  
  3. section .data
  4. buffer dw 0h
  5.  
  6. section .text
  7.  
  8. _start:
  9. mov ecx, buffer
  10. mov edx, 02h
  11. call read
  12. mov cx, word [buffer]
  13. cmp cx, 3234h
  14. je exit
  15. cmp ch, 0ah
  16. je one_dig
  17. jmp two_dig
  18.  
  19. one_dig:
  20. mov ecx, buffer
  21. mov edx, 02h
  22. call write
  23. jmp _start
  24.  
  25. two_dig:
  26. mov ecx, buffer
  27. mov edx, 02h
  28. call write
  29. mov edx, 01h
  30. mov ecx, buffer
  31. call read ; read the 0ah
  32. mov ecx, buffer
  33. call write ; write the 0ah
  34. jmp _start
  35.  
  36. mov eax, 01h ; exit()
  37. xor ebx, ebx ; errno
  38. int 80h
  39.  
  40.  
  41. read:
  42. mov eax, 03h ; read()
  43. mov ebx, 00h ; stdin
  44. int 80h
  45. ret
  46. write:
  47. mov eax, 04h ; write()
  48. mov ebx, 01h ; stdout
  49. int 80h
  50. ret
Success #stdin #stdout 0.04s 25936KB
stdin
Debian GNU/Linux system copyright.
API ID: 9b830ae525c4f3e12f0a55b0d128752e
Verification Code = [ ******************** ]
Download the server ...
[################################## ] 100.0%
$ Connection..host..http://+ instagram +/api/%$intec/success..
$ Account:http://instagram/+ Fidhachiiiiiii +/a-%/php..
$ Applying md5()_Algoritm..|
$ buffroverflow.c --system--nodir|
SEDr_hash] !== $_COOa-%/ =hacked.py � bash � 80x10
$ Applying RSA()_Algoritm... f|
- $ Applying map_reduce()... SUCCESS!
$ tar -zcvf password.zip *.password = *******|
$ Success! Username is: + Fidhachiiiiiii +/encryption/4055001556657&
$_GET_password from the link below|
_Successfully accessed. to <& date $ buffroverflow.c --system--nodir||
stdout
global _start

section .data
	buffer	dw	0h

section .text

_start:
	mov		ecx, buffer
	mov		edx, 02h
	call		read
	mov		cx, word [buffer]
	cmp		cx, 3234h
	je		exit
	cmp		ch, 0ah
	je		one_dig
	jmp		two_dig

one_dig:
	mov		ecx, buffer
	mov		edx, 02h
	call		write
	jmp		_start

two_dig:
	mov		ecx, buffer
	mov		edx, 02h
	call		write
	mov		edx, 01h
	mov		ecx, buffer
	call		read			; read the 0ah
	mov		ecx, buffer
	call		write			; write the 0ah
	jmp		_start

exit:
	mov		eax, 01h		; exit()
	xor		ebx, ebx		; errno
	int		80h


read:
	mov		eax, 03h		; read()
	mov		ebx, 00h		; stdin
	int		80h
	ret
write:
	mov		eax, 04h		; write()
	mov		ebx, 01h		; stdout
	int		80h
	ret