Search results

  1. 7r1n17y

    Do you think there will be a new OS in the future?

    Oh snap lol i am so in the dark.
  2. 7r1n17y

    Do you think there will be a new OS in the future?

    Honesty i can see google coming out with their own OS. They already came out with their own phone. You never know they might say hey lets make and OS.
  3. 7r1n17y

    Samsung Galaxy vs LG

    Pixel stomps on them both GG.
  4. 7r1n17y

    [PHP] How to install a PHP extension

    What are PHP extensions? PHP extensions are compiled libraries that enable certain functions that you can use during your script. How do i install a PHP extension? Download the application extension file to copy to your php extensions directory. If you can not locate the extensions directory...
  5. 7r1n17y

    Thanks :)

    Thanks :)
  6. 7r1n17y

    Alright friends?

    Alright friends?
  7. 7r1n17y

    Always posting in main chat wanting some feedback

    Always posting in main chat wanting some feedback
  8. 7r1n17y

    did i do something?

    did i do something?
  9. 7r1n17y

    what do you have against me.

    what do you have against me.
  10. 7r1n17y

    some php code snippets by me

    some php code snippets by me
  11. 7r1n17y

    https://devbest.com/threads/looking-to-create-a-new-framework.83090/

    https://devbest.com/threads/looking-to-create-a-new-framework.83090/
  12. 7r1n17y

    What about it?

    What about it?
  13. 7r1n17y

    Just because i do not know React or Electron does not mean i do not know how to code.

    Just because i do not know React or Electron does not mean i do not know how to code.
  14. 7r1n17y

    I do not know reakt or elektron.

    I do not know reakt or elektron.
  15. 7r1n17y

    What would you like to know.

    What would you like to know.
  16. 7r1n17y

    Looking to create a new framework.

    Hey i am looking t create a new php framework this is to provide simple, reusable, and secure code. Right now i have installed a couple composer packages and created some classes/interfaces and i am currently setup a custom made router. If anyone is interested in contributing email me at...
  17. 7r1n17y

    Show DevBest [PHP - PDO] VPN/Proxy Restriction

    Actually i am right if you look at this post and look at the best answer it show which vars are a risk https://stackoverflow.com/questions/6474783/which-server-variables-are-safe. Before hating on my comment check your sources. Let me put it like this. The risk with X-Forwarded-For is that a...
  18. 7r1n17y

    Show DevBest [PHP - PDO] VPN/Proxy Restriction

    You should not use this because $_SERVER['HTTP_X_FORWARDED_FOR'] or $_SERVER['HTTP_CLIENT_IP'] can be edited by the connecting user witch opens up a security risk. The best way to the IP address is $_SERVER['REMOTE_ADDR']. Anything that is a HTTP var can be edited by the user.
  19. 7r1n17y

    Show DevBest [PHP] Login & Logout

    I would not use this for production use due to the fact that their is no Csrf validation and their is a Timing attack vulnerability. Plus their is no prepared statements going on so your script is vulnerable to SQL Injection. strip_tags, stripslashes, mysqli_real_escape_string is not enough. Md5...
  20. 7r1n17y

    Whats your favorite programming language, and why?

    Yea people who are inexperienced in PHP can post code and might tell other people it is okay to use that code in their project not taking any steps towards security. But that is why people are realease libs/frameworks so your site is good security wise. For example, Zend Framework is a good...
Top