A Trick To Make Virus Self-Contained | How To Write A Computer Virus

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ม.ค. 2025

ความคิดเห็น • 2

  • @nikki977
    @nikki977 3 หลายเดือนก่อน +2

    No more fancy ASCII banners I guess?

    • @LinuxVirusEngAndResearch
      @LinuxVirusEngAndResearch  3 หลายเดือนก่อน +1

      Avoiding RO data can save you lots of headaches but it's actually not entirely impossible. I have a prototype in the virus framework that allows it, but requires a linker script to arrange text section right next to ro_data so they can be extracted as a whole binary blob. github.com/yundddd/vf/blob/master/common/extract_text_section.py#L35 this tool hooks into the build system here github.com/yundddd/vf/blob/master/nostdlib/nostdlib.bzl#L52