list (ls, dir)

Description

List all objects under the current object in the object tree. The tree displays as a graphical representation of the object ID, name, and type.

Syntax

list [all]
  • all: Optional. Displays all objects in the object tree.
  • Passing no arguments lists only the immediate children of the current object.

Examples

  • To list the objects in the current object tree:
    AllApplications>> List
    1: WebGoat_4_0 (Application [local] [registered])
    2: test_application (Application [local] [registered])
  • To list all objects in the Object Tree:
    AllApplications>> LS all
    
    1: WebGoat_4_0 (Application [local] [registered])
    |----198: compile (Project [local] [registered])
    |----|----470: WebContent\lp\JavaScriptValidation.html (Source)
    |----|----475: WebContent\lp\RemoteAdminFlaw.html (Source)
    |----|----483: WebContent\lp\WelcomeScreeen.html (Source)
    |----|----474: WebContent\lp\ReflectedXSS.html (Source)
    |----|----477: WebContent\lp\SqlInjection.html (Source)
    . . .