Skip to content

Instantly share code, notes, and snippets.

View philipprochazka's full-sized avatar

Philip Procházka philipprochazka

View GitHub Profile
@philipprochazka
philipprochazka / curl_cheatsheet.md
Created December 19, 2024 23:46 — forked from mpoerwito/curl_cheatsheet.md
curl cheatsheet from HTB

cURL

Command Description
 curl -h cURL help menu
 curl inlanefreight.com Basic GET request
 curl -s -O inlanefreight.com/index.html Download file
 curl -k https://inlanefreight.com Skip HTTPS (SSL) certificate validation
 curl inlanefreight.com -v Print full HTTP request/response details
 curl -I https://www.inlanefreight.com Send HEAD request (only prints response headers)
@philipprochazka
philipprochazka / AdbCommands
Created May 15, 2024 20:41 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader