Jump to content

Lumi

Member
  • Posts

    486
  • Joined

  • Last visited

Awards

This user doesn't have any awards

2 Followers

Profile Information

  • Gender
    Male
  • Location
    United States
  • Interests
    Software Engineering
  • Biography
    It's funny because I didn't go to college.
  • Occupation
    Controls Systems Engineer
  • Member title
    Junior Member

System

  • CPU
    2017 macbook pro lmao

Recent Profile Visitors

1,626 profile views
  1. Ay you got it pls quote where i said that one was bulletproof though
  2. If it's using procedural syntax it's not even worth watching in my opinion. Take the knowledge from that video and replace all the queries with OOP mysqli prepared statements or PDO Prepared statements, makes everything a lot easier and less cluttered. But to answer your question, your SQL probably has a syntax error. Does your page display an error & what is it? If not have you tried var dumping? Did you fat finger something and your eyes just keep skipping over it?
  3. Direct examples, come on. I can write one in less than 10.
  4. Direct examples, come on. I can write one in less than 10.
  5. Yeah but like, if ($ts1 < time()) //recursion
  6. You clearly keep skipping over what I stated about it. From an objective standpoint with no external considertion's it IS safe. There is no vulnerability within it (unless you're counting password hashing *2) as all inputs are sanitized. However I did state and I'll quote it once more, Also, you can write a bullet proof login / register system from scratch with no wrappers etc in 10 minutes. It's literally 2 PDO prepared statements & bcrypt. *2 not even an issue unless you leave other vulns cause hows the DB going to get leaked. Also let's be real the kid is doing it for school, do you think a teacher is going to care?
  7. I have no idea about Carbon in laravel but from a pure PHP perspective I would. $date = new DateTime('2000-01-01 9:00:00'); //your next time/date - make sure it's in the future //$date is equal to Jan 1st 2000 9am $ts1 = $date->getTimestamp(); $res = $ts1 - time(); //this will give you seconds until the time I'm sure you can figure out the rest.
  8. Yeah we're gonna magically know what to tell you considering you didn't even tell us which language you selected in visual studio. Visual studio supports, cpp, c#, and vb.net for GUI....
  9. I don't think you write a lot of PHP. A good secure login / register script should take you no more than 10 minutes to write/
  10. If your one plus one lasted that long stretch the extra 100 and get a one plus 5.
  11. throw water on your computer immediately it's about to catch on fire
  12. 2 weeks to make a login / register script from scratch? That's literally 10 minutes. I posted a functional one a LONG time ago that uses procedural code. It's safe for local dev but not really up to standard.
  13. lol making an executable that does this is pointless if it literally just opens up driver download pages. make an html file <a href="link.to.driver.com">Driver name or w/e</a> problem solved
  14. Lumi

    Got a ?

    <style> .myInput { background-color: rgb(46,46,46); //background-color color: white; //text color border-radius: 4px; border: 1px solid white; padding:3px; } </style> <input type="text" class="myInput" placeholder="ID"/> glwys
  15. urlencode for urls $ts3 = null; at the top
×