Jump to content

cURL to fopen


marklarah

Recommended Posts

I suck at both.

 

Is there anyway of turning this script into using fopen instead of cURL?

//begin verification hack - PROOF OF CONCEPT ONLY
$username = $_POST["user"];
$pusername = str_ireplace("_","+",$username);
$url = "somewebsite=". $pusername ."&ip=".$_SERVER['REMOTE_ADDR'];

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);

if ($output!==("1:".str_ireplace("+"," ",$pusername))){ die("retry (some sort of error) " . $pusername); }
//end LL verification hack

 

? Thanks...

 

Link to comment
Share on other sites

this is what i have

 

//begin verification hack - PROOF OF CONCEPT ONLY
$username = $_POST["user"];
$pusername = str_ireplace("_","+",$username);
$url = "site=". $pusername ."&ip=".$_SERVER['REMOTE_ADDR'];
$fhandle = fopen($url,"r");
$tempqb="";
while ( ! feof( $fhandle )){
$tempqb = $tempqb . fgets( $fhandle, 1024 );
}
$output = $tempqb;
if ($output!="1:".str_ireplace("+"," ",$pusername))  { die("Nope, unicorns " . $pusername); }
//end LL verification hack

Link to comment
Share on other sites

 

Why not try this..

<?php
//begin verification hack - PROOF OF CONCEPT ONLY
$username = $_POST["user"];
$pusername = str_ireplace("_","+",$username);
$url = "site=". $pusername ."&ip=".$_SERVER['REMOTE_ADDR'];
$tempqb="";
$output=file_get_contents($url);
if ($output!="1:".str_ireplace("+"," ",$pusername))  { die("Nope, unicorns " . $pusername); }
//end LL verification hack
?>

Link to comment
Share on other sites

final bash works theo.

<?php
$username="red_arrow";
$pusername = $_POST["user"];
$pusername = str_ireplace('_','+',$username);
$url = "site=". $pusername ."&ip=".$_SERVER['REMOTE_ADDR'];
$tempqb="";
$output=file_get_contents($url);
if ($output!="1:".str_ireplace("+"," ",$pusername))  { die("Nope, unicorns " . $pusername); }
//end LL verification hack
?>

result

Nope, unicorns red+arrow

Link to comment
Share on other sites

use preg_replace.

 

<?php
$username="red_arrow";
$pusername = $_POST["user"];
$pusername = preg_replace("/\_/i","+",$username);
$url = "site=". $pusername ."&ip=".$_SERVER['REMOTE_ADDR'];
$tempqb=" ";
$output=file_get_contents($url);
if($output!="1:".preg_replace("/\+/i"," ",$pusername))  { die("Nope, unicorns " . $pusername); }
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.