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

Decision making #45

Merged
merged 7 commits into from
May 13, 2024
Merged

Decision making #45

merged 7 commits into from
May 13, 2024

Commits on May 7, 2024

  1. chg: move hints.json file-reading into a separate class

    This should be the first step towards multi-level LLM decision
    making, e.g., use-cases where we have an outer loop containing e.g.
    high-level decision making, and an inner loop that e.g. contains
    a concrete sub-usecase execution.
    
    For example: we have an outer loop that can iterate over multiple
    attack classes, and an inner loop that executes examples for the
    respective (current) attack class
    andreashappe committed May 7, 2024
    Configuration menu
    Copy the full SHA
    fbe6ba7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d8791be View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1aae1f0 View commit details
    Browse the repository at this point in the history
  4. add a privesc_guided that first calls an enumeration tool

    This is a rough prototype that:
    
    - inititally downloads and executes an enumeration tool (lse)
    - executes and caputure its output
    - use gpt-4-turbo to generate up to 3 attack classes
    - use gpt-3.5-turbo with up to 20 steps per attack class to generate commands
    andreashappe committed May 7, 2024
    Configuration menu
    Copy the full SHA
    9ac3ba4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f71a66e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fbeeec8 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. rename packages/python-files

    Now we have:
    
    - usecases/base.py for basic wiring
    - usecases/common_patterns.py for reusable control loops/pattersn
    - usecases/privesc/windows.py for all windows-based use-cases
    - usecases/privesc/linux.py for all linux-based use-cases (migth be splitup further)
    - usecases/privesc/common.py for shared code within usecases/privesc
    andreashappe committed May 10, 2024
    Configuration menu
    Copy the full SHA
    c19651c View commit details
    Browse the repository at this point in the history