Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #47482
| Date | 2013-06-09 13:31 -0500 |
|---|---|
| From | Tim Chase <python.list@tim.thechases.com> |
| Subject | Re: Redirecting to a third party site with injected HTML |
| References | <422dd712-2bc5-4c48-b6ca-62face5320c7@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2930.1370804668.3114.python-list@python.org> (permalink) |
On 2013-06-09 10:09, guytamir1@gmail.com wrote: > I'm working on a new project and i want to receive a request from a > user and to redirect him to a third party site, but on the page > after i redirect my users i want to them to see injected html (on > the third party site.) As others have stated, I'm not sure this is a Python problem. Two possibilities occur to me: 1) Your server returns a page with an <iframe> that points to the page they want, but then injects HTML into that iframe using ECMAScript. Some browsers may thwart you from doing this. Test thoroughly in multiple browsers. 2) Your server goes and fetches the contents of the requested page, then mungs it, and returns it from your server. This might also require modifying internal links on the target page so that they redirect through your local site. Be sure to test thoroughly, and this may also have legality concerns (you're copying others' content and displaying it on your site, so there may be copyright issues), so also check with your lawyer. Generally, these techniques are in the same bag of tricks that phishers use, so you might also have to make sure that your site is not getting filed as a phishing site (unless you are trying to make a phishing site, in which case don't). -tkc
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Redirecting to a third party site with injected HTML guytamir1@gmail.com - 2013-06-09 10:09 -0700
Re: Redirecting to a third party site with injected HTML Joel Goldstick <joel.goldstick@gmail.com> - 2013-06-09 13:14 -0400
Re: Redirecting to a third party site with injected HTML Fábio Santos <fabiosantosart@gmail.com> - 2013-06-09 18:22 +0100
Re: Redirecting to a third party site with injected HTML guytamir1@gmail.com - 2013-06-09 10:52 -0700
Re: Redirecting to a third party site with injected HTML Joel Goldstick <joel.goldstick@gmail.com> - 2013-06-09 14:03 -0400
Re: Redirecting to a third party site with injected HTML Roy Smith <roy@panix.com> - 2013-06-09 14:53 -0400
Re: Redirecting to a third party site with injected HTML Ian <hobson42@gmail.com> - 2013-06-09 19:24 +0100
Re: Redirecting to a third party site with injected HTML Guy Tamir <guytamir1@gmail.com> - 2013-06-09 23:50 -0700
Re: Redirecting to a third party site with injected HTML Fábio Santos <fabiosantosart@gmail.com> - 2013-06-10 08:51 +0100
Re: Redirecting to a third party site with injected HTML Tim Chase <python.list@tim.thechases.com> - 2013-06-09 13:31 -0500
Re: Redirecting to a third party site with injected HTML Denis McMahon <denismfmcmahon@gmail.com> - 2013-06-10 07:59 +0000
csiph-web