Skip to content

Instantly share code, notes, and snippets.

@philipsinnott
Created March 20, 2024 20:55
Show Gist options
  • Save philipsinnott/345a4cdc8db2e0dec6a31fa4e9287f14 to your computer and use it in GitHub Desktop.
Save philipsinnott/345a4cdc8db2e0dec6a31fa4e9287f14 to your computer and use it in GitHub Desktop.
Redirect to arbitrary URLs via user-supplied input
<?php
$url = $_GET['u'];
header("Location: $url");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment