Code Monkey home page Code Monkey logo

rekcap-backup's Introduction

rekcap

rekcap:packer

Packing:

* Create elf header
* Add single program header which will load whole binary into memory
* Shove in some compiled position independent assembly and set p_entry
* Provide random elf and XOR it into RW segment
* Correctly set offsets and sizes (must be 0x200000 between PT_LOAD segments)

Unpacking:

* Traverse stack to AUXV
* Extract elf program header info from AUXV
* mmap(exec|write) to elf scratch pad
* XOR original elf from segment into newly mapped memory
* Foreach PT_LOAD segment in original elf : mmap and memcpy
* Get PT_INTERP segment in original elf, path to ld-linux
* fstat, mmap and read in ld-linux
* Foreach PT_LOAD segment in ld-linux : mmap and memcpy (DYN so .text is va:0, needs random address)
* Update the auxv with values from original elf
* Update AT_BASE in auxv with address ld-linux .text segment loaded to
* Jump to ld-linux e_entry

Auxillary Vector Keys:

AT_PHDR  : 3
AT_PHENT : 4
AT_PHNUM : 5
AT_ENTRY : 9

Userland Exec Paper:

https://grugq.github.io/docs/ul_exec.txt

rekcap-backup's People

Contributors

jon-stewart avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.