> For the complete documentation index, see [llms.txt](https://documentation.hak5.org/shark-jack/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.hak5.org/shark-jack/writing-payloads/payload-development-basics.md).

# Payload Development Basics

Shark Jack payloads are written in Bash with Ducky Script and can be developed in any standard text editor, such as notepad or vi.

Payload files must be named either payload.sh or payload.txt.&#x20;

Payloads should begin with the typical shebang /bin/bash.

```
#!/bin/bash
```
