Activity Stream
48,167 MEMBERS
62624 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 6 of 6
  1.     
    #1
    Member

    Default Simplex Password encrypter Beta

    Hello,

    I'm in the middle of coding the API for people to use as i dont want this source getting out and making it easier to crack.

    DEMO: http://lunosolutions.com/encryption/

    I'm not fully tested not tested for collisions yet but can you also see if you can crack this one please:
    15caf203f8d935c5d661692452f7317616c4d0516mfd45m261 4afdc5c21965amfa7388cd
    That's a password I just made so if you can crack it i do major changes. I would also love feedback and improvements

    Regards,
    Jordan
    xifyhosting Reviewed by xifyhosting on . Simplex Password encrypter Beta Hello, I'm in the middle of coding the API for people to use as i dont want this source getting out and making it easier to crack. DEMO: http://lunosolutions.com/encryption/ I'm not fully tested not tested for collisions yet but can you also see if you can crack this one please: That's a password I just made so if you can crack it i do major changes. I would also love feedback and improvements Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    GFXWebHosting.com WarezJobs.com
    Nice....
    i just made a password. can any one crack it also....

    d991c49d77f5a5f63517d5dcfm2d519faf610fd60f80140d8m f307m440a3fm670ada6fcm

  4.     
    #3
    Member
    Website's:
    imdber.org justpaste.me
    One thing's for sure, it's too long mate. Limit it to 60 characters.

  5.     
    #4
    Member
    Quote Originally Posted by gfxguru View Post
    Nice....
    i just made a password. can any one crack it also....
    Nope thats why i was asking someone to test it

    The demo link now show how the API works. you can use json or xml format

    ---------- Post added at 10:52 PM ---------- Previous post was at 06:14 PM ----------

    Code: 
    <?php
    function sxp($password) {
    $data = array(
    		'password' => $password,
    		'format' => 'Plain',
    
            );
    
    $ch = curl_init("http://lunosolutions.com/encryption/api.php");
    curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6'); 
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch,CURLOPT_POST, TRUE);
    curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
    $password = curl_exec($ch);  
    curl_close($ch);  
    return $password;
    }
    ?>
    changed the password to 79char and the above code is the api system

  6.     
    #5
    Member
    Website's:
    imdber.org justpaste.me
    For everyone else, you should be hashing passwords using bcrypt:

    http://codahale.com/how-to-safely-store-a-password/
    http://www.openwall.com/phpass/

  7.     
    #6
    Member
    Or a simple sha2 with a salt =/

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Simplex PHP filter function
    By xifyhosting in forum Web Development Area
    Replies: 0
    Last Post: 11th Aug 2012, 06:08 PM
  2. Simplex PHP
    By xifyhosting in forum Web Development Area
    Replies: 0
    Last Post: 9th Aug 2012, 05:11 PM
  3. Password rar or not ?
    By SMOKING in forum Webmaster Discussion
    Replies: 7
    Last Post: 16th Nov 2011, 04:10 PM
  4. File encrypter/decrypter
    By oOo in forum General Discussion
    Replies: 8
    Last Post: 23rd Jan 2010, 01:53 PM
  5. Password?
    By Danny86 in forum Technical Help Desk Support
    Replies: 6
    Last Post: 6th Dec 2009, 04:23 PM

Tags for this Thread

BE SOCIAL