Skip to content

Instantly share code, notes, and snippets.

View Ephigenia's full-sized avatar
🕊️
I may be slow to respond.

Marcel Eichner Ephigenia

🕊️
I may be slow to respond.
View GitHub Profile
#!/usr/bin/env php
<?php
function testForExploit($url = NULL) {
$oCurl = curl_init($url);
curl_setopt_array($oCurl, array (CURLOPT_HTTPHEADER => array('Range: bytes=0-4')
,CURLOPT_RETURNTRANSFER => 1
,CURLOPT_TIMEOUT => 15
,CURLOPT_CONNECTTIMEOUT => 0
,CURLOPT_SSL_VERIFYHOST => 0