Google

Thursday, April 5, 2007

Guide to Cracking.........

Some Programs(check it)
Windows Enforcer v4.1, (http://posum.com).
Start Clean v1.0. (http://users.aol.com/felhasan/index.htm).
BS/1 Small Business v1.1h, (Davis Business Systems, http://www.dbsonline.com).
Spear Internet Marketing Tool Beta Release 1, (http://www.metafuse.com).
Premia Codewright Professional v5.1, (http://www.premia.com).
Cygnus v1.5, (http://www.softcircuits.com).
Vulcan Notes v2.13, (http://www.webcom.com/vulcan).
WinHacker 95 v2.0 (http://www.winhacker.com).
DiskCopy v4.0 (http://members.aol.com/ron2222).
Emulive Wave Audio Encoder v2.2 (http://www.emulive.com).
Space Monitor v1.1a (http://dialspace.dial.pipex.com/parasoft/spacemon).
Any Speed v1.3 (http://www.pysoft.com).
ScrnSaveSwitch/Plus v4.50 (http://www.ssswitch.com).
File-Ex v2.00c (http://www.cottonwoodsw.com).
Jot Note Manager 32-bit v1.3 (http://www.mjmarshall.demon.co.uk).
BONUS - Virtual Gibbs v4.23.13 (http://info@gibbsnc.com).


Intro....
Welcome to the first document about the subject of cracking, this tutorial is aimed at a target audience of people taking their first steps into the world of cracking although a few of the cracks may interest more experienced crackers. Experienced crackers or those with programming knowledge may like to skip this tutorial as most of the cracks covered are fairly basic.

You should familiarise yourself with the many Internet search engines (I recommend Yahoo / AltaVista) in order to track these programs down, I’ve tried to give url’s where I can but they will no doubt expire during my writing of this document, if you are lucky enough to find me on EFNET I may be persuaded to provide you with the files. Remember that later versions of these programs may and often do use the same protection mechanism.

WHAT IS CRACKING?

Well, Cracking is essentially the process of understanding how computer programs operate, its traditional use has been for disabling or beating the numerous protection schemes which are placed upon many applications and games today. I am legally obliged to say that I do not support software piracy in any of its guises and that this document is purely for educational use.

TOOLS

One of the first things you will need to do in order to crack is to equip yourself with a good set of tools, the better you prepare the better you will crack. At the minimum you will need a Windows debugger, a HEX editor and a good Windows Disassembler plus other auxiliary tools for specific cracks. Copies of Borland C++, Visual Basic & Visual C++ are also useful even if you are not yet able to program. I have suggested those tools you obtain below.

NuMega’s Softice - The best windows debugger. I use v3.22 for Windows 95, get v2.8 /2.6 for DOS also.
Hackers View or any other good HEX editor.
WinDASM v8.9, alternatively Sourcer, IDA Professional.
NaTzGUL’s InstallShield Disassembler - now an essential tool.
(continues.....)

Tuesday, April 3, 2007

Music.....Music.......Music.........

www.hrithik.net
www.mp3.com
www.music3w.com
www.indiagaana.com
www.dhadkan.com
www.musicworld4u.com
www.enn2.com
www.rhythmindia.com
www.supernet.com
www.musiccurry.com
www.whitepathmusic.com
www.indiaculture.miningco.com
www.musicweb.co.uk
www.tipsmusicfilms.com
www.topcassette.com
www.ancient-future.com
www.indiaexpress.com
www.hindustan.net
www.aishwarya-rai.com
www.freemusic2u.com
www.coolindiaworld.com
www.angelfire.com
www.bollynet.com
www.joyofindia.com
www.geocities.com
www.justgo.com
www.hamaracd.com
www.ccmusic.com
www.pointlycos.com
www.cqkmusic.com
www.guitarsite.com
www.steelguitarcanada.com
www.mtv.com
www.compass.com
www.rocknrollvault.com
www.music.indiana.edu.com
www.imusic.com
www.civilwarmusic.net
www.webprimitives.com
www.classical.net
www.allmusic.com
www.classicalmusic.co.uk
www.classicalusa.com
www.tunes.com
www.columbiahouse.com
www.mp3grand.com
www.irish-music.net
www.iuma.com
www.worldrecords.com
www.contemplator.com
www.humaracd.com

Some Cool Java Interview Questions

1.How could Java classes direct program messages to the system console, but error messages, say to a file?
The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they both point at the system console. This how the standard output could be re-directed:
Stream st = new Stream(new FileOutputStream("techinterviews_com.txt"));
System.setErr(st);
System.setOut(st);

2. What’s the difference between an interface and an abstract class?
An abstract class may contain code in method bodies, which is not allowed in an interface. With abstract classes, you have to inherit your class from it and Java does not allow multiple inheritance. On the other hand, you can implement multiple interfaces in your class.

3. Why would you use a synchronized block vs. synchronized method?
Synchronized blocks place locks for shorter periods than synchronized methods

4. Explain the usage of the keyword transient?
This keyword indicates that the value of this member variable does not have to be serialized with the object. When the class will be de-serialized, this variable will be initialized with a default value of its data type (i.e. zero for integers).

5. How can you force garbage collection?
You can’t force GC, but could request it by calling System.gc(). JVM does not guarantee that GC will be started immediately.

6. How do you know if an explicit object casting is needed?
If you assign a superclass object to a variable of a subclass’s data type, you need to do explicit casting. For example: Object a;Customer b; b = (Customer) a;
When you assign a subclass to a variable having a supeclass type, the casting is performed automatically.

7. What’s the difference between the methods sleep() and wait()
The code sleep(1000); puts thread aside for exactly one second. The code wait(1000), causes a wait of up to one second. A thread could stop waiting earlier if it receives the notify() or notifyAll() call. The method wait() is defined in the class Object and the method sleep() is defined in the class Thread.

8. Can you write a Java class that could be used both as an applet as well as an application?
Yes. Add a main() method to the applet.

9. What’s the difference between constructors and other methods?
Constructors must have the same name as the class and can not return a value. They are only called once while regular methods could be called many times.

10. Can you call one constructor from another if a class has multiple constructors
Yes. Use this() syntax.