Jump to content

n1tr0b

Members
  • Posts

    36
  • Joined

  • Last visited

    Never

About n1tr0b

  • Birthday 10/09/1994

Profile Information

  • Gender
    Male

n1tr0b's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Ok, My Apologies for what ive said.. @chrisofutah: A very suggestive comment.. and a good start for me.. releasing it on July 15, 2009 for the beta testing and vulnerability test
  2. @Daniel.. At The Forum Quote: Come on.. I wont let guest just view the work me made.. @thorpe.. Can you just give up already... your meddling a kid... not an adult.. you guys give it a break will ya.. Im done with conversation
  3. Sir, Im not making a fool of myself.. If i were i script skiddie.. I'd still use other peoples work... and post doesn't count here.. Im just taking a major study on PHP for something... If you want proof.. register at my forums and you'll realize something... mostly Viral Dragon is the one i was inspired almost anything... He just started to be a script skiddie.. well hell yea everyone started as a skiddie.. and take a look at his work... and you'll realize something more... Well who gives a damn or a fuck about me... just give a little repect
  4. A part of my coding register.php $name = $first . ' ' . $surname; $actkey = mt_rand(1, 500) . 'f78dj899dd'; $act = sha1($actkey); $query = mysql_query("INSERT INTO Users (Username, Password, Name, Email, Date, IP, Actkey) VALUES ('$username','$password','$name','$email','$date','$ip','$act')") or die(mysql_error()); $send = mail($email, "Registration Confirmation", "Thank you for registering with AvDose\n\nYour username and password is below, along with details on how to activate your account.\n\nUser: " . $username . "\nPass: " . $pass . "\n\nClick the link below to activate your account:\nhttp://avateinfo.kh3.us/activate.php?id=" . $act . "\n\nPlease do not reply, this is an automated mailer.\n\nThanks", "FROM: noreply@avateinfo.kh3.us"); if (($query) && ($send)) { activate.php <?php include 'config.php'; $id = $_GET['id']; $query = mysql_query("SELECT * FROM Users WHERE Actkey = '$id' LIMIT 1") or die(mysql_error()); $row = mysql_fetch_array($query); if(mysql_num_rows($query) > 0){ $user = $row['id']; $do = mysql_query("UPDATE Users SET Activated = 1 WHERE id = '$user' LIMIT 1") or die(mysql_error()); $send = mail($row['Email'] , "Activation Confirmation" , "Thank you for activating your account, you are now fully registered and able to use our services.\n\nTo login, click the link below:\nhttp://avateinfo.kh3.us/members.avt" , "FROM: noreply@avteinfo.kh3.us"); if(($do)&&($send)) { echo '<link href="style.css" rel="stylesheet" type="text/css"> <div id="success"> <p>Activation successful! A confirmation email has been dispatched. You can now login!</p> <p><a href="login.php">Click here</a> to goto the login page.</p> </div>'; } else { echo '<link href="style.css" rel="stylesheet" type="text/css"> <div id="error"> <p>We are sorry, there appears to be an error processing your activation. Please try again later.</p> </div>'; } } else { echo '<link href="style.css" rel="stylesheet" type="text/css"> <div id="error"> <p>Sorry, your activation code was incorrect. Please try again.</p> </div>'; } mysql_close($l); ?>
  5. 1. Wrong Cat.. 2. Nice site... user friendly and some good features
  6. What is the primary disk boot in the bios mate... or are seeing different things in the bios lately??
  7. Ummm.. He change his Primary Group to normal??
  8. 1. Any More Suggestions for the plugins sir?? 2. Ok, I didn't get that on the net... my understanding much >< ... Um, I started hacking when i was 13... Now Im 14... I'll trying to make my own R@T.. That would be a great success towards my career.. It very clear your a hacker mate... seeing that your avatar is so very familiar...
  9. 1. Well Thx.. 2. Hacking means.. breaking into a system without the permission of the owner.. gets any information in it... or destroys it..(black hat way). breaking into a system with the permission of the owner... and tells every little vulnerability in the site(white hat way). breaking into a system w/o the permission of the owner... either destroys it.. or tell it to the owner...(Grey Hat way)
  10. 1. Suggestions for my CMS... 2. I dont want.. to... I hack by my will... Its not a GLOBAL hacking word... but its only mine.. can you just give a little respect... I know what hacking means.. Im showing a little text of mine...
  11. Thanks, but that didnt seem too work =/ there is a reason why it didn't work $user = $_POST['usernmae']; //define this first if($user == null) { echo 'NO USER DEFINED!!'; }
  12. Whats your suggestions when making a CMS... just suggestions... Im full of emptyness
  13. try this if($user == null) { echo 'NO USER DEFINED!!'; }
  14. Let say the admin posted a new version of the CMS... the url data is in the MySQL and the version is in a flat file... like version.php... the problem is.. how can my CMS automatically checks the version at the admin panel... and when they click upgrade... the php script will download the updated file Here are the schemes for version.php $version = "0.0.2"; $fupgrade = "http://URL/upgrade/*"; *The admin will just change the url at the main site for the next upgrade file.. after the file is downloaded the PHP will just extract it... to the current directory... and deletes the file after its extracted
×
×
  • 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.