<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Passwort schutz inc benutzer+löschen]]></title><description><![CDATA[<p>Hallo ih wollte fragen,ob es möglich ist bei einem Konsolenprogramm möglich ist einen Benuzter zu definieren,ein passwort ,die dann abgefragt werden und bei eingabe automaitisch gelöscht werden und nur mit einem bestimmten code wieder abgeufen werden können zu erstellen??</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/260495/passwort-schutz-inc-benutzer-löschen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 08 Sep 2026 01:32:36 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/260495.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 05 Feb 2010 20:38:43 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 20:38:43 GMT]]></title><description><![CDATA[<p>Hallo ih wollte fragen,ob es möglich ist bei einem Konsolenprogramm möglich ist einen Benuzter zu definieren,ein passwort ,die dann abgefragt werden und bei eingabe automaitisch gelöscht werden und nur mit einem bestimmten code wieder abgeufen werden können zu erstellen??</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851154</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851154</guid><dc:creator><![CDATA[Pharao_Atem]]></dc:creator><pubDate>Fri, 05 Feb 2010 20:38:43 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 20:58:31 GMT]]></title><description><![CDATA[<p>Was ist los?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851161</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851161</guid><dc:creator><![CDATA[TyRoXx]]></dc:creator><pubDate>Fri, 05 Feb 2010 20:58:31 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 21:00:54 GMT]]></title><description><![CDATA[<p>Also wenn mein Programm gestartet wird soll ein Benutzername und ein Passwort abgefragt werden,dass ich zuvor im Code bestimme...</p>
<p>Wenn dieses nun verwendet wurde soll es automatisch gelöscht und nicht zugänglich sein.</p>
<p>Nur mit einem Admin account soll man wieder einen User anlegen können</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851164</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851164</guid><dc:creator><![CDATA[Pharao_Atem]]></dc:creator><pubDate>Fri, 05 Feb 2010 21:00:54 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 22:04:17 GMT]]></title><description><![CDATA[<p>Ähhhhh... okaaaaay <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /><br />
Zeig mal deine Versuche und lies bitte deine Posts vor'm abschicken nochmal durch, bin nach dem 5. mal lesen noch nicht durchgestiegen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851192</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851192</guid><dc:creator><![CDATA[Kóyaánasqatsi]]></dc:creator><pubDate>Fri, 05 Feb 2010 22:04:17 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 22:16:50 GMT]]></title><description><![CDATA[<p>ok, ich fasse mal zusammen, wenn ich es richtig verstanden habe:</p>
<p>Du hast zwei unterschiedliche Kontotypen: Admin und User.<br />
Der Admin kann einen User anlegen. Sobald sich mit diesem Userlogin angemeldet wurde, wird dieser Login für alle folgenden Loginversuche ungültig</p>
<p>Ist selbstverständlich möglich. Wie genau, kommt drauf an, was du damit lernen willst. Das reicht von simpler Textdatei bis hin zu einer kleinen Datenbank mit verwürfelten und versalzenen Passwörtern</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851200</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851200</guid><dc:creator><![CDATA[zwutz]]></dc:creator><pubDate>Fri, 05 Feb 2010 22:16:50 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 22:18:22 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &lt;windows.h&gt;
#include &lt;ostream&gt;
#include &lt;sstream&gt;
#include &lt;string&gt;
using namespace std;

string sInputLogin;
string sInputPass;

cout &lt;&lt; &quot;Login: &quot;;
cin &gt;&gt; sInputLogin;
cout &lt;&lt; &quot;Password for &quot; &lt;&lt; sInputLogin &lt;&lt; &quot;: &quot;;
cin &gt;&gt; sInputPass;

if(sInputLogin == &quot;Admin&quot; &amp;&amp; sInputPass == &quot;admin&quot;)
    cout &lt;&lt; &quot;Login OK&quot; &lt;&lt; endl;
else{
    cout &lt;&lt; &quot;Login failed&quot; &lt;&lt; endl;
    return;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1851202</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851202</guid><dc:creator><![CDATA[Pharao_Atem]]></dc:creator><pubDate>Fri, 05 Feb 2010 22:18:22 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 23:14:59 GMT]]></title><description><![CDATA[<p><code>sInputPass == &quot;admin&quot;</code><br />
so bitte nicht...</p>
<p>ich bin ja eigtl auch ein freund von strings und deren vergleichen - aber ab und an sollte man die strings nicht in den quellcode schreiben... was zumindest erst mit nem hex-editor und nicht gleich mit notepad zulesen wäre:</p>
<pre><code class="language-cpp">bool is_admin(const std::string&amp; name, const std::string&amp; pwd)
{
  const char[] admin_pwd = {'a', 'd', 'm', 'i', 'n', '_', 'p', 'w', 'd'};
  const std::size_t length = sizeof(admin_pwd)/sizeof(*admin_pwd);

  if(pwd.size() != length)
    return false;

  return std::equal(pwd.begin(), pwd.end(), &amp;pwd_[0]);
}

/*...*/

int main()
{
  std::string password_input;
  std::getline(password_input, std::cin);

  std::string username_input;
  std::getline(username_input, std::cin);

  if(is_admin(username_input, password_input))
    std::cout &lt;&lt; &quot;hello admin!&quot; &lt;&lt; std::endl;
  else
    std::cout &lt;&lt; &quot;hello 0815-user!&quot; &lt;&lt; std::endl;
}
</code></pre>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851225</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851225</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Fri, 05 Feb 2010 23:14:59 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 23:24:43 GMT]]></title><description><![CDATA[<p>unskilled schrieb:</p>
<blockquote>
<pre><code class="language-cpp">sInputPass == &quot;admin&quot;
</code></pre>
<p>so bitte nicht...</p>
<p>ich bin ja eigtl auch ein freund von strings und deren vergleichen - aber ab und an sollte man die strings nicht in den quellcode schreiben... was zumindest erst mit nem hex-editor und nicht gleich mit notepad zulesen wäre:</p>
<pre><code class="language-cpp">const char[] admin_pwd = {'a', 'd', 'm', 'i', 'n', '_', 'p', 'w', 'd'};
</code></pre>
</blockquote>
<p>Helau <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851231</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851231</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 05 Feb 2010 23:24:43 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 23:32:37 GMT]]></title><description><![CDATA[<p>volkard schrieb:</p>
<blockquote>
<p>unskilled schrieb:</p>
<blockquote>
<pre><code class="language-cpp">sInputPass == &quot;admin&quot;
</code></pre>
<p>so bitte nicht...</p>
<p>ich bin ja eigtl auch ein freund von strings und deren vergleichen - aber ab und an sollte man die strings nicht in den quellcode schreiben... was zumindest erst mit nem hex-editor und nicht gleich mit notepad zulesen wäre:</p>
<pre><code class="language-cpp">const char[] admin_pwd = {'a', 'd', 'm', 'i', 'n', '_', 'p', 'w', 'd'};
</code></pre>
</blockquote>
<p>Helau <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
</blockquote>
<p>gucks doch mit notepad an <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_tongue"
      title=":P"
      alt="😛"
    /><br />
bei der anderen lösung würde am ende der *.exe bei den ganzen strings das pwd stehen - hier nicht - hier stehen dann mitten im source iwelche werte - wie gesagt sollte es mit nem hex-editor etc auch kein prob sein, aber mit notepad erst mal nicht mehr <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61b.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_tongue"
      title=":P"
      alt="😛"
    /></p>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851233</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851233</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Fri, 05 Feb 2010 23:32:37 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 23:42:23 GMT]]></title><description><![CDATA[<p>Steht bei mir bei den Strings.</p>
<pre><code>...__deregister_frame_info   hello admin! hello 0815-user! admin_pwd â@ ”â@ Ìâ@ â@ Lâ@...
</code></pre>
<p>Und die Version mit einem string macht nichts anders.</p>
<pre><code class="language-cpp">const char admin_pwd[] = &quot;admin_pwd&quot;;
  const std::size_t length = sizeof(admin_pwd)/sizeof(*admin_pwd)-1;
</code></pre>
<p>bis auf die Nullterminierung.</p>
<pre><code>...__deregister_frame_info   admin_pwd hello admin! hello 0815-user! â@ ”â@ Ìâ@ â@...
</code></pre>
<p>Und mal</p>
<pre><code class="language-cpp">if(username_input==&quot;admin_pwd&quot;)
</code></pre>
<p>anschauen:</p>
<pre><code>...__deregister_frame_info   admin_pwd hello admin! hello 0815-user! â@ ”â@ Ìâ@...
</code></pre>
<p>Also bleibts beim<br />
Helau <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851236</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851236</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 05 Feb 2010 23:42:23 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Fri, 05 Feb 2010 23:56:49 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;algorithm&gt;
#include &lt;string&gt;

bool is_admin(const std::string&amp; name, const std::string&amp; pwd)
{
  const char admin_pwd[] = {'a', 'd', 'm', 'i', 'n', '_', 'p', 'w', 'd'};
  const std::size_t length = sizeof(admin_pwd)/sizeof(*admin_pwd);

  if(pwd.size() != length)
    return false;

  return std::equal(pwd.begin(), pwd.end(), &amp;admin_pwd[0]);
}

#include &lt;iostream&gt;

int main()
{
  std::string username_input;
  std::getline(std::cin, username_input);

  std::string password_input;
  std::getline(std::cin, password_input);

  if(is_admin(username_input, password_input))
    std::cout &lt;&lt; &quot;hello admin!&quot; &lt;&lt; std::endl;
  else
    std::cout &lt;&lt; &quot;hello 0815-user!&quot; &lt;&lt; std::endl;
}
</code></pre>
<p>erzeugt mit dem msvc, standard release-einstellungen:</p>
<pre><code>MZ       ÿÿ  ¸       @                                   è   º ´	Í!¸LÍ!This program cannot be run in DOS mode.

$       š¬u—ÞÍÄÞÍÄÞÍÄÀŸŽÄßÍÄÀŸ˜ÄÊÍÄÀŸŸÄÜÍÄÀŸˆÄÛÍÄù`ÄÜÍÄÞÍÄ›ÍÄÀŸ‘ÄßÍÄÀŸŠÄßÍÄRichÞÍÄ                PE  L K¯lK        à 	           í           @                      `     ÍL   @                           4#  P    @  °                   P  À  !                             h!  @               ð                           .text   ê
                          `.rdata  º                        @  @.data   Œ   0                     @  À.rsrc   °   @      &quot;              @  @.reloc  8   P      &amp;              @  B                                                                                                                                                                                                                                                                                                                                                        V‹ð+ÎWƒùrëI ‹;uƒéƒÂƒÆƒùsì…ÉtM¶¶:+Çu1ƒùv&gt;¶F¶z+Çu ƒùv-¶F¶z+Çuƒùv¶F¶J+ÁÁøƒÈ3Ò…À”Â_ŠÂ^Ã3À3Ò…À”Â_ŠÂ^ÃÌÌÌÌÌÌÌÌÌÌÌÌÌƒì0¡ 0@ 3Ä‰D$(ƒ~	°dWÆD$ aˆD$!ÆD$&quot;mÆD$#iÆD$$nÆD$%_ÆD$&amp;pÆD$'wˆD$(t2À_‹L$(3Ìè\  ƒÄ0ÃD$P‹Îÿ&lt; @ ‹‹xT$‰L$R‹Îÿ@ @ ‹‹@‰L$ÆD$ ‹T$‹L$RQT$(‹ÏèÖþÿÿ‹L$4ƒÄ_3Ìè  ƒÄ0ÃÌÌÌU‹ìƒäøjÿhÂ@ d¡    Pƒì@¡ 0@ 3Ä‰D$8V¡ 0@ 3ÄPD$Hd£    L$$ÿH @ ÇD$P    ‹
x @ ‹5p @ D$$PQÿÖƒÄL$ÿH @ T$ÆD$P¡x @ RPÿÖƒÄt$èÊþÿÿ„Àt‹
L @ ‹d @ QQhD!@ Rë¡L @ PQ‹
d @ hT!@ Qèˆ  ƒÄ‹ÈÿP @ L$ÆD$P ÿD @ L$$ÇD$PÿÿÿÿÿD @ 3À‹L$Hd‰
    Y^‹L$83Ìèþ  ‹å]ÃÌÌÌÌÌÌÌÌÌÌÌÌÌÌjÿhX@ d¡    PW¡ 0@ 3ÄPD$d£    ‹|$‰7‹‹H‹L1(…Étÿ` @ ÇD$    ‹‹BÆƒx u‹@,…Àt‹ÈÿT @ ‹‹Qƒ|2 ”ÀˆG‹Ç‹L$d‰
    Y_ƒÄÂ ÌÌÌÌÌÌÌÌÌÌÌÌÌjÿhX@ d¡    PV¡ 0@ 3ÄPD$d£    ‹t$ÇD$    ÿt @ „Àu‹ÿh @ ÇD$ÿÿÿÿ‹‹‹Q‹D(…Àt‹Èÿ\ @ ‹L$d‰
    Y^ƒÄÂ ÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ‹ ‹‹Q‹D(…Àt‹Èÿ%\ @ ÃÌÌÌÌÌÌÌÌU‹ìjÿh’@ d¡    PƒìSVW¡ 0@ 3ÅPEôd£    ‰eð‹u‹E3Û‰]ìP¤$    Š@„Éuù+Â‹ø‹‹H‹D1;Ã~;Ç~+Ç‹ØUàRègþÿÿÇEü    €}ä u	ÇEì   ëyÆEü‹‹H‹D1%À  ƒø@t4…Û~*‹‹BŠL00Æ‹@(ˆMè‹UèR‹ÈÿX @ ƒøÿ…–   ƒMìƒ}ì u‹‹H‹U‹L1(WRÿl @ ;Çt~ÇEì   ‹‹@Æ3É‰H‰Mü‹Mì‹j Q‹JÎÿ8 @ ÇEü   ÿt @ „Àu	‹Màÿh @ ÇEüÿÿÿÿ‹Eà‹‹Q‹L(…Étÿ\ @ ‹Æ‹Môd‰
    Y_^[‹å]ÃKé:ÿÿÿd$ …Û~…‹‹HŠT101‹@(ˆUè‹MèQ‹ÈÿX @ ƒøÿu	ƒMìéYÿÿÿKëÍ‹E‹‹JjjÈÿ8 @ ÇEü    ¸4@ Ã‹ué&lt;ÿÿÿ;
 0@ uóÃé¬  h6@ è¤  ¡h3@ Ç$40@ ÿ5d3@ £40@ h$0@ h(0@ h 0@ ÿÜ @ ƒÄ£00@ …À}jèº  YÃjh&quot;@ è*  3Û‰]üd¡   ‹p‰]ä¿|3@ SVWÿ @ ;Ãt;Æu3öF‰uäëhè  ÿ  @ ëÚ3öF¡x3@ ;Æu
jè]  Yë;¡x3@ …Àu,‰5x3@ h!@ hü @ è²  YY…ÀtÇEüþÿÿÿ¸ÿ   éÝ   ‰5&lt;0@ ¡x3@ ;Æuhø @ hð @ èw  YYÇx3@    9]äuSWÿ0 @ 9ˆ3@ thˆ3@ èŽ  Y…Àt
SjSÿˆ3@ ¡$0@ ‹
Ì @ ‰ÿ5$0@ ÿ5(0@ ÿ5 0@ è›úÿÿƒÄ£80@ 9,0@ u7Pÿä @ ‹Eì‹‹	‰MàPQè  YYÃ‹eè‹Eà£80@ 3Û9,0@ uPÿÔ @ 9&lt;0@ uÿØ @ ÇEüþÿÿÿ¡80@ è  Ã¸MZ  f9  @ t3ÀëM¡&lt; @ €  @ 8PE  ué·Hù  tù  uÕƒ¸„   vÌ3É9ˆø   ëƒxtv¼3É9ˆè   •Á‹Áj£,0@ ÿ„ @ jÿÿ€ @ YY£€3@ £„3@ ÿ° @ ‹
p3@ ‰ÿ´ @ ‹
l3@ ‰¡¸ @ ‹ £t3@ èW  è·  ƒ=0@  uhu@ ÿ¼ @ Yèr  ƒ=0@ ÿu	jÿÿÀ @ Y3ÀÃè†  éŸýÿÿ‹ÿU‹ìì(  £H1@ ‰
D1@ ‰@1@ ‰&lt;1@ ‰581@ ‰=41@ fŒ`1@ fŒ
T1@ fŒ01@ fŒ,1@ fŒ%(1@ fŒ-$1@ œX1@ ‹E £L1@ ‹E£P1@ E£\1@ ‹…àüÿÿÇ˜0@   ¡P1@ £L0@ Ç@0@ 	 ÀÇD0@    ¡ 0@ ‰…Øüÿÿ¡0@ ‰…Üüÿÿÿ @ £0@ jèJ  Yj ÿ @ h,!@ ÿ @ ƒ=0@  ujè&amp;  Yh	 Àÿ @ Pÿ @ ÉÃ‹ÿU‹ì‹E‹ 8csmàu*ƒxu$‹@= “t=!“t=&quot;“t= @™uèÛ  3À]Â hý@ ÿ @ 3ÀÃÌÿ%à @ jh0&quot;@ èl  ÿ5„3@ ‹5  @ ÿÖY‰Eäƒøÿuÿuÿœ @ Yëgjèœ  Yƒeü ÿ5„3@ ÿÖ‰Eäÿ5€3@ ÿÖYY‰EàEàPEäPÿu‹5€ @ ÿÖYPè_  ‰EÜÿuäÿÖ£„3@ ÿuàÿÖƒÄ£€3@ ÇEüþÿÿÿè	   ‹EÜè&quot;  Ãjè#  YÃ‹ÿU‹ìÿuèNÿÿÿ÷ØÀ÷ØYH]Ã‹ÿV¸&quot;@ ¾&quot;@ W‹ø;Æs‹…ÀtÿÐƒÇ;þrñ_^Ã‹ÿV¸&quot;@ ¾&quot;@ W‹ø;Æs‹…ÀtÿÐƒÇ;þrñ_^Ãÿ%Ð @ ÌÌÌÌÌÌÌÌÌÌÌÌÌÌ‹ÿU‹ì‹M¸MZ  f9t3À]Ã‹A&lt;Á8PE  uï3Ò¹  f9H”Â‹Â]ÃÌÌÌÌÌÌÌÌÌÌÌ‹ÿU‹ì‹E‹H&lt;È·ASV·q3ÒWD…öv‹}‹H;ùr	‹XÙ;ûr
BƒÀ(;Örè3À_^[]ÃÌÌÌÌÌÌÌÌÌÌÌÌ‹ÿU‹ìjþhP&quot;@ h%@ d¡    PƒìSVW¡ 0@ 1Eø3ÅPEðd£    ‰eèÇEü    h  @ è*ÿÿÿƒÄ…ÀtU‹E-  @ Ph  @ èPÿÿÿƒÄ…Àt;‹@$Áè÷ÐƒàÇEüþÿÿÿ‹Mðd‰
    Y_^[‹å]Ã‹Eì‹‹3Ò=  À”Â‹ÂÃ‹eèÇEüþÿÿÿ3À‹Mðd‰
    Y_^[‹å]ÃÌÿ%È @ ÿ%Ä @ ÌÌh%@ dÿ5    ‹D$‰l$l$+àSVW¡ 0@ 1Eü3ÅP‰eèÿuø‹EüÇEüþÿÿÿ‰EøEðd£    Ã‹Mðd‰
    Y__^[‹å]QÃ‹ÿU‹ìÿuÿuÿuÿuh&lt;@ h 0@ èç   ƒÄ]Ã‹ÿVh   h   3öVèÙ   ƒÄ…Àt
VVVVVèÂ   ƒÄ^Ã3ÀÃ‹ÿU‹ìƒì¡ 0@ ƒeø ƒeü SW¿Næ@»»  ÿÿ;Çt
…Ãt	÷Ð£0@ ë`VEøPÿ, @ ‹uü3uøÿ( @ 3ðÿ$ @ 3ðÿ  @ 3ðEðPÿ @ ‹Eô3Eð3ð;÷u¾Oæ@»ë…óu‹ÆÁàð‰5 0@ ÷Ö‰50@ ^_[ÉÃÿ%ˆ @ ÿ%Œ @ ÿ% @ ÿ%” @ ÿ%˜ @ ÿ%¤ @ ÿ%¨ @ ÿ%¬ @ ÿ%è @ ÌÌÌÌÌÌÌÌÌÌÌÌ‹Eéöÿÿ‹T$Bü‹Jø3ÈèÓ÷ÿÿ¸t&quot;@ éËÿÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌEàPèWõÿÿÃEàéÎõÿÿ‹T$B‹JÜ3Èè™÷ÿÿ¸Ü&quot;@ é‘ÿÿÿÌÌÌMÐÿ%D @ M´ÿ%D @ ‹T$B¼‹J¸3Èèi÷ÿÿƒÀ‹Jø3Èè\÷ÿÿ¸#@ éTÿÿÿ                      Š+  ’+  °+  Ä+  Ø+  ô+  ,  &amp;,  @,  P,  f,  |,  t+      ’'  Ò'  d(  ø(  B)  Œ)  B'   '  À&amp;  ~&amp;  &gt;&amp;  t$   &amp;  ¼%  %  ê$  °$      ¢*  ´*  Æ*  Ü*  ü*  +  +  +  &amp;+  8+  R+  d+  ”*  „*  t*  `*  J*  &lt;*  0*  $*  *  *  ü)  ì)  Þ)  *  ¤,          K@         @ ?@             K¯lK       8   °!  °  @0@ ˜0@ bad allocation  hello admin!    hello 0815-user!    H                                                            0@ ð!@    RSDSi‚#£G–«&quot;[º5   f:\Test\test1\Release\test1.pdb         %  X  ’  Â                  þÿÿÿ    Ðÿÿÿ    þÿÿÿ¼@ Ð@     þÿÿÿ    Ìÿÿÿ    þÿÿÿ    ð@     þÿÿÿ    Øÿÿÿ    þÿÿÿ‹@ Ÿ@ ÿÿÿÿP@ &quot;“   l&quot;@                        ÿÿÿÿ€@                 ÿÿÿÿŠ@ @           @             ¸&quot;@ &quot;“   ˜&quot;@    È&quot;@                ÿÿÿÿ°@     ¹@ &quot;“    #@                        ¼#          Ò)  8   $          ð*  €   „#          –,                          Š+  ’+  °+  Ä+  Ø+  ô+  ,  &amp;,  @,  P,  f,  |,  t+      ’'  Ò'  d(  ø(  B)  Œ)  B'   '  À&amp;  ~&amp;  &gt;&amp;  t$   &amp;  ¼%  %  ê$  °$      ¢*  ´*  Æ*  Ü*  ü*  +  +  +  &amp;+  8+  R+  d+  ”*  „*  t*  `*  J*  &lt;*  0*  $*  *  *  ü)  ì)  Þ)  *  ¤,      ‚?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A  ;?cin@std@@3V?$basic_istream@DU?$char_traits@D@std@@@1@A ä?uncaught_exception@std@@YA_NXZ Â ??$getline@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@YAAAV?$basic_istream@DU?$char_traits@D@std@@@0@AAV10@AAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@0@@Z v?sputn@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHPBDH@Z  |?_Osfx@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEXXZ  W?_Lock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ  Ð?_Unlock@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEXXZ  s?sputc@?$basic_streambuf@DU?$char_traits@D@std@@@std@@QAEHD@Z !?flush@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV12@XZ ??6?$basic_ostream@DU?$char_traits@D@std@@@std@@QAEAAV01@P6AAAV01@AAV01@@Z@Z  D?setstate@?$basic_ios@DU?$char_traits@D@std@@@std@@QAEXH_N@Z  Ÿ?end@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$_String_const_iterator@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ  /?begin@?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QBE?AV?$_String_const_iterator@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ  _??1?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ  {??0?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@QAE@XZ  ¤?endl@std@@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@1@AAV21@@Z  MSVCP90.dll _amsg_exit  Ÿ __getmainargs ,_cexit  |_exit f _XcptFilter Ìexit    __initenv _initterm _initterm_e &lt;_configthreadlocale ã __setusermatherr  _adjust_fdiv  Ë __p__commode  Ï __p__fmode  j_encode_pointer à __set_app_type  K_crt_debugger_hook  C ?terminate@@YAXXZ MSVCR90.dll æ_unlock – __dllonexit v_lock _onexit `_decode_pointer s_except_handler4_common _invoke_watson  ?_controlfp_s  ½InterlockedExchange !Sleep ºInterlockedCompareExchange  -TerminateProcess  ©GetCurrentProcess &gt;UnhandledExceptionFilter  SetUnhandledExceptionFilter ÑIsDebuggerPresent TQueryPerformanceCounter fGetTickCount  ­GetCurrentThreadId  ªGetCurrentProcessId OGetSystemTimeAsFileTime KERNEL32.dll  s __CxxFrameHandler3                                                                                                                                                                                                                                                                                                                                        Næ@»±¿Dÿÿÿÿÿÿÿÿþÿÿÿ   4!@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        €                 0  €              	  H   X@  V  ä      &lt;assembly xmlns=&quot;urn:schemas-microsoft-com:asm.v1&quot; manifestVersion=&quot;1.0&quot;&gt;
  &lt;trustInfo xmlns=&quot;urn:schemas-microsoft-com:asm.v3&quot;&gt;
    &lt;security&gt;
      &lt;requestedPrivileges&gt;
        &lt;requestedExecutionLevel level=&quot;asInvoker&quot; uiAccess=&quot;false&quot;&gt;&lt;/requestedExecutionLevel&gt;
      &lt;/requestedPrivileges&gt;
    &lt;/security&gt;
  &lt;/trustInfo&gt;
  &lt;dependency&gt;
    &lt;dependentAssembly&gt;
      &lt;assemblyIdentity type=&quot;win32&quot; name=&quot;Microsoft.VC90.CRT&quot; version=&quot;9.0.21022.8&quot; processorArchitecture=&quot;x86&quot; publicKeyToken=&quot;1fc8b3b9a1e18e3b&quot;&gt;&lt;/assemblyIdentity&gt;
    &lt;/dependentAssembly&gt;
  &lt;/dependency&gt;
&lt;/assembly&gt;PAPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDING   |  ”0í01I1X1d1{1‰11¤1²1Ì1Ò1Ù1á1é1î1ÿ12 2S2`2†2ª2ã2ð233:3s3†3˜334Z4‡4”4¡4¾4þ4#5/5&gt;5L5V5]5c5h5m5r5w5}5…5™5´5½5Ø5â5õ5ÿ56	6+60696&gt;6K6\6b6i6}6‚6ˆ66–6œ6©6¯6¸6×6ß6è6î6ö6777%7n7t7|7ƒ7ˆ7Ž7”7œ7¢7©7°7À7È7Î7Ú7å78	8888!8(8/868=8D8K8R8Z8b8j8v88„8Š8”88¨8´8¹8É8Î8Ô8Ú8ð8÷8@9F9P9W9b9h9|9‘9œ9´9Ê9×9::::?:^:;
;;=;Q;W;À;Æ;Í;ê;7&lt;&lt;&lt;&lt;¤&lt;±&lt;½&lt;Å&lt;Í&lt;Ù&lt;ý&lt;====&quot;=(=.=4=:=@=j=¤=µ=¾=á=    8   ô0 11,101¤1¨1$2(2H2d2h2p2|2œ2´2Ä2Ø2ä2ì2333   0     0
</code></pre>
<p>also bleibts beim: zumindest im notepad nicht zu erkennen</p>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851240</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851240</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Fri, 05 Feb 2010 23:56:49 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Sat, 06 Feb 2010 00:07:57 GMT]]></title><description><![CDATA[<p>Es bleibt bei einem sehr schwachen Rat. So viel Code, wie Du dazuerzeugt hast, da kannste auch schnell drüberlaufen und zu jedem char 11 addieren oder die letzten drei Bits toggeln. Dann klappts auch mit allen Compilern. Beachte, daß ich auch mit notepad geschaut habe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851245</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851245</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Sat, 06 Feb 2010 00:07:57 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Sat, 06 Feb 2010 00:29:03 GMT]]></title><description><![CDATA[<blockquote>
<p>Es bleibt bei einem sehr schwachen Rat.</p>
</blockquote>
<p>Jopp - das hatte ich aber ganz am Anfang auch schon geschrieben...</p>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851256</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851256</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sat, 06 Feb 2010 00:29:03 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Sat, 06 Feb 2010 06:29:12 GMT]]></title><description><![CDATA[<p>unskilled schrieb:</p>
<blockquote>
<p>also bleibts beim: zumindest im notepad nicht zu erkennen</p>
</blockquote>
<p>Ende Zeile 25?!?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851289</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851289</guid><dc:creator><![CDATA[Michael E.]]></dc:creator><pubDate>Sat, 06 Feb 2010 06:29:12 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Sat, 06 Feb 2010 14:01:43 GMT]]></title><description><![CDATA[<p>Michael E. schrieb:</p>
<blockquote>
<p>unskilled schrieb:</p>
<blockquote>
<p>also bleibts beim: zumindest im notepad nicht zu erkennen</p>
</blockquote>
<p>Ende Zeile 25?!?</p>
</blockquote>
<p>Bin ich blind? Oo<br />
Ich seh nix<br />
Strg+F &quot;admin_pwd&quot; liefert auch nur 8 Ergebnisse - nämlich die im Quelltext(je 2 mal)</p>
<p>bb</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851418</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851418</guid><dc:creator><![CDATA[unskilled]]></dc:creator><pubDate>Sat, 06 Feb 2010 14:01:43 GMT</pubDate></item><item><title><![CDATA[Reply to Passwort schutz inc benutzer+löschen on Sat, 06 Feb 2010 16:11:52 GMT]]></title><description><![CDATA[<p>Ups, hab nur &quot;hello admin! hello 0815-user!&quot; gefunden. Und das Ende der Zeile ists auch noch lange nicth <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1851504</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1851504</guid><dc:creator><![CDATA[Michael E.]]></dc:creator><pubDate>Sat, 06 Feb 2010 16:11:52 GMT</pubDate></item></channel></rss>