Friday, December 12, 2008

Configure the DNS Server


You need to trick Wipeout Pure into loading your Web page instead of the one it expects. You do this by spoofing the location of the server that the game looks for. Once it finds your page, the sky’s the limit.
It’s probably not a good idea to make your DNS server publicly available. Not only may the traffic get unmanageable, but Sony’s legal team may call you telling you to cease and desist. If you leave this on your local network, or at least undisclosed to all the hack boards out there, you should be safe, but there are no guarantees if you open your hack up to the public.

If You’re Using Windows
Follow these steps:
1. Make sure MooPS is running.
2. Configure MooPS’ Server Settings menu

If you’re using a Web server other than MooPS, set the MooPS Port under Web Server to 33333 so it doesn’t conflict with your Web server.

If You’re Using BIND on Unix or Mac OS X
In the case of BIND, you will be creating a zone file to spoof Sony’s Web site,
ingame.scea.com. I will assume that if you have a BIND instance running, you already
know how to configure BIND, so we won’t go over it here. There are many fine books on setting up BIND, so hop onto Amazon.com or go to your local bookstore and you’ll find some excellent guides.
The zone file for BIND should have the following contents:
; scea.com zone file
$TTL 86400
@ IN SOA scea.com hacked.scea.com (
2005070942 ; serial number YYYYMMDDNN
28800 ; refresh interval
7200 ; retry interval
86400 ; expire timeout
86400 ; min. time to live (ttl)
)
; spoofed entries to point traffic to our local server instead of out on the Internet NS 192.168.2.1 ; says where the name server is (us, haha)
A 192.168.2.1 ; points the root to this IP address Ingame A 192.168.2.1 ; resolves ingame.scea.com to our local server Webcluster A 92.168.2.1 ; resolved webcluster.scea.com to our local server
Next you need to update your named.conf file and add the scea.com zone, as shown in the following code. Enter the text at the end of the file’s contents and then save the file. Like the zone file, be sure to use the tab key, not multiple spaces, when adding the entry.

zone “scea.com” {
type master;
file “scea.zone”;
};

No comments: