Giter Site home page Giter Site logo

Comments (3)

Wenzel avatar Wenzel commented on June 16, 2024 1

Hi,

thank you for the detailed bug report.
it's a good idea to compare with checksec.sh and this project has been there for a long time.

checksec.sh PIE code

// pseudo code
switch (type) {
  case EXEC:
    -> No PIE
  case DYN:
    if 'DEBUG' in dynamic segment {
      -> PIE enabled
    } else {
      -> PIE DSO
    }
    case REL:
      -> PIE REL
    default:
      -> Not an ELF
}

I would like to rely as much as possible on LIEF, and avoid implementing custom logic in checksec.py.

LIEF's implementation of is_pie() checks looks like this

// pseudo code
if PT_INTERP and ET_DYN {
  return true
} else {
  return false
}

ping @romainthomas ➡️ what about updating is_pie() like this:

if ET_DYN or ET_REL {
  return true
} else {
  return false
}

@ekilmer in the meantime, i could update checksec.py implemtation like this:

    @property
    def pie(self) -> PIEType:
        if self.bin.header.file_type == E_TYPE.DYNAMIC:
            if self.bin.has(lief.ELF.DYNAMIC_TAGS.DEBUG):
                return PIEType.PIE
            else:
                return PIEType.DSO
        elif self.bin.header.file_type == E_TYPE.RELOCATABLE:
            return PIEType.REL
        return PIEType.No

⬆️ and this adds support for relocatable PIE type 😉

from checksec.py.

Wenzel avatar Wenzel commented on June 16, 2024 1

Released a new version of checksec.py, closing this issue !

from checksec.py.

ekilmer avatar ekilmer commented on June 16, 2024

This looks great! Thank you for the informative response!

from checksec.py.

Related Issues (20)

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.