Showing posts with label MySQL Access Control. Show all posts
Showing posts with label MySQL Access Control. Show all posts

Potential leak of data: MySQL Access Control


Detected 1 occurrence(s) of ‘create user .* identified by’:
$ cat createschema.sql
CREATE USER ENPBMPUMA IDENTIFIED BY test123;
GRANT CONNECT TO ENPBMPUMA;
--------------------------------------------------------
--  File created - Wednesday-September-12-2012   
--------------------------------------------------------
@ACCURACY.sql
$ cat ACCURACY.sql 
-- Unable to render 

Potential leak of data: MySQL Access Control


Detected 1 occurrence(s) of ‘using password’:
ot" host="${build.hostname}" todir="/mnt/work/build/." privkeyfile="c-vpc-ssh-key" level="debug">
  <fileset dir="target">
   <include name="app.zip"/>
  </fileset>
 </scp>
</target>

[PHP Error] ssh2_auth_password(): Authentication failed for root using password [line 305 of C:\xampp\php\PEAR\phing\tasks\ext\ScpTask.php]
Execution of target "deploy" failed for the following reason: D:\projects\Client\client_c_svn\trunk\build\build.xml:126:44: Could not authenticate connection!

Potential leak of data: MySQL Access Control


Detected 1 occurrence(s) of ‘create user .* identified by’:
sable-install-rdoc

* Make

        make

* Make install

        sudo make install


# Install MySql database
    sudo apt-get install mysql-server libmysqlclient-dev

# Create new mysql user
* Log in as root

    mysql -u root -p

* Create user

        CREATE USER 'rdeveloper'@'localhost' IDENTIFIED BY 'rdeveloper';

* Grant privileges

        GRANT ALL PRIVILEGES ON *.* TO 'rdeveloper'@'localhost' WITH GRANT OPTION;

# Install gems
    sudo gem install bundler mysql2 rails