similar to: How to send a cookie without having it CGI escaped

Displaying 20 results from an estimated 70 matches similar to: "How to send a cookie without having it CGI escaped"

2006 Mar 17
1
omega crawler: ht://dig or wget?
At wiki page: http://wiki.xapian.org/Omega I added a comment that ht://Dig looks like dead. Does anybody really use it? >From brief glance at docs I had a feeling it is not easy to configure. Maybe better crawler is GNU wget? Mature, stable, maintained? -- Peter Masiar
2011 Mar 01
5
btrfs wishlist
Hi all Having managed ZFS for about two years, I want to post a wishlist. INCLUDED IN ZFS - Mirror existing single-drive filesystem, as in ''zfs attach'' - RAIDz-stuff - single and hopefully multiple-parity RAID configuration with block-level checksumming - Background scrub/fsck - Pool-like management with multiple RAIDs/mirrors (VDEVs) - Autogrow as in ZFS autoexpand NOT
2006 Jan 11
9
Prototype & Cookies
Has anyone written any "cookie" class using prototype? Basically, what I am looking for is if there is an easy way to store mutiple cookies in a single cookie using hash or something - easy writing and retrieval (updating the cookie value). For eg - If I had 25 cookies for my domain 5 of the cookies would either get dropped or not be set (as there is a limit of 20 cookies per domain).
2006 Jun 22
0
escaped HTML in a select
Gday All; I have some HTML in a DB like ° and when I send it to the select helper it escapes it out. I have tried CGI::unescapeHTML() as well. Any ideas? Matta -- Posted via http://www.ruby-forum.com/.
2006 Sep 18
2
BUG: Possible issue with escaped hrefs
I noticed an interesting problem today when scripting against a web app. The application contained a link in it that used %20 instead of spaces. After running mechanize through the Charles debugging proxy I found that mechanize was converting %20 to %2520 (double escaping the %20). This appears to happen under both 0.5.4 and 0.6.0. Here''s a simple set of files that demonstrate
2008 Jun 13
1
link_to problem with '.' in :id parameter (must be escaped!)
Hi, I have this very normal link_to call: <%= link_to name, tag_path(name) %> The ''name'' can be something like "ASP.NET". That results in a URL like http://localhost:3000/tag/ASP.NET The Problem: I get a "no route" for this URL. I have a route map.tag ''/tag/:id'', :controller => ''items'', :action =>
2004 Sep 06
1
scp bug: escaped characters in files prevent copying
When copying a file with an escaped character, scp removes the escaping character before sending to the host. Is there a way to circunvent this? Some examples follow (linux machines) A: touch file\(new\) B: scp user at A:file\(new\) . user at A password: bash: -c: line 1: syntax error near unexpected token `(' bash: -c: line 1: `scp -f (' A: touch file\ 1 B: scp user at A:file\ 1 .
2005 Jul 04
1
Localization problems with leeding html escaped ÅÄÖ
Hi All. When translating a string to in swedish, using HTML codes for å,ä,ö i have a minor problem. Eg: (se.yaml) ui_core_over: &Ouml;ver All I get when calling l(''ui_core_over'') in my view is "Ouml;ver" The leeding & is missing, making the page look silly. The HTML characters works fine as long as it''s not used as the first letter in the string.
2008 Jan 23
1
cgi escaped basic auth data in ActiveResource?
ActiveResource basic auth currently breaks when certain chars are used in the user name and/or password field, e.g. ''@'' as part of the user name. I created a ticket on the issue[1], but closed it again as I''m not sure where the responsibility really belongs. It''s a showstopper for us, though.. Thoughts? [1] <http://dev.rubyonrails.org/ticket/10902>
2007 Aug 26
0
escaped ampersand in generated restful url
I am using a restful helper method to build a url for use in a link_to_remote method and for some reason the generated url has the ampersand that separates the parameters escaped (i.e. /action?param1=1&amp;param2=2 instead of /action?param1=1&param2=2) Any ideas why and how to make it stop? :-) The code in question resides in a helper, if that matters... Cheers, s0nspark -- Posted via
2011 Apr 19
1
RSpec/Webrat Checking output is properly escaped
I want to test that the JSON response from a create action is sanitized properly, but rspec or webrat appears to be parsing the output into proper HTML chars instead of escaped characters. I have verified that it escapes properly in the regular browser json response. The relevant RSpec test code is: include ActionView::Helpers::TextHelper include ActionView::Helpers::UrlHelper it
2004 May 28
1
[Bug 875] missing escape char in "Bad escaped character" message
http://bugzilla.mindrot.org/show_bug.cgi?id=875 Summary: missing escape char in "Bad escaped character" message Product: Portable OpenSSH Version: -current Platform: All OS/Version: All Status: NEW Severity: trivial Priority: P2 Component: sftp AssignedTo: openssh-bugs at mindrot.org
2004 Nov 30
1
[Bug 957] Shell special characters not escaped by scp
http://bugzilla.mindrot.org/show_bug.cgi?id=957 Summary: Shell special characters not escaped by scp Product: Portable OpenSSH Version: 3.9p1 Platform: All OS/Version: Linux Status: NEW Severity: minor Priority: P2 Component: scp AssignedTo: openssh-bugs at mindrot.org ReportedBy: greenrd
2007 Apr 17
1
Problem with escaped control characters
I have created a program for myself for backing up data to tape from my disk to disk to tape system, and after the initial day, I have been using the output of a dry run of rsync to determine what files need to be sent to tape. I think due to an upgrade in rsync the current version now escapes control sequences with something like \#010 instead of ^H, however this is now breaking my backup
2012 Dec 04
2
access.log: double quotes not escaped
Hello! I have seen that if an User Agent has double quotes in it will not be escaped when printed to access.log: > 192.168.0.2 - - [03/Dec/2012:20:45:54 +0100] "GET /stu HTTP/1.0" 200 313978 "-" "Che"atin" 15 I saw the code and there is not code to address this. -- xOneca_,,_
2012 Dec 09
0
access.log: double quotes not escaped
Hi, thanks for your finding. On 04/12/12 17:55, Xabier Oneca -- xOneca wrote: > I have seen that if an User Agent has double quotes in it will not be > escaped when printed to access.log: > >> 192.168.0.2 - - [03/Dec/2012:20:45:54 +0100] "GET /stu HTTP/1.0" 200 313978 "-" "Che"atin" 15 > I saw the code and there is not code to address this. I
2016 Mar 23
1
Redundant load in llvm's codegen compares to gcc when accessing escaped pointer?
The rationale given does not seem to square (IMHO) with the ubiquitous practice of having 0- or 1-length array at the end of a struct and then allocating additional elements for it using malloc, or the so-called "struct hack": http://c-faq.com/struct/structhack.html For example: typedef struct { enum inst_type type; unsigned num_ops; struct operand ops[1]; } inst;
2006 Aug 24
2
Passwordless SSH messes with escaped spaces
Hi, I'm trying to use rsync through ssh to pull files from PCs that need to be backup up. I set up the passwordless authentication and things work fine there. However there's a problem when I try to seal off the SSH access to restrict it to limited rsync only using the "command=" in authorized_keys. That by itself works, however not in combination with spaces in the file names.
2016 Mar 22
0
Redundant load in llvm's codegen compares to gcc when accessing escaped pointer?
Reply from Michael: &x points to the start of object x, and &x - something (something != 0) points outside object x. 'c' was a complete object, so &c-8 points outside any object, hence the formation of that pointer is already invalid (as is its dereference). https://gcc.gnu.org/ml/gcc/2016-03/msg00185.html >>On Fri, Mar 18, 2016 at 8:46 AM, Daniel Berlin <dberlin
2020 Mar 28
0
[klibc:update-dash] dash: expand: Ensure result is escaped in cvtnum
Commit-ID: f74d60ab87269a10d5efadff1887a260783017dd Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=f74d60ab87269a10d5efadff1887a260783017dd Author: Herbert Xu <herbert at gondor.apana.org.au> AuthorDate: Fri, 1 Jun 2018 18:25:29 +0800 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Sat, 28 Mar 2020 21:42:55 +0000 [klibc] dash: expand: Ensure