Jump to content

mmoxley

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Everything posted by mmoxley

  1. Side note for any viewers here. I think that a tut on secure mail would be great, as there are a ton of questions on how to get it done that best way. I'd love to start, but that's security is not my thing.
  2. I to am no SPAM expert, but why use $_request when $_post is more secure?
  3. Excellent, helps knowing what things are called. Thanks again!
  4. So I see this '/'.$attrib.'=["\']?([^"\' ]*)["\' ]/is'; I've seen this before, but I am beyond confused with the linguistic side of this. Where is a good source to find out what this is and how I can restructure it? Thanks
  5. Look's like it is still seeing exta " ' ". try debugging by doing one item at a time to see what value is caussing the burp. $sql = "INSERT INTO i_usr (usrname) VALUES ('$username')"; then $sql = "INSERT INTO i_usr (usrpass) VALUES ('$password)"; if no problems there, you'r varibale as fine. If you do have a problem, you have to look at what your variables are. You might also want to try "$username" double quotes.
  6. From my limited MySQL work I see a posible problem; you do not have quotations on your usernam and password. $sql = "INSERT INTO i_usr (usrname, usrpass, usremail, usrhandle) VALUES ('$username', '$password', '$email', '$handle')";
  7. OK, Simple idea that I'm looking to do, but I keep messing up something. I want to write a script that looks at a web page and reads defined values. For example: <html><head>stuff</head><body> .... <div class="this_class>Important info</div> .... <div class="jibber">Something else</div>.... </body></html> I would like a script that searches the page and returns the value of <div class="this_class>and reports it as Important info. Also looking up other predefined values, such as the value of <div class="jibber"> and reporting that value as Something else. What's the best way of going about this? Thanks in advance.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.