<?xml version='1.0' encoding="utf-8"?>
      <rss version='2.0'>
      <channel>
      <title>Форум на Исходниках.RU</title>
      <link>https://forum.sources.ru</link>
      <description>Форум на Исходниках.RU</description>
      <generator>Форум на Исходниках.RU</generator>
  	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3787718</guid>
        <pubDate>Sat, 12 Jan 2019 18:31:53 +0000</pubDate>
        <title>WinHttpSendRequest error 0x57</title>
        <link>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3787718</link>
        <description><![CDATA[zadnica: <a class='tag-url' href='https://stackoverflow.com/questions/51999039/winhttpsendrequest-800c0057' target='_blank'>https://stackoverflow.com/questions/5199903...equest-800c0057</a>]]></description>
        <author>zadnica</author>
        <category>C/C++: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773493</guid>
        <pubDate>Fri, 06 Jul 2018 10:56:53 +0000</pubDate>
        <title>WinHttpSendRequest error 0x57</title>
        <link>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773493</link>
        <description><![CDATA[Wound: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=413155&view=findpost&p=3773150'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Игорь98 &#064; <time class="tag-quote__quoted-time" datetime="2018-06-30T08:14:20+00:00">30.06.18, 08:14</time></span><div class='quote '>Ну, а если пошарить в MSDN по поводу данной ошибки, то во что я нашел:</div></div><br>
А если пошарить в гугле, по данной функции, то можно найти следующее:<br>
<a class='tag-url' href='https://docs.microsoft.com/en-us/windows/desktop/api/winhttp/nf-winhttp-winhttpsendrequest' target='_blank'>https://docs.microsoft.com/en-us/windows/de...httpsendrequest</a><br>
<div class='tag-quote'><span class='tag-quote-prefix'>Цитата</span> <div class='quote '><br>
<br>
ERROR_INVALID_PARAMETER<br>
<br>
	The content length specified in the dwTotalLength parameter does not match the length specified in the Content-Length header.<br>
<br>
The lpOptional parameter must be NULL and the dwOptionalLength parameter must be zero when the Transfer-Encoding header is present.<br>
<br>
The Content-Length header cannot be present when the Transfer-Encoding header is present.<br>
</div></div><br>
Ты туда передаешь (DWORD)strlen(post_data)<br>
strlen возвращает длину строки без учета &#39;&#092;0&#39; на конце, возможно ошибка в этом. Т.е. возможно нужно передать (DWORD)strlen(post_data) + 1 <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2018-07-06T11:00:44+00:00">06.07.18, 11:00</time></span></span><br>
Вернее даже у тебя ошибка в том, что ты не задал Content-Lenght и задал dwTotalLenght, видимо из за этого и произошла ошибка, вот пример вызова по ссылке выше:<br>
<div class='tag-quote'><span class='tag-quote-prefix'>Цитата</span> <div class='quote '>The Content-Length header can be added in the call to WinHttpAddRequestHeaders, or it can be specified in the lpszHeader parameter of WinHttpSendRequest as shown in the following code example.</div></div><br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">BOOL fRet = WinHttpSendRequest(</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;hReq,</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;L&quot;Content-Length: 68719476735\r\n&quot;,</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;-1L,</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;WINHTTP_NO_REQUEST_DATA,</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;0,</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;WINHTTP_IGNORE_REQUEST_TOTAL_LENGTH,</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;pMyContent);</div></ol></div></div></div></div><script>preloadCodeButtons('1');</script>]]></description>
        <author>Wound</author>
        <category>C/C++: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773157</guid>
        <pubDate>Sat, 30 Jun 2018 13:11:04 +0000</pubDate>
        <title>WinHttpSendRequest error 0x57</title>
        <link>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773157</link>
        <description><![CDATA[Oleg2004: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=413155&view=findpost&p=3773150'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Игорь98 &#064; <time class="tag-quote__quoted-time" datetime="2018-06-30T08:14:20+00:00">30.06.18, 08:14</time></span><div class='quote '>В смысле текст ошибки?</div></div><br>
У вас в коде стоит: <br>
MessageBox(nullptr, ErrorMessage, _T(&quot;Отчет&quot;), MB_OK | MB_ICONERROR);<br>
В нем есть параметр  ErrorMessage<br>
Это и есть текст ошибки<br>
Насколько я понимаю, у вас текст<br>
ERROR_INVALID_PARAMETER<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=413155&view=findpost&p=3773150'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Игорь98 &#064; <time class="tag-quote__quoted-time" datetime="2018-06-30T08:14:20+00:00">30.06.18, 08:14</time></span><div class='quote '>Я не понимаю, какой параметр не тот и почему он не тот... </div></div><br>
<br>
Значит надо перелопатить ВСЕ параметры вызова<br>
WinHttpSendRequest(ASPT_HTTP::hRequest, WINHTTP_NO_ADDITIONAL_HEADERS, 0x00, post_data, (DWORD)strlen(post_data), 0x00, 0x00);<br>
их тут хватает, и ошибиться в каком то запросто...<br>
Иногда вместо strlen в вызове надо использовать sizeof<br>
В общем надо внимательно просмотреть все требования к параметрам.]]></description>
        <author>Oleg2004</author>
        <category>C/C++: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773150</guid>
        <pubDate>Sat, 30 Jun 2018 08:14:20 +0000</pubDate>
        <title>WinHttpSendRequest error 0x57</title>
        <link>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773150</link>
        <description><![CDATA[Игорь98: <div class='tag-quote'><span class='tag-quote-prefix'>Цитата</span> <div class='quote '>Где текст ошибки?</div></div><br>
В смысле текст ошибки?<br>
<br>
Есть код вида:<br>
<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">if(WinHttpSendRequest(ASPT_HTTP::hRequest, WINHTTP_NO_ADDITIONAL_HEADERS, 0x00, post_data, (DWORD)strlen(post_data), 0x00, 0x00))</div><div class="code_line">{</div><div class="code_line">&nbsp;&nbsp; &nbsp;//////////////////////////////////////////////////////////////////////////////////////////////</div><div class="code_line">}</div><div class="code_line">else</div><div class="code_line">{</div><div class="code_line">&nbsp;&nbsp; &nbsp;TCHAR ErrorMessage[MAX_PATH];</div><div class="code_line">&nbsp;&nbsp; &nbsp;memset(ErrorMessage, &#39;{text}&#39;, MAX_PATH * sizeof(TCHAR));</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;_stprintf_s(ErrorMessage, MAX_PATH, _T(&quot;WinHttpSendRequest()...ERROR...code: 0x%X&quot;), GetLastError());</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp;MessageBox(nullptr, ErrorMessage, _T(&quot;Отчет&quot;), MB_OK | MB_ICONERROR);</div><div class="code_line">}</div></ol></div></div></div></div><br>
<br>
Ну, а если пошарить в MSDN по поводу данной ошибки, то во что я нашел:<br>
<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">ERROR_INVALID_PARAMETER</div><div class="code_line">87 (0x57)</div><div class="code_line">The parameter is incorrect.</div></ol></div></div></div></div><br>
<br>
Я не понимаю, какой параметр не тот и почему он не тот...]]></description>
        <author>Игорь98</author>
        <category>C/C++: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773137</guid>
        <pubDate>Fri, 29 Jun 2018 18:22:30 +0000</pubDate>
        <title>WinHttpSendRequest error 0x57</title>
        <link>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773137</link>
        <description><![CDATA[Oleg2004: Где текст ошибки?]]></description>
        <author>Oleg2004</author>
        <category>C/C++: Сетевое программирование</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773056</guid>
        <pubDate>Thu, 28 Jun 2018 09:18:31 +0000</pubDate>
        <title>WinHttpSendRequest error 0x57</title>
        <link>https://forum.sources.ru/index.php?showtopic=413155&amp;view=findpost&amp;p=3773056</link>
        <description><![CDATA[Игорь98: Никак не могу разобраться, при вызове функции WinHttpSendRequest выкидывается ошибка 0x57...<br>
<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">WinHttpSendRequest(ASPT_HTTP::hRequest, WINHTTP_NO_ADDITIONAL_HEADERS, 0x00, post_data, (DWORD)strlen(post_data), 0x00, 0x00);</div></ol></div></div></div></div><br>
<br>
Не пойму в чем проблема, при сканировании Wireshark&#39;ом, браузер отправляет POST вот с такими данными:<br>
<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">0000 &nbsp;5f 5f 56 49 45 57 53 54 &nbsp;41 54 45 3d 25 32 46 77 &nbsp; __VIEWST ATE=%2Fw</div><div class="code_line">0010 &nbsp;45 50 44 77 55 4b 4c 54 &nbsp;63 31 4d 44 59 7a 4f 44 &nbsp; EPDwUKLT c1MDYzOD</div><div class="code_line">0020 &nbsp;63 33 4e 51 39 6b 46 67 &nbsp;49 43 41 51 39 6b 46 67 &nbsp; c3NQ9kFg ICAQ9kFg</div><div class="code_line">0030 &nbsp;49 43 41 51 39 6b 46 67 &nbsp;4a 6d 44 32 51 57 41 6d &nbsp; ICAQ9kFg JmD2QWAm</div><div class="code_line">0040 &nbsp;59 50 5a 42 59 45 41 67 &nbsp;45 50 44 78 59 43 48 67 &nbsp; YPZBYEAg EPDxYCHg</div><div class="code_line">0050 &nbsp;52 55 5a 58 68 30 42 5a &nbsp;34 42 30 4b 48 51 75 4e &nbsp; RUZXh0BZ 4B0KHQuN</div><div class="code_line">0060 &nbsp;47 42 30 59 4c 51 74 64 &nbsp;43 38 30 4c 41 67 30 4c &nbsp; GB0YLQtd C80LAg0L</div><div class="code_line">0070 &nbsp;37 52 68 74 43 31 30 4c &nbsp;33 51 75 74 43 34 49 4e &nbsp; 7RhtC10L 3QutC4IN</div><div class="code_line">0080 &nbsp;43 25 32 46 30 59 44 51 &nbsp;76 74 47 45 30 4c 58 52 &nbsp; C%2F0YDQ vtGE0LXR</div><div class="code_line">0090 &nbsp;67 64 47 42 30 4c 6a 51 &nbsp;76 74 43 39 30 4c 44 51 &nbsp; gdGB0LjQ vtC90LDQ</div><div class="code_line">00A0 &nbsp;75 39 47 4d 30 4c 33 52 &nbsp;69 39 47 46 49 4e 43 33 &nbsp; u9GM0L3R i9GFINC3</div><div class="code_line">00B0 &nbsp;30 4c 33 51 73 4e 43 39 &nbsp;30 4c 6a 51 75 53 44 52 &nbsp; 0L3QsNC9 0LjQuSDR</div><div class="code_line">00C0 &nbsp;67 4e 43 77 30 4c 48 51 &nbsp;76 74 47 43 30 4c 33 51 &nbsp; gNCw0LHQ vtGC0L3Q</div><div class="code_line">00D0 &nbsp;75 4e 43 36 30 4c 37 51 &nbsp;73 69 44 51 75 39 43 25 &nbsp; uNC60L7Q siDQu9C%</div><div class="code_line">00E0 &nbsp;32 42 30 4c 72 51 76 74 &nbsp;43 38 30 4c 37 52 67 74 &nbsp; 2B0LrQvt C80L7Rgt</div><div class="code_line">00F0 &nbsp;43 34 30 4c 4c 51 76 64 &nbsp;43 25 32 42 30 4c 50 51 &nbsp; C40LLQvd C%2B0LPQ</div><div class="code_line">0100 &nbsp;76 69 44 52 68 64 43 25 &nbsp;32 42 30 4c 66 52 6a 39 &nbsp; viDRhdC% 2B0LfRj9</div><div class="code_line">0110 &nbsp;43 35 30 59 48 52 67 74 &nbsp;43 79 30 4c 41 67 30 4a &nbsp; C50YHRgt Cy0LAg0J</div><div class="code_line">0120 &nbsp;37 51 6b 4e 43 65 49 43 &nbsp;63 6e 30 4b 44 51 6c 74 &nbsp; 7QkNCeIC cn0KDQlt</div><div class="code_line">0130 &nbsp;43 55 4a 79 64 6b 5a 41 &nbsp;49 4e 44 77 39 6b 46 67 &nbsp; CUJydkZA INDw9kFg</div><div class="code_line">0140 &nbsp;49 65 42 32 39 75 59 32 &nbsp;78 70 59 32 73 46 43 45 &nbsp; IeB29uY2 xpY2sFCE</div><div class="code_line">0150 &nbsp;4e 79 65 58 42 30 4b 43 &nbsp;6b 37 5a 42 67 42 42 52 &nbsp; NyeXB0KC k7ZBgBBR</div><div class="code_line">0160 &nbsp;35 66 58 30 4e 76 62 6e &nbsp;52 79 62 32 78 7a 55 6d &nbsp; 5fX0Nvbn Ryb2xzUm</div><div class="code_line">0170 &nbsp;56 78 64 57 6c 79 5a 56 &nbsp;42 76 63 33 52 43 59 57 &nbsp; VxdWlyZV Bvc3RCYW</div><div class="code_line">0180 &nbsp;4e 72 53 32 56 35 58 31 &nbsp;38 57 41 51 55 50 63 32 &nbsp; NrS2V5X1 8WAQUPc2</div><div class="code_line">0190 &nbsp;31 68 63 6e 52 6a 59 58 &nbsp;4a 6b 58 32 4e 6f 59 6d &nbsp; 1hcnRjYX JkX2NoYm</div><div class="code_line">01A0 &nbsp;39 34 61 75 25 32 42 48 &nbsp;50 39 6e 39 5a 54 42 35 &nbsp; 94au%2BH P9n9ZTB5</div><div class="code_line">01B0 &nbsp;68 7a 59 5a 59 4c 77 4a &nbsp;25 32 42 59 4a 77 38 75 &nbsp; hzYZYLwJ %2BYJw8u</div><div class="code_line">01C0 &nbsp;77 25 33 44 26 5f 5f 56 &nbsp;49 45 57 53 54 41 54 45 &nbsp; w%3D&amp;__V IEWSTATE</div><div class="code_line">01D0 &nbsp;47 45 4e 45 52 41 54 4f &nbsp;52 3d 30 30 43 43 45 39 &nbsp; GENERATO R=00CCE9</div><div class="code_line">01E0 &nbsp;43 30 26 5f 5f 45 56 45 &nbsp;4e 54 56 41 4c 49 44 41 &nbsp; C0&amp;__EVE NTVALIDA</div><div class="code_line">01F0 &nbsp;54 49 4f 4e 3d 25 32 46 &nbsp;77 45 57 42 51 4b 64 39 &nbsp; TION=%2F wEWBQKd9</div><div class="code_line">0200 &nbsp;39 53 65 44 51 4b 76 72 &nbsp;75 71 32 43 41 4b 79 78 &nbsp; 9SeDQKvr uq2CAKyx</div><div class="code_line">0210 &nbsp;65 43 52 44 77 4c 6c 70 &nbsp;75 50 49 44 77 4c 76 7a &nbsp; eCRDwLlp uPIDwLvz</div><div class="code_line">0220 &nbsp;25 32 46 47 41 43 6a 64 &nbsp;4d 54 52 48 33 78 5a 51 &nbsp; %2FGACjd MTRH3xZQ</div><div class="code_line">0230 &nbsp;47 52 6f 77 68 4d 57 79 &nbsp;4e 79 4d 62 73 70 76 46 &nbsp; GRowhMWy NyMbspvF</div><div class="code_line">0240 &nbsp;32 26 55 73 65 72 4e 61 &nbsp;6d 65 3d 25 46 31 25 45 &nbsp; 2&amp;UserNa me=%F1%E</div><div class="code_line">0250 &nbsp;35 25 45 43 25 45 35 25 &nbsp;45 44 25 46 37 25 45 35 &nbsp; 5%EC%E5% ED%F7%E5</div><div class="code_line">0260 &nbsp;25 45 44 25 45 41 25 45 &nbsp;45 31 31 26 50 61 73 73 &nbsp; %ED%EA%E E11&amp;Pass</div><div class="code_line">0270 &nbsp;57 6f 72 64 3d 26 4c 6f &nbsp;67 69 6e 3d 25 43 32 25 &nbsp; Word=&amp;Lo gin=%C2%</div><div class="code_line">0280 &nbsp;46 35 25 45 45 25 45 34 &nbsp;26 78 43 72 79 70 74 3d &nbsp; F5%EE%E4 &amp;xCrypt=</div><div class="code_line">0290 &nbsp;39 39 39 64 66 34 63 65 &nbsp;37 38 62 39 36 36 64 65 &nbsp; 999df4ce 78b966de</div><div class="code_line">02A0 &nbsp;31 37 61 65 65 31 64 63 &nbsp;38 37 31 31 31 30 34 34 &nbsp; 17aee1dc 87111044</div><div class="code_line">02B0 &nbsp;26 73 6d 61 72 74 63 61 &nbsp;72 64 5f 69 64 3d 26 73 &nbsp; &amp;smartca rd_id=&amp;s</div><div class="code_line">02C0 &nbsp;6e 69 6c 73 3d &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nils=</div></ol></div></div></div></div><br>
<br>
Соответственно, у меня в буфере post_data содержится вот такие данные:<br>
<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">0x011D52A8 &nbsp;5f 5f 56 49 45 57 53 54 41 54 45 3d 25 32 46 77 45 50 44 77 55 4b 4c 54 63 31 4d 44 59 7a 4f 44 63 &nbsp;__VIEWSTATE=%2FwEPDwUKLTc1MDYzODc</div><div class="code_line">0x011D52C9 &nbsp;33 4e 51 39 6b 46 67 49 43 41 51 39 6b 46 67 49 43 41 51 39 6b 46 67 4a 6d 44 32 51 57 41 6d 59 50 &nbsp;3NQ9kFgICAQ9kFgICAQ9kFgJmD2QWAmYP</div><div class="code_line">0x011D52EA &nbsp;5a 42 59 45 41 67 45 50 44 78 59 43 48 67 52 55 5a 58 68 30 42 5a 34 42 30 4b 48 51 75 4e 47 42 30 &nbsp;ZBYEAgEPDxYCHgRUZXh0BZ4B0KHQuNGB0</div><div class="code_line">0x011D530B &nbsp;59 4c 51 74 64 43 38 30 4c 41 67 30 4c 37 52 68 74 43 31 30 4c 33 51 75 74 43 34 49 4e 43 25 32 46 &nbsp;YLQtdC80LAg0L7RhtC10L3QutC4INC%2F</div><div class="code_line">0x011D532C &nbsp;30 59 44 51 76 74 47 45 30 4c 58 52 67 64 47 42 30 4c 6a 51 76 74 43 39 30 4c 44 51 75 39 47 4d 30 &nbsp;0YDQvtGE0LXRgdGB0LjQvtC90LDQu9GM0</div><div class="code_line">0x011D534D &nbsp;4c 33 52 69 39 47 46 49 4e 43 33 30 4c 33 51 73 4e 43 39 30 4c 6a 51 75 53 44 52 67 4e 43 77 30 4c &nbsp;L3Ri9GFINC30L3QsNC90LjQuSDRgNCw0L</div><div class="code_line">0x011D536E &nbsp;48 51 76 74 47 43 30 4c 33 51 75 4e 43 36 30 4c 37 51 73 69 44 51 75 39 43 25 32 42 30 4c 72 51 76 &nbsp;HQvtGC0L3QuNC60L7QsiDQu9C%2B0LrQv</div><div class="code_line">0x011D538F &nbsp;74 43 38 30 4c 37 52 67 74 43 34 30 4c 4c 51 76 64 43 25 32 42 30 4c 50 51 76 69 44 52 68 64 43 25 &nbsp;tC80L7RgtC40LLQvdC%2B0LPQviDRhdC%</div><div class="code_line">0x011D53B0 &nbsp;32 42 30 4c 66 52 6a 39 43 35 30 59 48 52 67 74 43 79 30 4c 41 67 30 4a 37 51 6b 4e 43 65 49 43 63 &nbsp;2B0LfRj9C50YHRgtCy0LAg0J7QkNCeICc</div><div class="code_line">0x011D53D1 &nbsp;6e 30 4b 44 51 6c 74 43 55 4a 79 64 6b 5a 41 49 4e 44 77 39 6b 46 67 49 65 42 32 39 75 59 32 78 70 &nbsp;n0KDQltCUJydkZAINDw9kFgIeB29uY2xp</div><div class="code_line">0x011D53F2 &nbsp;59 32 73 46 43 45 4e 79 65 58 42 30 4b 43 6b 37 5a 42 67 42 42 52 35 66 58 30 4e 76 62 6e 52 79 62 &nbsp;Y2sFCENyeXB0KCk7ZBgBBR5fX0NvbnRyb</div><div class="code_line">0x011D5413 &nbsp;32 78 7a 55 6d 56 78 64 57 6c 79 5a 56 42 76 63 33 52 43 59 57 4e 72 53 32 56 35 58 31 38 57 41 51 &nbsp;2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAQ</div><div class="code_line">0x011D5434 &nbsp;55 50 63 32 31 68 63 6e 52 6a 59 58 4a 6b 58 32 4e 6f 59 6d 39 34 61 75 25 32 42 48 50 39 6e 39 5a &nbsp;UPc21hcnRjYXJkX2NoYm94au%2BHP9n9Z</div><div class="code_line">0x011D5455 &nbsp;54 42 35 68 7a 59 5a 59 4c 77 4a 25 32 42 59 4a 77 38 75 77 25 33 44 26 5f 5f 56 49 45 57 53 54 41 &nbsp;TB5hzYZYLwJ%2BYJw8uw%3D&amp;__VIEWSTA</div><div class="code_line">0x011D5476 &nbsp;54 45 47 45 4e 45 52 41 54 4f 52 3d 30 30 43 43 45 39 43 30 26 5f 5f 45 56 45 4e 54 56 41 4c 49 44 &nbsp;TEGENERATOR=00CCE9C0&amp;__EVENTVALID</div><div class="code_line">0x011D5497 &nbsp;41 54 49 4f 4e 3d 25 32 46 77 45 57 42 51 4b 64 39 39 53 65 44 51 4b 76 72 75 71 32 43 41 4b 79 78 &nbsp;ATION=%2FwEWBQKd99SeDQKvruq2CAKyx</div><div class="code_line">0x011D54B8 &nbsp;65 43 52 44 77 4c 6c 70 75 50 49 44 77 4c 76 7a 25 32 46 47 41 43 6a 64 4d 54 52 48 33 78 5a 51 47 &nbsp;eCRDwLlpuPIDwLvz%2FGACjdMTRH3xZQG</div><div class="code_line">0x011D54D9 &nbsp;52 6f 77 68 4d 57 79 4e 79 4d 62 73 70 76 46 32 26 55 73 65 72 4e 61 6d 65 3d 25 46 31 25 45 35 25 &nbsp;RowhMWyNyMbspvF2&amp;UserName=%F1%E5%</div><div class="code_line">0x011D54FA &nbsp;45 43 25 45 35 25 45 44 25 46 37 25 45 35 25 45 44 25 45 41 25 45 45 31 31 26 50 61 73 73 57 6f 72 &nbsp;EC%E5%ED%F7%E5%ED%EA%EE11&amp;PassWor</div><div class="code_line">0x011D551B &nbsp;64 3d 26 4c 6f 67 69 6e 3d 25 43 32 25 46 35 25 45 45 25 45 34 26 78 43 72 79 70 74 3d 39 39 39 64 &nbsp;d=&amp;Login=%C2%F5%EE%E4&amp;xCrypt=999d</div><div class="code_line">0x011D553C &nbsp;66 34 63 65 37 38 62 39 36 36 64 65 31 37 61 65 65 31 64 63 38 37 31 31 31 30 34 34 26 73 6d 61 72 &nbsp;f4ce78b966de17aee1dc87111044&amp;smar</div><div class="code_line">0x011D555D &nbsp;74 63 61 72 64 5f 69 64 3d 26 73 6e 69 6c 73 3d 00 00 fd fd fd fd dd dd dd dd dd c9 b8 d6 9c 94 d7 &nbsp;tcard_id=&amp;snils=..</div></ol></div></div></div></div>]]></description>
        <author>Игорь98</author>
        <category>C/C++: Сетевое программирование</category>
      </item>
	
      </channel>
      </rss>
	