This is about encoding text in/for a URL. Some characters are not valid for URLs. For instance ' or \ and more.
0
votes
1answer
27 views
How to decode URL from JS in PHP?
Currently working on old mobile project. The main problem is that i receive a parameter via GET method which is for example an a char and JS automatically encodes it (i am building url on click from ...
0
votes
1answer
26 views
URL parameter Decoding not working
In my java web application I have to construct a URL and then call the URL. While creating the URL I am encoding the parameter value using URLEncoder.encode("text","UTF-8") But when we get the ...
0
votes
1answer
30 views
Python urlparse.parse_qs unicode url
urlparse.parse_qs is usefull for parsing url parameters, and it works fine with simple ASCII url, represented by str. So i can parse a query and then construct the same path using urllib.urlencode ...
3
votes
2answers
37 views
php location redirect and special chars
Until now I was only reading but now I have my first question and hopefully someone can help me with it.
You perform a search by submit:
input: Lösung? Tösung& -> url: ...
1
vote
1answer
20 views
urllib.quote_plus() equivalent in JavaScript
Trying to port a snippet of code from Python:
my_input = "this&is£some text"
encoded_input = urllib.quote_plus(str(my_input))
...to JavaScript:
var my_input = "this&is£some text";
...
0
votes
3answers
43 views
urlencode and GET request breaks at Ampersand
I am working on a wordpress website which has thousands of pages and the owner has entered an affiliate link for each page via a custom field named: afflink
The affiliate link is outputted on the ...
0
votes
0answers
25 views
deleting accents and spaces from URLs
hello: i'm trying to optimize my Urls, using urlencode() it works fine using "+" instead of %20 in the spaces, but some names has uppercase and latin characters, offcourse they are not any frinedly, ...
0
votes
1answer
19 views
WCF REST read URL-encoded response
I'm trying to use WCF to consume a 3rd-party REST service which responds with URL-encoded data:
a=1&b=2&c=3
I have this now:
[DataContract]
class Response {
[DataMember(Name="a")]
...
0
votes
1answer
38 views
Qt, QUrl, QUrlQuery: encoding special character in query string
I create a url query like this:
QString normalize(QString text)
{
text.replace("%", "%25");
text.replace("@", "%40");
text.replace("‘", "%27");
...
1
vote
1answer
21 views
In XSLT 2.0, why is there no fn:decode-for-uri?
I have a URI encoded string in XML but can't decode it using xslt.
There is a fn:encode-for-uri to encode the string
But no decode-for-uri to decode.
Is there a function I have missed?
If not, why ...
0
votes
0answers
27 views
Should URLs be encoded with encodeURIComponent() or escape()?
I am trying to encode URL using encodeURIComponent method. Some parameters in URL also contain special characters (of ISO-8859-1 charset) like é, è, which are not correctly encoded.
For example éis ...
0
votes
2answers
36 views
Encoding Decoding umlauts for REST WS
I have a REST Web Service (Java-Spring) that takes HTTP GET parameters.
The parameters can contain some local data for example Norwegian or German names or streets: e.g. street=Rübenkamp
I wonder is ...
0
votes
0answers
27 views
Generating URL with explode, preg_replace and urlencode in PHP
I'm trying to build URL with PHP, URL contains non-latin characters (slovenian č, š, and ž).
I'm having some problems because I also need to replace space with + and also encode non-latin characters.
...
0
votes
1answer
41 views
php don't recieve encoded $_GET values
I have an encrypted with public key and then encoded string, it's something like 200 chars.
SENDER:
$pubkey = file_get_contents('http://localhost/test/key.pub');
openssl_public_encrypt('hello world', ...
0
votes
2answers
45 views
response.getStatusLine():HTTP/1.1 400 Bad Request
I have passed date field as string into URL and date is encoded through URLEncoder.encode(date,"UTF-8")
generated Url is as below:
...
0
votes
0answers
32 views
URLEncoding for mailto with Outlook 2003
I have a problem with a "mailto" link and Outlook 2003.
For our new blog, we integrated a "recommend page"-button which is simply a mailto. The subject and body text can be defined by our editors in ...
1
vote
2answers
64 views
Java Encoding issue with Ñ
I´ve problems when getting a String in the request of an ajax Call.
The String have the word, as example, "Ñoño" but when i read the parameter using:
String parameter = ...
0
votes
2answers
42 views
Spring security and special characters
I need to log in with j_spring_security_check using special characters in the username and/or in the password via url
...
0
votes
5answers
33 views
urldecode losses 1 parameter
I'm using urlencode & urldecode to pass variables trough a html-form.
$info = 'tempId='.$rows['tempID'].'&tempType='.$rows['tempType'].'&dbId='.$rows['ID'];
echo '<input type="hidden" ...
0
votes
0answers
43 views
string passed through php always has spaces translated to + signs. How to decode correctly?
I hava json string that's getting appended to a url and then put into a php cookie.
//redirect url with short json string appended
echo "<script type=\"text/javascript\">document.location = ...
0
votes
1answer
64 views
URL Encoded Base64 Encoded File Data
I'm trying to encode an image url to Base64 in ASP.NET so that that an open source API can process my request. The support team on the open source end of things sent me this code from their PHP ...
0
votes
3answers
44 views
How to secure query strings in php ?
the urlencode and urldecode functions are there, but if you have an encoded value that can be easily decoded using the urldecode function.
Is there any other method which can be used to make the ...
0
votes
2answers
69 views
Percentage Encoding of special characters before sending it in the URL
I need to pass special characters like #,! etc in URL to Facebook,Twitter and such social sites. For that I am replacing such characters with URL Escape Codes.
return valToEncode.Replace("!", ...
0
votes
1answer
57 views
WCF UriTemplate UrlEncode
Imagine I want to call a REST service using WCF.
I have the following contract
[ServiceContract]
public interface ISomeRestApi
{
[OperationContract]
[WebInvoke(Method = "PUT", UriTemplate = ...
0
votes
3answers
52 views
Encoding URL partially in Javascript and PHP (url tweak)
that might be something strange when I say that I want to encode a URL partially, But I am caught in this situation and it seems that I got no other solution...
here is my code snippet
$url = ...
1
vote
1answer
67 views
How do I avoid double URL encoding when rendering URLs in my website?
Users provide both properly escaped URLs and raw URLs to my website in a text input; for example I consider these two URLs equivalent:
https://www.cool.com/cool%20beans
https://www.cool.com/cool ...
0
votes
3answers
82 views
stop encoding special characters in textarea on submit
I want to stop text area from encoding special characters.
If I input 1:2#aa^bb in text area then on submit it converts into 1%3A2%23aa%5Ebb.
I want the text to be submitted, as it is, without any ...
0
votes
1answer
34 views
in slim how can I pass a file path into a variable?
what i have right now is:
$app->get(/folderBrowse/:path function($app){
bla bla bla
}); // I know this is not using '' or ,
but it's just for example, because I've tried it with many ...
2
votes
1answer
78 views
Delphi/Cpp Equivalent to RawURLEncode in PHP
I was looking for a equivalent function to PHP RawURLEncode (and Decode) in cpp builder (or delphi).
I use the following string to test: _%_&_+_=_ _"_'_a_b_c_d_e_f_g_h_ (I wish to encode only var ...
0
votes
0answers
54 views
Unable to extract post arguments after encodeURIComponent()
I encoded a parameter string from the fields collected by a form using encodeURIComponent() and then sent it to the server using XMLHttpRequest.
In the server side PHP script I'm using ...
0
votes
0answers
31 views
My feed is randomly producing a 404
I've been using my feed for a while now, and for some reason it decided to stop working.
http://www.gamerun.co.uk/feed
I'm url encoding the urls as they have multiple Get variables in them and it ...
1
vote
1answer
114 views
MVC potentially dangerous Request.QueryString value
I have search field on Page.
When I try to search by < all works fine. But if try search by <! it fails.
I have simple controller method:
[ValidateInput(false)]
public ActionResult ...
1
vote
2answers
80 views
Python submit post data using mechanize
The url that i have to submit to the server looks like this:
www.mysite.com/manager.php?checkbox%5B%5D=5&checkbox%5B%5D=4&checkbox%5B%5D=57&self=19&submit=Go%21
The post data I put ...
0
votes
2answers
65 views
url Encoding in ios
I get a link from server to image has already been Encoding so it comes with %20
But sometimes I get a code include Hebrew characters, so I need to do Encoding agian , With the above code:
But after ...
0
votes
1answer
88 views
How to send post data which contains php source with symbols like (+, *, /, -) and writing that data to a file using ajax request?
So the complete scenario is, i am making a web application that looks like w3schools "Try it yourself!" option. But as of now leaving about security and making the core part of the web application.
...
0
votes
0answers
42 views
Why doesn't Google Analytics Goals read encoded URLs?
I am trying to set goals/funnels on google analytics. A part of the url is encoded. For example:
step 1: ...
2
votes
1answer
63 views
PHP OWASP TOP 5 - Protection against Cross-site scripting (XSS) list item 4 and 5
At https://www.owasp.org/index.php/PHP_Top_5#How_to_Determine_if_you_are_Vulnerable_2 link, under title P2: Cross-site scripting > How to Protect Against It; in item 4 and 5 it's written that:
item ...
0
votes
0answers
29 views
encoded js files path is not working in html webpage
i want encode my external JavaScript and jquery file paths which are i used in my webpage. when i encoded dose files path that files are not working. is it possible or not.
encoded url which we ...
-2
votes
1answer
180 views
Passing parameters through URL in CodeIgniter
I'm having a problem regarding passing parameter from url. The function I use sometimes give the correct result and sometimes not.
here is my controller functions:
public function link_gen(){
...
0
votes
1answer
95 views
On server side URL parameter value after encode/decode looks 'strange'. Why?
On client side (in Browser) URL looks like this one:
http://www.google.com?param1=Name1%3DValue1
it means, that parameter param1 has value Name1=Value1
On Server Side, I see, that param1 has value ...
1
vote
0answers
67 views
How do I prevent my adwords URL being encoded on Drupal 7?
I am having a horrible time with adwords links to my Drupal 7 site. When the link comes in from google adwords, the URL (specifically the query string) is url encoded and makes the page 404. Is ...
1
vote
1answer
146 views
HttpContext.Current.Request.QueryString incorrectly decodes §
I have a query string which contains the character §, for example /search?q=5§2. This should be encoded as /search?q=5%c2%a72, but HttpContext.Current.Request.QueryString.ToString() gives me ...
1
vote
0answers
99 views
PHP Use Google Docs View with local files
I want to display doc. files in a website.
Is there any way I can use local doc. files in the code below instead of an online link?
<iframe ...
1
vote
2answers
44 views
Special symbols in URLs
I've just come across this URL for AngelList - http://✌.com/. It's got a weird symbol in it and it redirects to https://angel.co/. Anyone know how this works? I didn't think you could use symbols like ...
2
votes
1answer
40 views
PHP XML encoding regex
I need to find a way to urlencode the values within xml tags but keeping the tags intact using PHP.
Maybe it's possible using an regular expression checking for begin tags and end tags with no tags ...
0
votes
0answers
94 views
encoding wordpress link to wordpress page url parm redirect to iframe works on chrome/FF not IE or mobile phone
I have a plugin called mybb postalicious for wordpress with a widget that gets latest forum threads from my forum.
My forum is integrated in the WP design. It's a template with an iframe with a code ...
0
votes
2answers
63 views
Why does this URL cause a bad request on my server?
I have a URL which ends with a %. Like: /view/this-is-100%25. Is it not allowed to have % at the end of a URL? If it's not allowed how can I do it in another way and if it's allowed, why does it cause ...
0
votes
1answer
79 views
How to prevent decoding of encoded forward slashes?
I've got aform with a continue link that is send by email. In this link I've added some sensitive encrypted data that is encoded by Base64. The value contains a slash which is encoded into %2F (with a ...
0
votes
2answers
177 views
How to handle ampersands in URL parameters?
I am having the following issue:
I am using an application that allows users to concatenate text to build a URL that passes parameters to an ASP page via GET method, i.e. something like:
...
0
votes
0answers
60 views
After signing into Twitter Mobile using Web Intents, URL converts spaces to plus signs (%2520)
I've been working with Web Intents to provide simple Tweet capabilities via the user's default mobile device. However, if the user is not currently signed into Mobile Twitter and accesses the tweet ...
