Guest User

an old multicore demo for plain dos asm

a guest
May 27th, 2026
529
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASM (NASM) 0.91 KB | Source Code | 0 0
  1. .global _apStart
  2. .global _apEnd
  3. .global _ap32
  4. .global _gdt
  5. .global _patchJmp
  6. .global _patchGdt
  7. .global _patchStack
  8. .global _patchMain
  9.  
  10. .section .text
  11. .code16
  12. _apStart:
  13.     cli
  14.     mov %cs, %ax
  15.     mov %ax, %ds
  16.  
  17.     lgdt (_gdtPtr - _apStart)
  18.  
  19.     mov %cr0, %eax
  20.     or $1, %eax
  21.     mov %eax, %cr0
  22.  
  23.     .byte 0x66
  24.     .byte 0xEA
  25. _patchJmp:
  26.     .long 0x00000000
  27.     .word 0x0008
  28.  
  29. .code32
  30. _ap32:
  31.     mov $0x10, %ax
  32.     mov %ax, %ds
  33.     mov %ax, %es
  34.     mov %ax, %fs
  35.     mov %ax, %gs
  36.     mov %ax, %ss
  37.  
  38.     // stack pointer via immediate value setzen
  39.     .byte 0xBC
  40. _patchStack:
  41.     .long 0x00000000
  42.  
  43.     // c funktions adresse in eax laden
  44.     .byte 0xB8
  45. _patchMain:
  46.     .long 0x00000000
  47.  
  48.     // lauf Forest! call in den c code
  49.     call *%eax
  50.  
  51. apLoop:
  52.     cli
  53.     hlt
  54.     jmp apLoop
  55.  
  56. .align 4
  57. _gdtPtr:
  58.     .word 23
  59. _patchGdt:
  60.     .long 0x00000000
  61.  
  62. .align 8
  63. _gdt:
  64.     .quad 0x0000000000000000
  65.     .quad 0x00CF9A000000FFFF
  66.     .quad 0x00CF92000000FFFF
  67. _gdtEnd:
  68.  
  69. _apEnd:
  70.  
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • ARYFDO
    1 day
    # CSS 0.83 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://drive.google.com/file/d/1cvQPOZ7JecI0L6lqdIzIHJbHQBiDRT4U/view?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
Add Comment
Please, Sign In to add comment