Skip to content
EZForever edited this page Sep 21, 2020 · 10 revisions

TODO

Entries here are not ordered.

Development goals

PEDoll will keep its "Indev" state until all entries in this part are finished.

These changes can be done a lot easier if we have an actual script engine - see "Under consideration" entries below

  • Make 'hook action' a generic concept (remove --echo/--ctx/--dump and make them expression functions; whole "hook action" is a expression/function)
  • Fix miserable user experince in expressions
    • pre-defined constant dictionary (e.g. (HKEY)0x80000002 -> HKEY_LOCAL_MACHINE)
    • custom data processing functions (e.g. parseSockAddr() instead of a super long expression)
  • A sane way to introduce arguments for scripts
    • Pass to Main() as a string-object or string-string dictionary, or simply string[] args
  • Finish API scripts for (at least) APIs listed in legacyDocuments/apis.txt
    • Depends on above two entries

Planned

  • All the necessary pages on this wiki
    • "Legacy documents"

Under consideration

  • Switch EvalEngine compiler from CSharpCodeProvider to JScriptCodeProvider or Roslyn?
    • Switch to JScript/Javascript also allows some sort of pre-compilcation - pass expr as argument and call eval() in script code instead of pasting expr into the source file
    • And simpler custom function: like a context dictionary but with type JScriptObject<String, Function> (Function returned by eval()ing the function)
    • HOWEVER, ES6 features need to be supported by the engine (for arrow functions), and JScript.NET only implements ES4

-- or --

  • Make EvalEngine a actual script engine? (for custom functions, predefined constants' dictionary, waitForClient()/waitForHook() with callbacks, etc)

  • A peacefl way to disconnect a client (Puppet::PACKET_BYE)?

  • 'end --persist' via FreeLibraryAndExitThread()?

  • A readonly value / command for module bases?

    • hook +0x1234 .../hook module+0x1234 ...?
  • A method for unserializing memory?

    • Similar to struct module in Python, or String.Format() in reverse
  • Make Monitor & libDoll support Windows XP?

    • inet_pton, and?
  • Error reporting for loaddll? (will req. a design change)

  • Skip "after" phase if "before" phase is rejected?

  • Make "terminate" verdict result in a not modified execution breakpoint?

    • Is this even possible?
  • Save EFLAGS/RFLAGS along with GP registers? (pushfd/popfd/pushfq/popfq)

    • And FP/XMM registers? (fxsave/fxrstor)
    • setjmp()'s jmp_buf is a good guide
    • Or just freeze the thread entirely (GetThreadContext() contains all the things)
  • More ways to create a Doll client?

  • Write support to hook context?

    • Essentially made PEDoll a "debugger"
  • Should we conform to MS' DLL Best Practices?

Clone this wiki locally