Search results

  1. F

    Removing Perfect Keylogger

    Actually thats a good point, if it was coded by a pro then it will most likely use a negative PID and will not appear in taskmgr.exe. Use the command line "tasklist". Actually - New Idea. Why don't you copy your user profile to an external disk and reinstall the OS? This is the only way to be...
  2. F

    Removing Perfect Keylogger

    Have you tried to locate the file in task manager? Then go to view, set columns and check the command line box. Go to the process and copy the command line, thats the pathway to the file. Either delete it or create a deny all ACE.
  3. F

    Override host error pages?

    Hmm... the .htaccess amendment isn't working :( Any other ideas?
  4. F

    Override host error pages?

    Hmm... interesting. I'll look into it :) Thanks :)
  5. F

    Override host error pages?

    It's my play site :tongue: For testing stupid things :biggrin:
  6. F

    Override host error pages?

    Thanks :) +Rep
  7. F

    Override host error pages?

    Would this override host defined pages?
  8. F

    Override host error pages?

    Hey guys, sorry I don't know what section to post this in. Does anyone know a way in which you can override the host's error pages such as 403 etc? I have a host which sets these pages for you, and they are filled with ads. I would like to override with my own, but created the 403 page in my...
  9. F

    Count special characters with strpbrk function (PHP)

    Thanks for the help :P I fixed it. Just for anyone who needs this, maybe this will help... $scm = preg_match('/[^A-Za-z0-9]/', $password); if ($scm==1) $s++; $scm means special character match $s++ means increment the score. [^A-Za-z0-9] this basically means anything except A-Z, a-z...
  10. F

    Count special characters with strpbrk function (PHP)

    I was thinking just the normal !"£$%^&*()_+~@:?><{},./\|` How exactly does the preg_match_all function work?
  11. F

    Count special characters with strpbrk function (PHP)

    I found the substr_count function, do you think this would work?...
  12. F

    Count special characters with strpbrk function (PHP)

    Yes :) Im making a password strength tester for the registration page on my site and want to increment the users "password score" with each next level. 1 upper case = $score++ 2 upper case = $score++; $score++ 1 special character = $score++ 2 special characters = $score++; $score++ etc...
  13. F

    Count special characters with strpbrk function (PHP)

    Hey guys, I now have a new problem. Does anyone know how to use the strpbrk() in PHP to only count the letters in the char_list? It's counting all characters after the char_list characters have been detected, is there a way to limit it to only those characters that match or even is there...
  14. F

    Teaching myself PHP -> Question on variables

    Jotform.com is able to identify users who keep returning even if they wipe their cache, temporary files and cookies without asking the user for a username... I would like to know how... But, would cookies and sessions not be lost after a history wipe? I should also note I use a dyn IP, so I...
  15. F

    Teaching myself PHP -> Question on variables

    Hmm I suppose you're right. Thanks :)
  16. F

    Removing Perfect Keylogger

    I would recommend going to msconfig and disabling all startup items except your anti-virus. That way, the keylogger should remain inactive to allow an easier removal.
  17. F

    Teaching myself PHP -> Question on variables

    Hey guys, I know there's a lot of coding pros on here so I thought this would be the best place to ask this question 8-) I was wondering, is there any way to pull variables off the user's computer such as the computer name, their username, profile location etc? Like the variables you would use...
  18. F

    Forum phpbb with problem

    Does it give a reason? Access denied maybe? Have you ensured the correct user has been created with all privileges, and that that user has been assigned to the database correctly? Update - I think I see what you're talking about now. I believe this is a server issue which needs attention from...
  19. F

    Urgent help needed! 1&1

    Well I'm only 16, so I'm not really worried. But they might start charging stuff to my bank which my parents are responsible for :(
  20. F

    Advantages V Disadvantages - One database - Many Scripts

    Hi guys, I was thinking about just using one root database for my site and just having unique prefixes for each script. I would like to know more about the advantages and disadvantages of this. So far, the only disadvantage I can see would be database security. Since there would only be one...
Top