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

Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1.     
    #1
    Moderator
    NewEraCracker's Avatar

    Default Simple php encoder by NewEraCracker

    I was bored and decided to make this small php script to encode and decode

    PHP Code: 
    SiMPLE PHP ENCODER BY NEWERACRACKER [v0.0.5]<br/>
    <br/>
    Encoding: base64_encode(gzdeflate($text,9));<br/>
    Decoding: gzinflate(base64_decode($text));<br/>
    <br/>
    <form action="" method="post">
        <textarea name="text" cols=100 rows=20></textarea>
        <br/>Encode <input type="radio" name="type" value="encode" checked> | <input type="radio" name="type" value="decode"> Decode
        <br/><input type="submit" value="Go !" name="submitcmd"/>
    </form><br/>        

    <?php
    if (isset($_POST['text']) && isset($_POST['type']))
    {
        
    $text get_magic_quotes_gpc() ? stripslashes($_POST['text']) : $_POST['text'];

        if (
    $_POST['type']=='encode')
        {
            
    $encoded base64_encode(gzdeflate($text,9));
            echo 
    'DECODED: <br/><textarea cols=100 rows=5>'.htmlspecialchars($text).'</textarea><br/>';
            echo 
    'ENCODED: <br/><textarea cols=100 rows=5>'.htmlspecialchars($encoded).'</textarea><br/>';
        }
        elseif (
    $_POST['type']=='decode')
        {
            
    $decoded gzinflate(base64_decode($text));
            echo 
    'ENCODED: <br/><textarea cols=100 rows=5>'.htmlspecialchars($text).'</textarea><br/>';
            echo 
    'DECODED: <br/><textarea cols=100 rows=5>'.htmlspecialchars($decoded).'</textarea><br/>';
        }
    }
    ?>
    NewEraCracker Reviewed by NewEraCracker on . Simple php encoder by NewEraCracker I was bored and decided to make this small php script to encode and decode :) SiMPLE PHP ENCODER BY NEWERACRACKER <br/> <br/> Encoding: base64_encode(gzdeflate($text,9));<br/> Decoding: gzinflate(base64_decode($text));<br/> <br/> <form action="" method="post"> <textarea name="text" cols=100 rows=20></textarea> <br/>Encode <input type="radio" name="type" value="encode" checked> | <input type="radio" name="type" value="decode"> Decode Rating: 5
    Trusted: Dom, l0calh0st, 0ccul7, robert420
    Find all threads started by NewEraCracker

  2.   Sponsored Links

  3.     
    #2
    Just Another Coder
    Nice share buddy, was in serious need of this! Now i too can decode and encode things!!

    Thanks again

  4.     
    #3
    Member
    Website's:
    csoffensive.com fagbag.me
    kool {test][test}

    we will tlk

  5.     
    #4
    Member
    Nice....

  6.     
    #5
    Member
    thanks bro

  7.     
    #6
    Member
    Website's:
    RazorDOX.com

    Default pollyn man

    awesome! and nice to see you here too

  8.     
    #7
    Member
    lol why will someone want to gzip his code?

  9.     
    #8
    Member
    Website's:
    Elite.SO Defendos.com Motionite.com
    @Salman, GZIP is always used with encoding/encrypting.

    Defendos BETA3 Released! Thread - Official Website

  10.     
    #9
    Member
    lol what i am asking is, Why?

    IMO its stupid to do this, even a noob can *decode* it. Just useless bloat

    You guys are mistaking compression with encryption

  11.     
    #10
    (╯?□?)╯︵ ┻━┻
    Website's:
    Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.com
    It's actually just encoded compressed text.

    Lots of scripts do this, mostly wordpress footers and such. Newbies don't understand it when they see a huge base64 string so they leave it alone. It works better than having just a html footer anyone can remove.
    Projects:
    WCDDL - The Professional DDL Script
    Top Secret Project: In Development - ZOMG
    ImgTrack - Never Have Dead Images Again!

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. NewEraCracker Server For Windows (Apache/Nginx/PHP/MariaDB)
    By NewEraCracker in forum Webmaster Resources
    Replies: 43
    Last Post: 25th Dec 2014, 06:56 PM
  2. Happy 20th Birthday to NewEraCracker!
    By Long in forum General Discussion
    Replies: 26
    Last Post: 27th Jul 2011, 11:05 AM
  3. NewEraCracker
    By Gh0st in forum General Discussion
    Replies: 10
    Last Post: 16th Dec 2010, 06:41 PM

Tags for this Thread

BE SOCIAL