Results 1 to 10 of 13
-
3rd Dec 2010, 07:20 PM #1
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: 5Trusted: Dom, l0calh0st, 0ccul7, robert420
Find all threads started by NewEraCracker
-
3rd Dec 2010, 07:43 PM #2Just Another Coder
Nice share buddy, was in serious need of this! Now i too can decode and encode things!!
Thanks again
-
3rd Dec 2010, 10:49 PM #3MemberWebsite's:
csoffensive.com fagbag.mekool {test][test}
we will tlk
-
4th Dec 2010, 04:59 AM #4Member
Nice....
-
6th May 2011, 03:36 AM #5Member
thanks bro
-
6th May 2011, 08:50 PM #6MemberWebsite's:
RazorDOX.compollyn man
awesome! and nice to see you here too
-
7th May 2011, 08:34 AM #7Member
lol why will someone want to gzip his code?
-
7th May 2011, 08:37 AM #8MemberWebsite's:
Elite.SO Defendos.com Motionite.com@Salman, GZIP is always used with encoding/encrypting.
-
7th May 2011, 08:50 AM #9Member
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
-
7th May 2011, 09:33 AM #10(╯?□?)╯︵ ┻━┻Website's:
Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.comIt'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!
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
NewEraCracker Server For Windows (Apache/Nginx/PHP/MariaDB)
By NewEraCracker in forum Webmaster ResourcesReplies: 43Last Post: 25th Dec 2014, 06:56 PM -
Happy 20th Birthday to NewEraCracker!
By Long in forum General DiscussionReplies: 26Last Post: 27th Jul 2011, 11:05 AM -
NewEraCracker
By Gh0st in forum General DiscussionReplies: 10Last Post: 16th Dec 2010, 06:41 PM
themaCreator - create posts from...
Version 3.22 released. Open older version (or...