PDA

View Full Version : خطا در ارسال مقدار به یک فایل php



ahmadreza.s
جمعه 14 اسفند 1394, 11:25 صبح
سلام

من هر موقع میخوام یه مقدار رو به یه فایل پی اچ پی با متد پست بفرستم این خطارو بهم میده :


<html><body><script type="text/javascript" src="/aes.js" ></script><script>function toNumbers(d){var e=[];d.replace(/(..)/g,function(d){e.push(parseInt(d,16))});return e}function toHex(){for(var d=[],d=1==arguments.length&&arguments[0].constructor==Array?arguments[0]:arguments,e="",f=0;f<d.length;f++)e+=(16>d[f]?"0":"")+d[f].toString(16);return e.toLowerCase()}var a=toNumbers("f655ba9d09a112d4968c63579db590b4"),b=toNumbers("98344c2eee86c3994890592585b49f80"),c=toNumbers("156b70487dc1ff34a92355f5e80c66e2");document.cookie="__test="+toHex(slowAES.decrypt(c,2,a,b))+"; expires=Thu, 31-Dec-37 23:55:55 GMT; path=/"; document.cookie="referrer="+escape(document.referrer); location.href="http://www.ahmadreza-s.gigfa.com/ccc.php?ckattempt=1";</script><noscript>This site requires Javascript to work, please enable Javascript in your browser or use a browser with Javascript support</noscript></body></html>

کد فایل پی اچ پی :


<?php
if(isset($_POST['p'])){
echo "True";


}
else{
echo "False";
}


?>




کد سی شارپ :



class MyWebRequest
{
private WebRequest request;
private Stream dataStream;


private string status;


public String Status
{
get
{
return status;
}
set
{
status = value;
}
}


public MyWebRequest(string url)
{
// Create a request using a URL that can receive a post.


request = WebRequest.Create(url);
}


public MyWebRequest(string url, string method)
: this(url)
{


if (method.Equals("GET") || method.Equals("POST"))
{
// Set the Method property of the request to POST.
request.Method = method;
}
else
{
throw new Exception("Invalid Method Type");
}
}


public MyWebRequest(string url, string method, string data)
: this(url, method)
{


// Create POST data and convert it to a byte array.
string postData = data;
byte[] byteArray = Encoding.ASCII.GetBytes(postData);


// Set the ContentType property of the WebRequest.
request.ContentType = "application/x-www-form-urlencoded";


// Set the ContentLength property of the WebRequest.
request.ContentLength = byteArray.Length;


// Get the request stream.
dataStream = request.GetRequestStream();


// Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length);


// Close the Stream object.
dataStream.Close();


}


public string GetResponse()
{
// Get the original response.
WebResponse response = request.GetResponse();


this.Status = ((HttpWebResponse)response).StatusDescription;


// Get the stream containing all content returned by the requested server.
dataStream = response.GetResponseStream();


// Open the stream using a StreamReader for easy access.
StreamReader reader = new StreamReader(dataStream);


// Read the content fully up to the end.
string responseFromServer = reader.ReadToEnd();


// Clean up the streams.
reader.Close();
dataStream.Close();
response.Close();


return responseFromServer;
}
}





فراخوانی :




MyWebRequest a = new MyWebRequest("http://www.ahmadreza-s.gigfa.com/ccc.php", "POST","p=salam");
MessageBox.Show(a.GetResponse());

rezashaban
جمعه 14 اسفند 1394, 13:57 عصر
سلام دوست من
این متنی که من دیدم میگه یا بروزرت از جاوااسکریپت پشتیبانی نمیکنه یا از تنظیمات بروزرت جاوااسکریپت رو غیرفعال کردی

ahmadreza.s
جمعه 14 اسفند 1394, 14:50 عصر
سلام
بعد از تحقیقی که کردم فهمیدم اکثر هاست های رایگان کوکی میفرستن و اگه برنامه نویس اونو هندل نکنه ، خود مرورگر اونو مدیریت میکنه و این پیغام رو به ما نمایش میده !
هاست رو عوض کردم و درست شد ...