Search results

  1. Ecko

    REMOVED.

    Pretty sure it's still obfuscated.
  2. Ecko

    Is this exploitable?

    The output needs too be an integer? What the hell are you smoking? The majority of XSS attacks are from search queries. I think you need to take a look at the examples here: https://www.owasp.org/index.php/Cross-site_Scripting_(XSS) And for SQL injections...
  3. Ecko

    Is this exploitable?

    ... Have you ever heard of second order attacks? Blind SQL injections? XSS? Session hijacking? There doesn't need to be user input for something to be exploited. This is why you filter output. If I wasn't at work (this place where I deal with hundreds of customers' SQL injected sites daily)...
  4. Ecko

    Is this exploitable?

    no no no: $getUserInfo = mysql_query("SELECT * FROM users WHERE id = '".$Comments['userid']."'"); Learn to switch everything over using prepared statements and you won't be vulnerable to SQL injections.
  5. Ecko

    Is this gaming pc worth it?

    Intel > AMD Fairly cheap and good GPU is the GeForce GTS 450 For cooling system go with Corsair, probably the H60
  6. Ecko

    Is this gaming pc worth it?

    Nothing wrong with 4GB RAM... The processor is the no no
  7. Ecko

    [PHP] preg_match help

    foreach();
  8. Ecko

    How To setup a database when using Navicat Premium for IIS7.5

    xampp runs Apache, which is a completely different web server than IIS.
  9. Ecko

    Php Auto login after register

    Where's the rest of the register script? The part that inserts user data into the database?
  10. Ecko

    RuneScape Old School

    Old school RuneScape = RSC: www.rscdump.com
  11. Ecko

    Show DevBest Password Generator Script

    <?php echo substr(str_shuffle('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$'), 0, 10); ?> Much better password generator than the one posted: http://www.autobots.biz/dev/result.php Just refresh to get a new generated password.
  12. Ecko

    Php register form help.

    Replace include_once"config.php"; with include_once "config.php";
  13. Ecko

    Php register form help.

    Try: <body> <div class="header"> <div class="wrapper"> <div class="Logo"></div> <div class="headernav"><font color="white"><b> Please login or register to enter the Dobby's Network website.</b></font> </div> </div> </div>...
  14. Ecko

    [Help] Getting Error

    Need to know what is in the $data variable to continue.
  15. Ecko

    [Help] Getting Error

    Post line 86 from class.forms.php
  16. Ecko

    Select random

    Show table structure or the query you currently have first, then we can know the best way to do this. I would say use ORDER BY RAND() in the SELECT statement, but that is inefficient as you waste resources creating a temporary table.
  17. Ecko

    Ubercms Help

    Replace: set_magic_quotes_runtime('0'); with: ini_set("magic_quotes_runtime", 0);
  18. Ecko

    Help willing to pay.

    PM me teamviewer details and I will look at it.
  19. Ecko

    Help willing to pay.

    The first error is because the file config.php inside the 'includes' folder does not exist.
  20. Ecko

    Client Error [Flash]

    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager03.html
Top