Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Payloads binaries should have multiple possible names #6

Open
ejedev opened this issue Nov 21, 2023 · 0 comments
Open

Payloads binaries should have multiple possible names #6

ejedev opened this issue Nov 21, 2023 · 0 comments

Comments

@ejedev
Copy link
Owner

ejedev commented Nov 21, 2023

Right now a payload is defined in data/payloads.py like this:

    "binaryname": [
        "payload",
        "alternative payload"
    ],

However, for programs like python, it is inconsistent across systems what will come from the whereis command. Some may only return a result for python and some might only return a result for python3.

Ideally, defining a payload would switch to something like this:

   ("binaryname", "binaryname3"): [
        "payload",
        "alternative payload"
    ],

Instead of what it currently is:

    "binaryname": [
        "payload",
        "alternative payload"
    ],
    "binaryname3": [
        "payload",
        "alternative payload"
    ],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant