Skip to content

Instantly share code, notes, and snippets.

View nhalstead's full-sized avatar
👨‍💻
Something. Maybe cool

Noah Halstead nhalstead

👨‍💻
Something. Maybe cool
View GitHub Profile
@nhalstead
nhalstead / hit.sh
Last active February 8, 2025 18:49
#!/bin/bash
WEBHOOK_URL="http://fm51cv8878158xr8kru7gnvwcnie64ut.oastify.com/"
# Sending a POST request with JSON payload
data='{"message": "Hello, webhook!"}'
curl -X POST "$WEBHOOK_URL" \
-H "Content-Type: application/json" \
-d "$data"