Skip to content

Files

Latest commit

393a869 · Mar 8, 2025

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 28, 2023
Nov 25, 2024
Jun 17, 2023
Mar 8, 2025
May 24, 2023
Mar 3, 2020
Oct 19, 2022
Oct 10, 2019
Jun 17, 2023
Mar 29, 2021
Apr 24, 2022
Jul 17, 2022
Feb 5, 2022
Jul 17, 2022
Jul 17, 2022
Jun 17, 2023
Mar 29, 2021
Apr 24, 2022
Apr 24, 2022
Jul 28, 2021
Jul 17, 2022
Mar 20, 2021
Jun 17, 2023
Jul 17, 2022
Oct 17, 2022
Mar 29, 2021
Jan 25, 2022
Mar 29, 2021
Jan 25, 2022
Feb 5, 2022
Apr 12, 2021
Jul 14, 2022
Mar 29, 2021
Jan 25, 2022
Mar 18, 2021
Dec 28, 2021
Mar 29, 2021
Apr 17, 2022
Mar 29, 2021
Mar 18, 2021
Jun 28, 2023
Nov 13, 2021
Mar 18, 2021
Jan 25, 2022
Mar 29, 2021
Aug 22, 2022
Mar 29, 2021
Dec 19, 2022
Jan 25, 2022
Nov 11, 2024
Jul 26, 2022
Jul 17, 2022
Mar 29, 2021
Mar 29, 2021
May 18, 2022

Qiling - Sample Codes

cd examples

Shellcode Executor

  • Multi ARCH, Cross Platform Shellcode Executor
$ python3 shellcode_run.py

X86_64 FreeBSD binaries

  • X86_64 FreeBSD binary, simple helloworld
$ python3 hello_x8664_freebsd.py

X86_64 macos binaries

  • X86_64 macos binary, simple helloworld
$ python3 hello_x8664_macos.py

X86 macos binaries

  • X86 macos binary, simple helloworld
$ python3 hello_x86_macos.py

X86_64 Linux binaries

  • X86_64 Linux binary, helloworld with manual disassembler output
$ python3 hello_x8664_linux_disasm.py
  • X86_64 Linux binary, simple helloworld
$ python3 hello_x8664_linux.py

X86 Linux binaries

  • X86 Linux binary, reversing.kr linux crackme bruteforce solver
$ python3 crackme_x86_linux.py
  • X86 Linux binary, simple helloworld
$ python3 hello_x86_linux.py

X86 Windows binaries

  • X86 Windows binary, ctf challage from BJWXB2019, bruteforce solver
$ python3 crackme_x86_windows.py
  • X86 Windows binary, example, how to use ql.patch and ql.set_callback
$ python3 crackme_x86_windows_setcallback.py
  • X86 Windows binary, example, ql.set_callback
$ python3 crackme_x86_windows_unpatch.py
  • X86 Windows binary, helloworld with debug mode on
$ python3 hello_x86_windows_debug.py
  • X86 Windows binary, with multithreading
$ python3 multithreading_x86_windows.py
  • X86 Windows binary, catching wannacry's killerswtich
$ python3 wannacry_x86_windows_setexit.py

X86_64 Windows binaries

  • X86_64 Windows binary, example on how to set output
$ python3 disasm_x8664_windows.py

ARM64 Linux binaries

  • ARM64 Linux binary, exit when there is a write to memory 0x555555566260
$ python3 exitmemwrite_arm64_linux.py
  • ARM64 Linux binary, simple helloworld
$ python3 hello_arm64_linux.py

ARM binaries

  • ARM Linux binary, simple helloworld
$ python3 hello_arm_linux.py
  • ARM Linux binary, simple stack overflow
$ python3 bofsample_arm_linux.py
  • ARM Linux binary, simple helloworld with debug mode
$ python3 hello_arm_linux_debug.py

MIPS32EL binaries

  • MIPS32EL Linux binary, simple helloworld
$ python3 hello_mips32el_linux.py