> ## Documentation Index
> Fetch the complete documentation index at: https://docs.specterops.io/llms.txt
> Use this file to discover all available pages before exploring further.

# pwd

> Prints the current working directory for the agent

## Summary

Prints the current working directory for the agent

* Needs Admin: False
* Version: 1
* Author: @its\_a\_feature\_

### Arguments

## Usage

```
pwd
```

## MITRE ATT\&CK Mapping

* T1083

## Detailed Summary

Uses ObjectiveC to print the current working directory:

```javascript theme={null}
let fileManager = $.NSFileManager.defaultManager;
let cwd = fileManager.currentDirectoryPath;
```
