<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ProductCart Shopping Cart Software Forums : How to extract Customers Passwords</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Using ProductCart : How to extract Customers Passwords]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 11 Apr 2026 13:54:55 +0000</pubDate>
  <lastBuildDate>Wed, 15 May 2013 18:23:15 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=1329</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[How to extract Customers Passwords : I found the answer. You must include...]]></title>
   <link>https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post21300.html#21300</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=214">fly_scuba</a><br /><strong>Subject:</strong> 1329<br /><strong>Posted:</strong> 15-May-2013 at 6:23pm<br /><br />I found the answer. &nbsp;<div><br></div><div>You must include the following response object:</div><div><br></div><div><div>dim AdminPassword , intLength</div><div>Response.Charset = "UTF-8"</div></div><div><br></div><div><br></div><div>Hope this helps someone.</div>]]>
   </description>
   <pubDate>Wed, 15 May 2013 18:23:15 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post21300.html#21300</guid>
  </item> 
  <item>
   <title><![CDATA[How to extract Customers Passwords : I performing the steps in this...]]></title>
   <link>https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post21298.html#21298</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=214">fly_scuba</a><br /><strong>Subject:</strong> 1329<br /><strong>Posted:</strong> 15-May-2013 at 6:08pm<br /><br />I performing the steps in this post I believe that there are significant changes that version 4.7 now uses. With the option explicit option turned on we see 2 variables that are now not being&nbsp;initialized&nbsp;just by the listed include files. I have been able to review the admin login page and determined that the process is still basically the same but the password is not being displayed in normal text after the enDecrypt function.&nbsp;<div><br></div><div>Just for my own knowledge I posted out my password from the db before the function call and after ward. I also list out my key which is passed to the function as well.</div><div><br></div><div>The value that comes back from the function is the same as the parameter sent to the function before it went in.</div><div><br></div><div>I could use some updated info on this process.<img src="https://forum.productcart.com/smileys/smiley1.gif" border="0" alt="Smile" title="Smile" /></div>]]>
   </description>
   <pubDate>Wed, 15 May 2013 18:08:01 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post21298.html#21298</guid>
  </item> 
  <item>
   <title><![CDATA[How to extract Customers Passwords : First of all, include settings.asp,...]]></title>
   <link>https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post4205.html#4205</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=477">p00pstar</a><br /><strong>Subject:</strong> 1329<br /><strong>Posted:</strong> 26-February-2008 at 3:47pm<br /><br />First of all, include settings.asp, storeconstants.asp and rc4.asp<br><br><br>Response.Charset = "UTF-8"<br><br>Set dbConn = Server.CreateObject("ADODB.Connection")<br>dbConn.Open scDSN<br><br>SQLString = "SELECT idcustomer,email,&#091;password&#093; FROM customers ORDER BY idcustomer ASC"<br><br>Set rsPasswords = dbConn.Execute(SQLString)<br><br>Response.Write "&lt;table&gt;"<br><br>Do While Not rsPasswords.Eof<br>&nbsp;&nbsp; &nbsp;Response.Write "&lt;tr&gt;&lt;td&gt;" &amp; rsPasswords("idcustomer") &amp; "&lt;/td&gt;&lt;td&gt;" &amp; rsPasswords("email") &amp; "&lt;/td&gt;&lt;td&gt;" &amp; enDeCrypt(rsPasswords("password"), scCrypPass) &amp; "&lt;/td&gt;&lt;/tr&gt;"<br>&nbsp;&nbsp; &nbsp;rsPasswords.MoveNext<br>Loop<br><br>Response.Write "&lt;/table&gt;"<br><br>Set rsPasswords = Nothing<br>dbConn.Close<br>Set dbConn = Nothing]]>
   </description>
   <pubDate>Tue, 26 Feb 2008 15:47:51 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post4205.html#4205</guid>
  </item> 
  <item>
   <title><![CDATA[How to extract Customers Passwords : Sounds like custom code time Robert....]]></title>
   <link>https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post4032.html#4032</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=290">Greg Dinger</a><br /><strong>Subject:</strong> 1329<br /><strong>Posted:</strong> 29-January-2008 at 10:52pm<br /><br />Sounds like custom code time Robert.&nbsp; There is likely&nbsp;a routine in the code which is used by the login scripts to decrypt the stored password and compare it to the entry keyed in the login form.&nbsp; The approach I would take is to identify that, clone whatever part of the logic is needed, and cause the decrypted password to appear on the customer listing.&nbsp; But I've not looked at the specific code, thus I'm speaking in generalities instead of specifics.]]>
   </description>
   <pubDate>Tue, 29 Jan 2008 22:52:19 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post4032.html#4032</guid>
  </item> 
  <item>
   <title><![CDATA[How to extract Customers Passwords : Anybody?? Edited by RobertZ -...]]></title>
   <link>https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post4031.html#4031</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=426">RobertZ</a><br /><strong>Subject:</strong> 1329<br /><strong>Posted:</strong> 29-January-2008 at 10:25pm<br /><br />Anybody?? <span style="font-size:10px"><br /><br />Edited by RobertZ - 29-January-2008 at 10:26pm</span>]]>
   </description>
   <pubDate>Tue, 29 Jan 2008 22:25:53 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post4031.html#4031</guid>
  </item> 
  <item>
   <title><![CDATA[How to extract Customers Passwords : Howdy Does anybody know how to...]]></title>
   <link>https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post3996.html#3996</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=426">RobertZ</a><br /><strong>Subject:</strong> 1329<br /><strong>Posted:</strong> 23-January-2008 at 7:52pm<br /><br /><P>Howdy</P><P>Does anybody know how to extract a customers password from their account? We're finding a few situations where we need this info but because its encryted in the DB cannt extract it.</P><P>We have a work around, but it would be nice if admin could see this info, if needed.</P><P>Rob</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Wed, 23 Jan 2008 19:52:25 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/how-to-extract-customers-passwords_topic1329_post3996.html#3996</guid>
  </item> 
 </channel>
</rss>