Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- c0ded by : shutdown57 a.k.a alinko
- http://alinkoproject.com
- **/
- function a_cover(){
- $m="\033[1;31m";
- $h="\033[1;32m";
- $n="\033[1;37m";
- echo "+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+\\\n";
- echo "| decode.org auto submit | |\n";
- echo "| c0ded by :$m shutdown57 $n | |\n";
- echo "| $h http://alinkoproject.com$n | |\n";
- echo "+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+ |\n";
- echo "\\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\\n";
- }
- if(empty($argv[1])){
- a_cover();
- $m="\033[1;31m";
- $h="\033[1;32m";
- $n="\033[1;37m";
- echo "$h USAGE :$n php ".$argv[0]." file.txt\n";
- echo "\n===================================\n";
- }else{
- $m="\033[1;31m";
- $h="\033[1;32m";
- $n="\033[1;37m";
- a_cover();
- echo "$m [+] $n Waiting for you...\n";
- function a_ngntd($url){
- $c=curl_init();
- curl_setopt($c,CURLOPT_RETURNTRANSFER,1);
- curl_setopt($c,CURLOPT_URL,$url);
- curl_setopt($c,CURLOPT_HEADER,0);
- $e=curl_exec($c);
- return $e;
- }
- function a_pisah($pemisah,$string){
- return explode(chr(1),str_replace($pemisah,chr(1),$string));
- }
- $res =a_ngntd("http://decode.org/?q=".urlencode(file_get_contents($argv[1])));
- $pecah = a_pisah(array('<blockquote>','</blockquote>'),$res);
- $filename="decode-".date('d-m-Y').".html";
- $isi="<html><head><title>: decode.org auto decode & encode :</title></head><body><center><h1>decode.org | c0ded by : shutdown57</h1><hr>";
- $isi.="<hr><h3>Asli : </h3>";
- $isi.=file_get_contents($argv[1]);
- $isi.="<hr><h3>Result :</h1>";
- $isi.=$pecah[1];
- $isi.="</body></html>";
- $fp=fopen($filename,"w");
- if(fwrite($fp,$isi)){
- echo "$h [+] $n DONE...\n";
- echo "$h [!] $n saved at $m $filename $n\n\n";
- }else{
- echo "$m [-] $n FAILED...\n";
- echo "$m [!] $n Check Your Connection.\n\n";
- }
- fclose($fp);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement