<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Open source blog, linux, php, python, security &#187; reset</title>
	<atom:link href="http://www.alonon.net/tag/reset/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alonon.net</link>
	<description></description>
	<lastBuildDate>Wed, 02 Jun 2010 08:11:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>

   <image>
    <title>Open source blog, linux, php, python, security</title>
    <url>http://1.gravatar.com/avatar/5152c5736f5f8dd9570ffb2f9068e8ab?s=</url>
    <link>http://www.alonon.net</link>
   </image>
		<item>
		<title>WordPress Security Vulnerability</title>
		<link>http://www.alonon.net/wordpress-security-vulnerability/</link>
		<comments>http://www.alonon.net/wordpress-security-vulnerability/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 07:46:55 +0000</pubDate>
		<dc:creator>ALonon</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.alonon.net/?p=125</guid>
		<description><![CDATA[With this security vulnerability, your admin password can be reset if your wordpress version &#60;=2.8.3.  For more information about exploit visit: http://www.milw0rm.com/exploits/9410 Solution: open wp-login.php Find this line if ( empty( $key ) ) and change with this: if ( empty( $key ) &#124;&#124; is_array( $key ) ) or patch: http://wordpress.org/development/2009/08/2-8-4-security-release/ Tags: exploit, password, reset, &#8230; <a href="http://www.alonon.net/wordpress-security-vulnerability/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With this security vulnerability, your admin password can be reset if your wordpress version &lt;=2.8.3.  For more information about exploit visit: <a href="http://www.milw0rm.com/exploits/9410">http://www.milw0rm.com/exploits/9410</a></p>
<p>Solution:</p>
<p>open wp-login.php</p>
<p>Find this line</p>
<p><strong>if ( empty( $key ) )</strong></p>
<p>and change with this:</p>
<p><strong>if ( empty( $key ) || is_array( $key ) ) </strong></p>
<p><strong><br />
</strong></p>
<p>or</p>
<p>patch: <a href="http://wordpress.org/development/2009/08/2-8-4-security-release/" target="_blank">http://wordpress.org/development/2009/08/2-8-4-security-release/</a></p>

	Tags: <a href="http://www.alonon.net/tag/exploit/" title="exploit" rel="tag">exploit</a>, <a href="http://www.alonon.net/tag/password/" title="password" rel="tag">password</a>, <a href="http://www.alonon.net/tag/reset/" title="reset" rel="tag">reset</a>, <a href="http://www.alonon.net/tag/wordpress/" title="wordpress" rel="tag">wordpress</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alonon.net/mysql-password-resetchange/" title="Mysql password reset,change (December 29, 2008)">Mysql password reset,change</a> (0)</li>
	<li><a href="http://www.alonon.net/some-changes/" title="Some Changes.. (March 22, 2009)">Some Changes..</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.alonon.net/wordpress-security-vulnerability/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mysql password reset,change</title>
		<link>http://www.alonon.net/mysql-password-resetchange/</link>
		<comments>http://www.alonon.net/mysql-password-resetchange/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 21:27:29 +0000</pubDate>
		<dc:creator>ALonon</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql password]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[reset]]></category>

		<guid isPermaLink="false">http://www.alonon.net/?p=28</guid>
		<description><![CDATA[Q. How do I change MySQL root password under Linux, FreeBSD, OpenBSD and UNIX like operating system over ssh / telnet session? A. Setting up mysql password is one of the essential tasks. root user is MySQL admin account. Please note that Linux / UNIX login root account for your operating system and MySQL root &#8230; <a href="http://www.alonon.net/mysql-password-resetchange/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Q. How do I change MySQL root password under Linux, FreeBSD, OpenBSD and UNIX like operating system over ssh / telnet session?</p>
<p>A. Setting up mysql password is one of the essential tasks. root user is MySQL admin account. Please note that Linux / UNIX login root account for your operating system and MySQL root are different. They are separate and nothing to do with each other (indeed some admin removes root account and setup admin as mysql super user).<br />
mysqladmin command to change root password</p>
<p><span id="more-28"></span></p>
<p>If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To setup root password for first time, use mysqladmin command at shell prompt as follows:</p>
<p>$ mysqladmin -u root password NEWPASSWORD</p>
<p>However, if you want to change (or update) a root password, then you need to use following command</p>
<p>$ mysqladmin -u root -p oldpassword newpass</p>
<p>Enter password:<br />
Change MySQL password for other user</p>
<p>To change a normal user password you need to type (let us assume you would like to change password for vivek):</p>
<p>$ mysqladmin -u vivek -p oldpassword newpass</p>
<p>Changing MySQL root user password using mysql sql command</p>
<p>This is another method. MySQL stores username and passwords in user table inside MySQL database. You can directly update password using the following method to update or change password for user vivek:</p>
<p>1) Login to mysql server, type following command at shell prompt:</p>
<p>$ mysql -u root -p</p>
<p>2) Use mysql database (type command at mysql&gt; prompt):</p>
<p>mysql&gt; use mysql;</p>
<p>3) Change password for user vivek:</p>
<p>mysql&gt; update user set password=PASSWORD(&#8220;NEWPASSWORD&#8221;) where User=&#8217;vivek&#8217;;</p>
<p>4) Reload privileges:</p>
<p>mysql&gt; flush privileges;<br />
mysql&gt; quit</p>
<p>This method you need to use while using PHP or Perl scripting.</p>
<p>until know , it&#8217;s about changing password<br />
how you can reset your mysql pass ?</p>
<p>To be able to modify the existing root password, you must firstly be connected to it. If you know the root password and just want to reinitialize it, you can skip this part. In the case that you don’t have the root password then follow the steps below.<br />
It s is possible to bypass the authentication process and to access MySQL:</p>
<p>Stop the MySQL server.</p>
<p>#/etc/init.d/mysql stop</p>
<p>Restart MySQL, disabling network communication and skipping the authentication procedure.</p>
<p>#mysqld &#8211;skip-grant-tables &#8211;skip-networking &amp;</p>
<p>Reinitializing the password:</p>
<p>Get connected to the system database (mysql) of MySQL:</p>
<p># mysql mysql -u root</p>
<p>Type in the following command and reset your password</p>
<p>UPDATE user SET password=PASSWORD(&#8216;newpassword&#8217;) WHERE user=&#8221;root&#8221;;</p>
<p>If you didn’t go through the first step, to validate the changes simply type:</p>
<p>FLUSH PRIVILEGES;</p>
<p>If you started MySQL manually(bypassing the authentication process), the server must be restarted:</p>
<p>#/etc/init.d/mysql restart</p>

	Tags: <a href="http://www.alonon.net/tag/change/" title="change" rel="tag">change</a>, <a href="http://www.alonon.net/tag/mysql/" title="mysql" rel="tag">mysql</a>, <a href="http://www.alonon.net/tag/mysql-password/" title="mysql password" rel="tag">mysql password</a>, <a href="http://www.alonon.net/tag/password/" title="password" rel="tag">password</a>, <a href="http://www.alonon.net/tag/reset/" title="reset" rel="tag">reset</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alonon.net/wordpress-security-vulnerability/" title="WordPress Security Vulnerability (August 12, 2009)">WordPress Security Vulnerability</a> (1)</li>
	<li><a href="http://www.alonon.net/mysql_insert_id/" title="mysql_insert_id (January 25, 2009)">mysql_insert_id</a> (0)</li>
	<li><a href="http://www.alonon.net/install-php-apache-mysql-phpmyadmin/" title="install php apache mysql phpmyadmin (January 1, 2009)">install php apache mysql phpmyadmin</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.alonon.net/mysql-password-resetchange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
