Note that there are some explanatory texts on larger screens.

plurals
  1. POPython request module session expiry
    primarykey
    data
    text
    <p>I'm writing a script that will automatically download a file from hostuje.net page. I've decided to use Requests module to do so. The process of downloading looks like:</p> <ul> <li>When you visit the site it provides PHPSESSID in cookie</li> <li>On the page there is a form with hidden inputs: file id, hash, filename, server address, mime and 'REG' (set to 1 telling that you accept the terms of use)</li> <li>When you click "Pobierz plik" (download) post with mentioned data is sent</li> <li>Page is reloading and download dialog is shown</li> </ul> <p>I've read http headers and decided to send similar query by simple script. I use pyQuery to get input values. The problem is, that anytime I send postdata to the server there's no 302 (found) code, but 200, and page telling that my session has expired loads. Here's my code:</p> <pre><code>from pyquery import PyQuery as pq import requests (some code here...) session = requests.session() page = session.get(download_page) d=pq(page.content, parser='html_fragments') data = {} for inputs in d("td &gt; input[name]").items(): data[inputs.attr("name")]=inputs.attr("value") cookies = dict(PHPSESSID=page.cookies['PHPSESSID']) resp = session.post(download_page, data=data, allow_redirects=False,stream=False, cookies=cookies) </code></pre> <p>Web browser sends this kind of postdata:</p> <pre><code>POST /file.php?id=c4f50ccefcd1c83e2a48374db4644a0a HTTP/1.1 Host: hostuje.net User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 Accept-Language: pl,en-us;q=0.7,en;q=0.3 Accept-Encoding: gzip, deflate DNT: 1 Cookie: PHPSESSID=g565im2lqu0csthglgnlb98tp2 Connection: keep-alive Content-Type: application/x-www-form-urlencoded Content-Length: 164 OK=1&amp;hasz=c4f50ccefcd1c83e2a48374db4644a0a&amp;id=c4f50ccefcd1c83e2a48374db4644a0a&amp;name=Stupid+Fresh-+Spam+Javelin+Original.mp3&amp;mime=audio%2Fmpeg&amp;k=n4.hostuje.org&amp;REG=1 </code></pre> <p>For which response looks like:</p> <pre><code>HTTP/1.1 302 Found Date: Wed, 03 Apr 2013 14:42:58 GMT Server: Apache/2 X-Powered-By: PHP/5.3.3-7+squeeze14 Expires: Mon, 26 Jul 1997 05:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Wed, 03 Apr 2013 16:42:58 +0200 Location: http://n4.hostuje.org/file.php?id=c4f50ccefcd1c83e2a48374db4644a0a&amp;mime=audio/mpeg&amp;name=Stupid+Fresh-+Spam+Javelin+Original.mp3&amp;sid=eca83088d8cad5bcb194c92e3a5af068 Content-Encoding: gzip Vary: Accept-Encoding Content-Length: 26 Connection: close Content-Type: text/html; charset=ISO-8859-2 </code></pre> <p>And this is what I want to achieve with my script.</p> <pre><code>&lt;&lt;class 'requests.cookies.RequestsCookieJar'&gt;[&lt;Cookie PHPSESSID=c0v7cdfa0vkntbfdl8cocr01r4 for hostuje.net/&gt;]&gt; {'Accept-Encoding': 'gzip, deflate, compress', 'Accept': '/', 'User-Agent': 'python-requests/1.2.0 CPython/2.7.3 Linux/3.2.0-39-generic'} {'OK': '1', 'name': 'Stupid Fresh- Spam Javelin Original.mp3', 'k': 'n4.hostuje.org', 'id': 'c4f50ccefcd1c83e2a48374db4644a0a', 'mime': 'audio/mpeg', 'hasz': 'c4f50ccefcd1c83e2a48374db4644a0a', 'REG': '1'} </code></pre> <p>These are session.cookie, session.headers and data dictionary </p> <p>Additional info: response headers</p> <pre><code>{'content-length': '5337', 'content-encoding': 'gzip', 'expires': 'Mon, 26 Jul 1997 05:00:00 GMT', 'vary': 'Accept-Encoding', 'server': 'Apache/2', 'last-modified': 'Thu, 04 Apr 2013 19:36:58 +0200', 'connection': 'close', 'pragma': 'no-cache', 'cache-control': 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0', 'date': 'Thu, 04 Apr 2013 17:36:58 GMT', 'x-powered-by': 'PHP/5.3.3-7+squeeze14', 'content-type': 'text/html; charset=ISO-8859-2'} </code></pre> <p>response content (as response has no method 'body')</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-2"&gt; &lt;meta http-equiv="EXPIRES" content="0"&gt; &lt;meta name="RESOURCE-TYPE" content="DOCUMENT"&gt; &lt;meta name="DISTRIBUTION" content="GLOBAL"&gt; &lt;meta name="AUTHOR" content="TS TEAM"&gt; &lt;meta name="COPYRIGHT" content="Copyright (c) 2008 by TS TEAM"&gt; &lt;meta name="KEYWORDS" content="darmowy hosting, hosting plik�w, darmowy hosting plik�w, bezp�atny hosting, hosting obrazk�w, hosting zdj��, darmowy, hosting mp3, ftp hosting, darmowy serwer"&gt; &lt;meta name="DESCRIPTION" content="Bezp�atny hosting plik�w, obrazk�w i zdj�� bez konieczno�ci ponoszenia dodatkowych op�at. Pozwalamy na darmowe dzielenie si� plikami z innymi u�ytkownikami internetu."&gt; &lt;meta name="ROBOTS" content="ALL, FOLLOW"&gt; &lt;meta http-equiv="CONTENT-Language" content="pl"&gt; &lt;meta name="REVISIT-AFTER" content="1 DAYS"&gt; &lt;meta name="RATING" content="GENERAL"&gt; &lt;meta name="GENERATOR" content="TS TEAM"&gt; &lt;title&gt;Darmowy hosting plik�w, zdj�� i obrazk�w - Hostuje.net&lt;/title&gt; &lt;link rel="stylesheet" href="style.css?new8ac" type="text/css" media="all"&gt; &lt;!--[if lte IE 6]&gt; &lt;link rel="stylesheet" href="style_ie.css?new2" type="text/css"/&gt;&lt;![endif]--&gt; &lt;script type="text/javascript" src="swfobject2.js?sr"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt;&lt;a name="pagetop"&gt;&lt;/a&gt; &lt;center&gt; &lt;!-- top --&gt; &lt;div id="top"&gt; &lt;a id="top_logo" href="index.php"&gt;&lt;/a&gt; &lt;ul id="menu_ul"&gt; &lt;li id="menu_li_home"&gt;&lt;a id="menu_home" href="index.php"&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li id="menu_li_rejestracja"&gt;&lt;a id="menu_rejestracja" href="regulamin.php"&gt;Regulamin&lt;/a&gt;&lt;/li&gt; &lt;li id="menu_li_pomoc"&gt;&lt;a id="menu_pomoc" href="pomoc.php"&gt;Pomoc&lt;/a&gt;&lt;/li&gt; &lt;li id="menu_li_onas"&gt;&lt;a id="menu_onas" href="onas.php"&gt;O Nas&lt;/a&gt;&lt;/li&gt; &lt;li id="menu_li_kontakt"&gt;&lt;a id="menu_kontakt" href="kontakt.php"&gt;Kontakt&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;!--/top --&gt; &lt;!-- mde --&gt; &lt;div class="mde"&gt; &lt;!-- mdel --&gt; &lt;div class="mdel"&gt; &lt;div id="register"&gt; &lt;br&gt; &lt;div&gt;&lt;b style="font-size: 26px"&gt;Darmowy&lt;/b&gt; &lt;b style="color: #CA2121; font-size: 26px"&gt;hosting&lt;/b&gt; &lt;b style="font-size: 26px"&gt;plik�w&lt;/b&gt;&lt;/div&gt; &lt;table id="register_tab" width="348" border="0" cellspacing="0" cellpadding="0"&gt; &lt;tr&gt; &lt;td width="174"&gt;&lt;p&gt;&lt;b style="font-size:14px;"&gt;- Upload do 250&lt;/b&gt; &lt;b style="font-size:14px;"&gt;MB&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td width="174"&gt;&lt;p&gt;&lt;b style="font-size:14px;"&gt;- Szybkie Serwery&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;p style="margin-top:5px;"&gt;&lt;b style="font-size:14px;"&gt;- Brak Limit�w&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;td&gt;&lt;p style="margin-top:5px;"&gt;&lt;b style="font-size:14px;"&gt;- Nielimitowana przestrze� na pliki&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;p style="margin-top:5px;"&gt;&lt;b style="font-size:14px;"&gt;- Wszystko za Darmo&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td&gt;&lt;p style="margin-top:5px;"&gt;&lt;b style="font-size:14px;"&gt;- Nielimitowany transfer&lt;/b&gt;&lt;/p&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;/div&gt; &lt;!--/mdel --&gt; &lt;!-- mder --&gt; &lt;div class="mder"&gt; &lt;div id="login"&gt; &lt;form id="forma" name="forma" method="post" action="login.php"&gt; &lt;label id="forma_label_title"&gt;Logowanie do e-Dysku&lt;/label&gt; &lt;input type="text" name="login" id="forma_login" value="" style="height:19px;"&gt; &lt;input type="password" name="pass" id="forma_pwd" value="" style="height:19px;"&gt; &lt;label id="forma_label_login"&gt;Login:&lt;/label&gt; &lt;label id="forma_label_pwd"&gt;Has�o:&lt;/label&gt; &lt;label id="forma_label_checkbox"&gt;Zapami�taj&lt;/label&gt; &lt;label id="forma_label_remember"&gt;&lt;a href="rejestracja.php"&gt;Za��� konto&lt;/a&gt; | &lt;a href="przypomnij.php"&gt;Przypomnij has�o&lt;/a&gt;&lt;/label&gt; &lt;input type="checkbox" name="zapisz" id="forma_checkbox" value="1"&gt; &lt;input name="forma_button_login" id="formm_button_login" type="image" src="graph/home/login/forma_button.gif" value="" onmouseover="this.style.cursor='pointer';"&gt; &lt;/form&gt; &lt;/div&gt; &lt;/div&gt; &lt;!--/mder --&gt; &lt;/div&gt; &lt;!--/mde --&gt; &lt;br&gt; &lt;!-- BBelements AdServer one2many Position: go.arbopl.bbelements.com hostuje.net(5362) / pozostale podstrony(2) / billboard(1) / billboard 750x100 750x100(30)--&gt; &lt;!-- HowTo: Place this code into the html page there the ad should appear. --&gt; &lt;div id='bmone2n-5362.2.1.30'&gt;&lt;/div&gt; &lt;div align="center"&gt; &lt;br&gt; &lt;table width="100%"&gt;&lt;tr&gt;&lt;td align="center"&gt;&lt;table width="700"&gt;&lt;tr&gt;&lt;td align="left" valign="top" style="width: 420px"&gt;&lt;b&gt;Wyst�pi�y nast�puj�ce b��dy:&lt;/b&gt;&lt;ul&gt;&lt;li style="margin-right: 4px;"&gt;Twoja sesja wygas�a, prosz� klikn�� ponownie na przycisk pobierz plik lub od�wie�y� strone.&lt;/li&gt;&lt;/ul&gt;&lt;form method="post" action="http://hostuje.net/file.php?id=c4f50ccefcd1c83e2a48374db4644a0a"&gt;&lt;div&gt;&lt;img style="width:0px;height:0px;" src="obraz.php" alt="" title=""&gt;&lt;table cellpadding="4" cellspacing="4"&gt; &lt;tr&gt;&lt;td colspan="2"&gt; &lt;div id='bmone2n-5362.2.1.36'&gt;&lt;/div&gt; &lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td colspan="2" style="border-top: 2px solid #e5e5e5;"&gt;&lt;input type="hidden" name="OK" value="1"&gt;&lt;input type="hidden" name="hasz" value="c4f50ccefcd1c83e2a48374db4644a0a"&gt;&lt;input type="hidden" name="id" value="c4f50ccefcd1c83e2a48374db4644a0a"&gt;&lt;input type="hidden" name="name" value="Stupid Fresh- Spam Javelin Original.mp3"&gt;&lt;input type="hidden" name="mime" value="audio/mpeg"&gt;&lt;input type="hidden" name="k" value="n4.hostuje.org"&gt;&lt;input type="hidden" name="REG" value="1"&gt;&lt;input type="submit" value="Pobierz Plik" style="font-size: 22px; border: 2px solid #eeeeee; cursor: hand;"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;/form&gt;&lt;/td&gt;&lt;td valign="top" align="left" style="border-top: 2px solid #e5e5e5; border-left: 2px solid #e5e5e5; padding: 8px; width: 280px; background: #ffffff url(images/tlo_2a.gif) repeat-y;"&gt;&lt;div style="font-size: 18px;"&gt;&lt;span style="font-size: 18px; border-bottom: 2px solid #eeeeee;"&gt;Informacje o pliku&lt;/span&gt;&lt;/div&gt;&lt;br&gt;&lt;b&gt;Plik:&lt;/b&gt; Stupid Fresh- Spam Javelin Original.mp3&lt;br&gt;&lt;b&gt;Rozmiar:&lt;/b&gt; 293 KB&lt;br&gt;&lt;b&gt;Rozmiar kontrolny w bajtach:&lt;/b&gt; 299 676&lt;br&gt;&lt;b&gt;Typ:&lt;/b&gt; audio/mpeg&lt;br&gt;&lt;script type="text/javascript" src="swfobject.js"&gt;&lt;/script&gt;&lt;br&gt; &lt;script type="text/javascript" charset="iso-8859-2"&gt;if (document.getElementById('adKontekst_0')==null) { var adKontekst_pola=new Array; document.write('&lt;scr'+'ipt type="text/javascript" charset="iso-8859-2" '+ 'src="http://adsearch.adkontekst.pl/akon/spliter?prid=5343&amp;caid=94710&amp;ns=' +(new Date()).getTime()+'"'+'&gt;&lt;/'+'scri'+'pt&gt;'); } var adc_i=adKontekst_pola.length; document.write("&lt;div id='adKontekst_"+adc_i+"'&gt; &lt;/"+"div&gt;"); adKontekst_pola[adc_i]=new Object(); adKontekst_pola[adc_i].nazwa="adKontekst_"+adc_i; adKontekst_pola[adc_i].typ=201; adKontekst_pola[adc_i].r=1; adKontekst_pola[adc_i].c=1; adKontekst_pola[adc_i].x=234; adKontekst_pola[adc_i].y=60; adKontekst_pola[adc_i].naroznik_lewy_gorny = 3; adKontekst_pola[adc_i].naroznik_prawy_gorny = 3; adKontekst_pola[adc_i].naroznik_lewy_dolny = 3; adKontekst_pola[adc_i].naroznik_prawy_dolny = 3; adKontekst_pola[adc_i].spacing=1; adKontekst_pola[adc_i].scalenie=2; adKontekst_pola[adc_i].paleta=new Object(); adKontekst_pola[adc_i].paleta.kolor_tlo="#FFFFFF"; adKontekst_pola[adc_i].paleta.kolor_tytul="#414e5b"; adKontekst_pola[adc_i].paleta.kolor_opis="#414e5b"; adKontekst_pola[adc_i].paleta.kolor_url="#414e5b"; adKontekst_pola[adc_i].paleta.kolor_naglowek="#FFFFFF"; adKontekst_pola[adc_i].paleta.kolor_tlo_naglowka="#FFFFFF"; adKontekst_pola[adc_i].paleta.kolor_ramki_naglowka="#FFFFFF"; adKontekst_pola[adc_i].metka="text"; adKontekst_pola[adc_i].czy_url=true; adKontekst_pola[adc_i].id_koloru_metki="1"; adKontekst_pola[adc_i].nform=8; &lt;/script&gt; &lt;script type="text/javascript" src="http://hostuje.net/show_s.php?1365097018&amp;amp;h=c4f50ccefcd1c83e2a48374db4644a0a"&gt; &lt;/script&gt; &lt;div id="flashcontent"&gt;Do poprawnego dzia�ania playera wymagany jest flash i w��czona obs�uga javascriptu.&lt;/div&gt;&lt;script type="text/javascript"&gt;var so = new SWFObject("mediaplayer.swf", "player", "250", "20", "8", "#ffffff");so.addParam("allowscriptaccess", "always");so.addVariable("file", "http://n4.hostuje.org/_tmp/id-c4f50ccefcd1c83e2a48374db4644a0a-p-1");so.addVariable("width", "250");so.addVariable("height", "20"); so.addVariable("bufferlength", "5"); so.addVariable("displaywidth", "0");so.addVariable("displayheight", "0");so.addVariable("autostart", "false"); so.addVariable("frontcolor", "0x414e5b");so.addVariable("backcolor", "0xffffff");so.addVariable("lightcolor", "0xCA2121"); so.addVariable("type", "mp3");so.write("flashcontent");&lt;/script&gt;Po wci�ni�ciu play poczekaj chwil� a� plik si� wczyta...&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div style="padding-top:2px;"&gt;&lt;p style="padding-top:2px;"&gt;&lt;img src="images/raport.png" style="vertical-align: middle;" border="0" width="16" height="16" alt=""&gt; &lt;b&gt;&lt;a href="kontakt.php" style="text-decoration:underline;"&gt;Zg�o� naruszenie zasad / Raport Abuse&lt;/a&gt;&lt;/b&gt;&lt;br&gt;&lt;/p&gt;&lt;p style="padding-top:2px;"&gt;&lt;img src="images/dodatki.png" style="vertical-align: middle;" border="0" width="16" height="16" alt=""&gt; &lt;b&gt;&lt;a href="#pagetop" onclick="show('okno')" style="text-decoration:underline;"&gt;Kody i dodatki html&lt;/a&gt;&lt;/b&gt;&lt;br&gt;&lt;/p&gt;&lt;p style="padding-top:2px;"&gt;&lt;img src="images/komentarz.png" style="vertical-align: middle;" border="0" width="16" height="16" alt=""&gt; &lt;b&gt;&lt;a href="#pagetop" onclick="show('okno2')" style="text-decoration:underline;"&gt;Dodaj komentarz&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;/div&gt;&lt;br&gt;&lt;hr style="border: 0;color: #f2f2f2;background-color: #f2f2f2;height: 1px;"&gt;&lt;b&gt;Ten plik zosta� przeskanowany programem antywirusowym. Skaner antywirusowy log:&lt;/b&gt;&lt;br&gt;Czysty plik, nie wykryto zagro�e�&lt;script language="javascript" type="text/javascript"&gt; &lt;!-- document.title = "Stupid Fresh- Spam Javelin Original.mp3 : Darmowy hosting plik�w - Hostuje.net"; //--&gt; &lt;/script&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; &lt;/div&gt; &lt;br&gt; &lt;!-- footer --&gt; &lt;div id="footer_line"&gt;&lt;/div&gt; &lt;div id="footer"&gt; &lt;!-- r --&gt; &lt;p align="center"&gt; Korzystanie z serwisu jest r�wnoznaczne z akceptacj� &lt;a class="link_red" href="regulamin.php" target="_self"&gt;regulaminu&lt;/a&gt;&lt;span class="footer_sep"&gt;|&lt;/span&gt; &lt;a class="link_red" href="polityka_cookies.php" target="_self"&gt;Polityka cookies&lt;/a&gt;&lt;span class="footer_sep"&gt;|&lt;/span&gt; &lt;a class="link_red" href="kontakt.php" target="_self"&gt;Kontakt / Raport Abuse&lt;/a&gt;&lt;span class="footer_sep"&gt;|&lt;/span&gt; &lt;a class="link_black" href="reklama.php" target="_self"&gt;Reklama&lt;/a&gt;&lt;span class="footer_sep"&gt;|&lt;/span&gt; &lt;/p&gt; &lt;p class="color_grey" align="center" style="margin-top:3px; font-size:10px;"&gt;Copyright by Hostuje.net &amp;copy; 2008-2013 All rights reserved | powered by TS Team ver.1.4.8 | &lt;a style="font-size:10px;" href="http://hostuje.net/cookies_del.php"&gt;Usu� ciasteczka z hostuje.net&lt;/a&gt; &lt;/p&gt; &lt;/div&gt; &lt;!--/footer --&gt; &lt;!-- (C) 2000-2006 Gemius SA - gemiusAudience / ver 11.1 / pp.hostuje.net / podstrony--&gt; &lt;script type="text/javascript"&gt; &lt;!--//--&gt;&lt;![CDATA[//&gt;&lt;!-- var pp_gemius_identifier = new String('ctTqJgtuY5.LA18hzSqwk8bfjwiwbFtPWF8Iwxo_IGz.Q7'); //--&gt;&lt;!]]&gt; &lt;/script&gt; &lt;script type="text/javascript" src="http://arbo.hit.gemius.pl/pp_gemius.js"&gt;&lt;/script&gt; &lt;div id="google_translate_element"&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt; function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'pl' }, 'google_translate_element'); } &lt;/script&gt;&lt;script type="text/javascript" src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"&gt;&lt;/script&gt; &lt;!-- BBelements AdServer one2many code --&gt; &lt;!-- HowTo: All the ad codes must be above this code! --&gt; &lt;!-- HowTo: It is good idea to place this code just below the last ad code. --&gt; &lt;script type='text/javascript' charset='utf-8' src='http://go.arbopl.bbelements.com/bb/bb_one2n.js'&gt;&lt;/script&gt; &lt;script type='text/javascript'&gt;/* &lt;![CDATA[ */ bmone2n.addPosition('5362.2.1.30',''); bmone2n.addPosition('5362.2.1.36',''); bmone2n.addPosition('5362.2.1.31',''); bmone2n.getAd('go.arbopl.bbelements.com','',''+(typeof(bburlparam)=='string'?'&amp;'+bburlparam:''),'utf-8'); /* ]]&gt; */&lt;/script&gt; &lt;div id='bmone2t-5362.2.1.30' style='display:none'&gt;&lt;script type='text/javascript'&gt;/* &lt;![CDATA[ */ bmone2n.makeAd('5362.2.1.30'); /* ]]&gt; */&lt;/script&gt;&lt;/div&gt; &lt;div id='bmone2t-5362.2.1.36' style='display:none'&gt;&lt;script type='text/javascript'&gt;/* &lt;![CDATA[ */ bmone2n.makeAd('5362.2.1.36'); /* ]]&gt; */&lt;/script&gt;&lt;/div&gt; &lt;div id='bmone2t-5362.2.1.31' style='display:none'&gt;&lt;script type='text/javascript'&gt;/* &lt;![CDATA[ */ bmone2n.makeAd('5362.2.1.31'); /* ]]&gt; */&lt;/script&gt;&lt;/div&gt; &lt;script type='text/javascript'&gt;/* &lt;![CDATA[ */ bmone2n.moveAd(); /* ]]&gt; */&lt;/script&gt; &lt;script type="text/javascript"&gt; var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); &lt;/script&gt; &lt;script type="text/javascript"&gt; var pageTracker = _gat._getTracker("UA-4997701-1"); pageTracker._initData(); pageTracker._trackPageview(); &lt;/script&gt; &lt;script type="text/javascript" src="dll_kody.js.php?new7a&amp;amp;flash=1"&gt;&lt;/script&gt;&lt;div id="okno"&gt;&lt;div class="tlo"&gt;&lt;/div&gt;&lt;div class="content"&gt;&lt;div align="right" class="head"&gt;&lt;div class="title"&gt;BBcode &amp;amp; Kody&lt;/div&gt;&lt;a onclick="hide('okno'); return false;" href="#" style="color: #f2f2f2;"&gt;zamknij &lt;img src="images/zamknij2.gif" border="0" style="vertical-align: top;" width="13" height="13" alt=""&gt;&lt;/a&gt;&lt;/div&gt;&lt;form action="#" style="margin: 0px; padding: 0px;"&gt;&lt;div style="padding: 10px;"&gt;&lt;b style="font-size: 18px;"&gt;Kody i dodatki html&lt;/b&gt;&lt;br&gt;&lt;br&gt;Wybierz kod, kt�ry najabardziej Ci odpowiada, mo�esz zamie�ci� go na swoim blogu stronie lub forum.&lt;br&gt;&lt;br&gt;&lt;b&gt;Link html do zamieszczenia na stronie, blogu:&lt;/b&gt;&lt;br&gt;&lt;textarea name="url_html" class="area" onclick="this.focus();this.select();" cols="80" rows="1" style="border: 2px solid #C0C0C0;"&gt;&amp;lt;a href="http://hostuje.net/file.php?id=c4f50ccefcd1c83e2a48374db4644a0a" title="Stupid Fresh- Spam Javelin Original.mp3"&amp;gt;Stupid Fresh- Spam Javelin Original.mp3&amp;lt;/a&amp;gt;&lt;/textarea&gt;&lt;br&gt;&lt;b&gt;Link BBcode do zamieszczenia na forum:&lt;/b&gt;&lt;br&gt;&lt;textarea name="url_html" class="area" onclick="this.focus();this.select();" cols="80" rows="1" style="border: 2px solid #C0C0C0;"&gt;[url=http://hostuje.net/file.php?id=c4f50ccefcd1c83e2a48374db4644a0a]Stupid Fresh- Spam Javelin Original.mp3[/url]&lt;/textarea&gt;&lt;/div&gt;&lt;/form&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id="okno2"&gt;&lt;div class="tlo"&gt;&lt;/div&gt;&lt;div class="content"&gt;&lt;div align="right" class="head"&gt;&lt;div class="title"&gt;Dodaj komentarz&lt;/div&gt;&lt;a onclick="hide('okno2'); return false;" href="#" style="color: #f2f2f2;"&gt;zamknij &lt;img src="images/zamknij2.gif" border="0" style="vertical-align: top;" width="13" height="13" alt=""&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="padding: 10px;"&gt;&lt;b style="font-size: 18px;"&gt;Zaloguj si� aby m�c dodawa� komentarze...&lt;/b&gt;&lt;br&gt;&lt;br&gt;Nie masz jeszcze konta w Hostuje.net? &lt;a href="rejestracja.php" style="text-decoration:underline"&gt;Za��� je tutaj za darmo&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt; &lt;/center&gt; &lt;!-- cXense script begin --&gt; &lt;div id="cX-root" style="display:none"&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; ����var cX = cX || {}; cX.callQueue = cX.callQueue || []; ����cX.callQueue.push(['setAccountId', '9222291968715707916']); ����cX.callQueue.push(['setSiteId', '9222291968715707918']); ����cX.callQueue.push(['sendPageViewEvent']); &lt;/script&gt; &lt;script type="text/javascript"&gt; ����(function() { try { var scriptEl = document.createElement('script'); scriptEl.type = 'text/javascript'; scriptEl.async = 'async'; ����scriptEl.src = ('https:' == document.location.protocol) ? 'https://scdn.cxense.com/cx.js' : 'http://cdn.cxense.com/cx.js'; ����var targetEl = document.getElementsByTagName('script')[0]; targetEl.parentNode.insertBefore(scriptEl, targetEl); } catch (e) {};} ()); &lt;/script&gt; &lt;!-- cXense script end --&gt; &lt;/body&gt; &lt;/html&gt; &lt;!-- 0.0020761489868164 --&gt; </code></pre> <p>Another update (r.request.headers and r.request.body)</p> <pre><code>{'Content-Length': u'164', 'Accept-Encoding': 'gzip, deflate, compress', 'Accept': '*/*', 'User-Agent': 'python-requests/1.2.0 CPython/2.7.3 Linux/3.2.0-39-generic', 'Cookie': 'PHPSESSID=teir11avhfk543aapcmmgrn2a5', 'Content-Type': 'application/x-www-form-urlencoded'} OK=1&amp;name=Stupid+Fresh-+Spam+Javelin+Original.mp3&amp;k=n4.hostuje.org&amp;id=c4f50ccefcd1c83e2a48374db4644a0a&amp;mime=audio%2Fmpeg&amp;hasz=c4f50ccefcd1c83e2a48374db4644a0a&amp;REG=1 </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload