Enable Javascript to access this page. Arena of An Artist: windows
rss
twitter
    Find out what I'm doing, Follow Me :)
Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Tuesday, March 15, 2011

DOWNLOAD Microsoft Windows 7™ SP1 RT

Credit goes to the original uploader 'faXcooL' for this wonderful share!!


Windows 7 Service Pack 1(SP1) 32/64 Bit -PREACTIVATED

32/64-BIT • PREACTIVATED • BOOTABLE • UNTOUCHED • GENUINE • MULTILINGUAL • FULLY UPDATABLE

This release includes all available verisons of Windows 7 (except "N" and "E" editions)





This DVD Includes :

* Windows 7 Starter 32-bit
* Windows 7 Home Basic 32/64-bit
* Windows 7 Home Premium 32/64-bit
* Windows 7 Professional 32/64-bit
* Windows 7 Enterprise 32/64-bit
* Windows 7 Ultimate 32/64-bit


Fits on a standard 4.7GB DVD

Windows 7 Starter
*********************



Windows 7 Starter is the edition of Windows 7 that contains the fewest
features. Windows 7 Starter is only available in a 32-bit version. The Windows Aero theme is not included in this version. The desktop wallpaper and Visual Styles (Windows 7 Basic) are not user-changeable. Its functions are very limited. Microsoft originally intended to restrict the edition to running 3 simultaneous applications, but this limitation was dropped. This edition is available pre-installed on computers, especially netbooks, through system integrators or computer manufacturers using OEM licences.

Windows 7 Home Basic
**********************



Windows 7 Home Basic is available in emerging markets such as Argentina, Brazil, Chile, the People's Republic of China, Colombia, India, Pakistan, Panama, Philippines, Mexico, Russia, Thailand, and Turkey. It is not available in developed technology markets countries including in Western and Central Europe, North America, Hong Kong, Australia and Saudi Arabia. Some Aero options are excluded along with several new features. Home Basic, along with other editions sold in emerging markets, include geographical activation restriction, which requires users to activate Windows within a certain region
or country.

Windows 7 Home Premium
**********************




This edition contains features aimed at the home market segment, such as Windows Media Center, Windows Aero and multi-touch support. 
Windows 7 Professional
**********************




This edition is targeted towards enthusiasts and small-business users. It includes all the features of Windows 7 Home Premium, and adds the ability to participate in a Windows Server domain. Additional features include operating as a Remote Desktop server, location aware printing, Encrypting File System, Presentation Mode, Software Restriction Policies (but not the extra management features of AppLocker) and Windows XP Mode. Like Enterprise, Microsoft will support this edition until 2020.

Windows 7 Enterprise
**********************




This edition targets the enterprise segment of the market and is sold through volume licensing to companies which have a Software Assurance contract with Microsoft. Additional features include support for Multilingual User Interface (MUI) packages, BitLocker Drive Encryption, and UNIX application support. Not available through retail or OEM channels, this edition is distributed through Microsoft Software Assurance (SA). As a result it includes several SA-only benefits, including a license allowing the operating of diskless nodes (diskless PCs), the running of multiple virtual machines, and activation via VLK. Like Professional, Microsoft will support this edition until 2020.

Windows 7 Ultimate
**********************

Windows 7 Ultimate contains all of the same features as Windows 7 Enterprise, but unlike the Enterprise edition, it is available to home users on an individual license basis. Windows 7 Home Premium and Windows 7 Professional users are able to upgrade to Windows 7 Ultimate for a fee using Windows Anytime Upgrade if they wish to do so. Unlike Windows Vista Ultimate, the Windows 7 Ultimate edition does not include the Windows Ultimate Extras feature or any exclusive features as Microsoft had stated. However, even though it is the consumer equivalent to Enterprise, Microsoft will only support Ultimate until 2015, as per Home Premium.


If you want to run Windows 7 on your PC, here's what it takes:
1 gigahertz (GHz) or faster 32-bit (x86) or 64-bit (x64) processor
1 gigabyte (GB) RAM (32-bit) or 2 GB RAM (64-bit
16 GB available hard disk space (32-bit) or 20 GB (64-bit)
DirectX 9 graphics device with WDDM 1.0 or higher driver 
How to install :
**************


- Extract using WinRAR.
- Use ImgBurn** to burn the extracted ISO file called "faXcooL.Windows.7.SP1.ENG.x86-x64.ACTiVATED"
* You can use any other software for this operation (Nero, Alcohol, CloneCD...)
* Burning speed should not be faster than 4x.
- Restart your computer*.
* You can install it from existing OS, but I'll recommend the clean installation.
- Make sure you've seleceted your DVD-ROM/RW drive as a first boot device (BIOS setup)*
* If you don't know how to do that, check this link 

- The text message will appear "Press any key to boot from CD or DVD...."
* By pressing the key you're entering the setup.
- Select your language, time and currency and keyboard input (optionaly)
- Click "Install now".
- Choose your edition* (x86 is 32-bit, x64 is 64-bit) depending of CPU type you have.
* Note that if you have less than 4GB of RAM, x64 will be useless.
- Click "I accept".
- Click "Custom (advanced).
- Choose your partition/hdd drive where Win7 should be installed and click format.
* Setup will continue automaticly and it will finish after 15-30 min.
- Next step will be username (Image 17).
- Type your password (if you want).
- Choose the third option for next step.
- Select your time zone.
- Select your current location.
- And the last step will be silent auto-activation*
* Your PC will restart for the last time.

And that would be all about installation. You're in Windows now.  


Activation
**************


This release has integrated RemoveWAT 2.2.6.0.
This tool completely removes Windows Activation Technologies from your sytem and your Windows will be fully activated and fully updateable, plus, you won't have to worry about malicious updates (i.e. KB971033) which can deactivate your copy of Windows.


Hotfile->
http://safelinking.net/p/9d8bcbbaef

Fileserve->
http://safelinking.net/p/3aaf1c7863 
Before Installing Microsoft Security Essentials run Windows Loader:->
http://safelinking.net/p/90c819126d

Premium Link Generators->
http://deamonleech.com/
http://www.teraleech.com/

ENJOY..!

Tuesday, February 22, 2011

Batch Tutorial for Hacking


Here We Go


We Will Do It Step By Step

To Start Off There Is The @echo off/on
And There Is echo
And pause

So Here Is An Example

@echo off
echo Hello This is a test
pause


Type This In Notepad And Save As Test.bat
Launch It
It Will Look Like This



Hello This is a test
Press any key to continue...


Again Open Notepad And Write:


@echo on
echo Hello This is a test
pause


And Save It On The Desktop As Test2.bat
Launch It , It Will Look Like This


C:\Documents and Settings\User\Desktop>echo Hello This is a test
Hello This is a test
C:\Documents and Settings\User\Desktop>pause
Press any key to continue


So For The Explanation

@echo off/on:
If You Put @echo on It Will Show The Directory As You Just Saw
If You Put @echo off It Will Just Show The Words With No Directories
so its best to use @echo offecho:
If You Want To Type A Simple Phrase Just Type In echo And Something In This Case echo Hello This is a test
which will show Hello This is a test

pause
Pause Will Pause The Batch File,If You Press A Key The Batch Will Continue In This Case It Will Exit Because There Is No More Left
So Try This


@echo off
echo Hello This is a test
pause
echo I am testing pause
pause


This Will Show

Hello This is a test
Press Any Key To Continue...
(when you press a key it will show)
I am testing a pause



So That Convers The Pause Command

Now Some More Commands
There Is Msg *
And There Is cls

Open Notepad And Write:



@echo off
echo Hello This is a test
pause
cls
echo I am testing pause
msg * The End
pause



And Save As Test3.bat

This Will Show


Hello This is a test
Press Any Key To Continue...
(when you press a key it will show)
cls
(the page will clear)
I am testing a pause
(a pop-up will show saying The End)

 
So .. cls Will Just Clear The Screen
And Msg * Will Bring Up A pop-up:D

Other Commands Are REM And goto And start
So Create A Folder Name It Test
Put Any Picture Inside And Name It testpic
Open Notepad And Type


@echo off
echo Testing start and rem
rem title Test
start testpic.jpg (or any other extension)
pause


And Save It Inside The New Folder As Test4.bat

Launch It , It Will Show:


Testing start and rem
Press Any Key To Continue
(and the picture will launch)


So start Will Launch Any File
And rem Is A Ramark.. Which Wont Show In The Bat File When Running


Now The goto And set And if

Type This Inside Notepad


@echo off
echo This is a test
echo If you want to do math type 1 and press enter
echo If you want to see a picture type 2 and press enter
set /p option=
if '%option%'=='1' goto :math
if '%option%'=='2' start testpic.jpg (or any extension)

:math
echo 2+2
pause


And Save It Inside The New Folder

This Will Show


This is a test
If you want to do math type 1 and press enter
if you want to see a picture type 2 and press enter
(here you can type 1 or 2 and press enter)
(if you press 2 and Enter the picture will load)
(if you press 1 and enter this will show up):
2+2
Press any key to continue...


So goto Will Go To A Label Or A Part Of The File
When You Put :Math
A New Label Will Be Named Math And When You Put goto :math
The Vatch Will Go To :mathset
The Set Option Will Set Something . Here Its Going To Set :choice
The Set Is , In Some Options Followed By if
So If I Type 1 In This Example
The "choice" Will Be 1 .. And It Will Go To :math Because We Put
if '%choice%'=='1' goto :math
So If We Put 1 The Choice Will Be 1 Therefore It Will [reed]goto :math



Now I Am Going To Talk About Call,Exit,And SHIFT?


Go Into Notepad And Type This


@echo off
echo yay me i know the basics of batch
call call.bat
pause
exit


And Save In A New Folder

Then Open Notepad And Type This Again


@echo off
echo I Love You
pause


And Save In The Same Folder That You Saved The Last One And Name It Call.bat

Launch The First One
This Will Show


yay me i know the basics of batch
I Love You
Press Any Key To Continue....
(when you press a key the below will appear)
Press Any Key To Continue...
and when you press a key it will exit


Ok So Now You Know What exit Does It Exits The File And Call ,Calls In Another Batch File!!..
So Now For SHIFT Which Is A Little Hard So Try To Understand



SHIFT [/n]


If Command Extensions are enabled the SHIFT command supports the /n switch which tells the command to start shifting at the nth argument, where n can be between zero and eight.
just like this 1 below

SHIFT /2


would shift %3 to %2, %4 to %3, etc. and leave %0 and %1 . how can i say it

Examples

the below has got to be saved as .bat.. so just name it test

@ECHO OFF
ECHO - %1
SHIFT
ECHO - %1


After creating the above example test.bat file, if you were to type the below command at the MS-DOS prompt, it would print "- ONE" and then "- TWO"; this command is commonly used to work through each of the command extensions or remove command extensions.
(SHIFT , i mean the explanation... i got it from a website and edited it)

Ok I hope you understand



Now we will learn how to launch windows applications:
type in notepad:


@echo off
echo I am testing notepad!
start /MIN notepad
pause


This will show


i am testing notepad
(and notepad will start minimized.. if you put /MAX instead of /MIN it will launch maximized)
Press Any Key To Continue


Now lets learn how to put a timeout inside a batch..

goto notepad and type:


@echo off
echo i am trying timeout
set wait=0
:pause1
set /a wait=%wait%+1
if %wait% leq 1000 goto pause1
echo IT WORKED!\
pause


dont understand the command.. just copy paste it.. or memorize it .. if i tell you the explanation it will take alot of time!!..

so this will show :


i am trying timeout
(couple of seconds and.. )
Press Any Key To Continue...


Now ill teach you how to change the TIME

goto notepad and type:


@echo off
echo i wonder what time it is!!
TIME 5:50
echo Oh so its 5:50
pause


this will show:


i wonder what time its is!!
Oh so its 5:50
      


The TIME will just change The TIME:

Now the Color

go into notepad and type this


@echo off
echo trying the colors
pause
color 04
echo testing
pause
color f
echo trying
pause
color 4f
echo trying
pause


04=background black and font red
f the font will be white
4f = background red and f = white

Here are the list(that can be found by cmd>color help)
0=black
1=blue
2=green
3=aqua
4=red
5=purple
6=yellow
7=white
8=gray
9=light blue
a=light green
b=light aqua
c=light red
d=light purple
e=light yellow
f=bright white


So this will show it


now the title

type this in notepad


@echo off
tile Test
echo trying the title
pause


this will show the title Test When you launch it!!

lets try Shutdown/Restart

type this in Notepad

@echo off
START C:\Windows\RUNDLL.EXE user.exe,exitwindowsexec
exit


The above will restart


@echo off
Shut down the computer

C:\Windows\RUNDLL32.EXE user,exitwindows
exit


The Above will Shutdown

Well Thats It For Now Enjoy These
  

Friday, May 28, 2010

Crack WEP on Windows without linux, supports

This is what you need:
1. Commview 6.2(it supports intel 5100 & 5300)
- this is a direct download, i copied the url from IDM.

2. Aircrack for windows:
http://www.aircrack-ng.org/
PICTURE:
http://www.dll-files.com/dllindex/dll-fi...ml?cygwin1
INSTALLATION:
1.Install commview 6.2, install like any other regular program.
2. extract aircrack zip file to root, which is "C" for most computers
3.now extract peek zip file to the bin folder which is in aircrack like this C:\aircrack folder\bin.
4. and extract dll file to bin folder also.

You will be overwriting some files, just click yes to overwrite them.
I recommend making a shortcut for aircrack GUI.exe, because your going to use it alot.
Now go take a 5 minute break.

OK back from break? Now get ready

Real WEP capturing steps:
1. open commview 6.2 and click the M and the C to shade them and then click play.(The D should be unshaded )

2.Now click start scan, choose band "i use the b/g/n" and then click capture don't worry.
3.Now wait about 2 minutes and right click and copy mac address of the wep network with the most packets or best signal.
4. Enable MAC address rules, action: capture, add record: both, paste mac address, then click add mac address(look like pic except the mac address, will be different)
5. Final steps in configuration
Click logging tab, make sure auto saving is checked, and increase size to 150 or higher, this can be adjusted later and leave logs directory as is.(I did 1,000,000 mb = 1GB, because of capturing 13 networks at a time).
NOW WAIT until you get about 1million through 2 million packets, or just record overnight for atleast 2 night. Then continue.

AS you can see I have collected keys for about 1 week on and off, becuase of torrent download

PART 2

1.click logging tab and save all packets in buffer, then click concatenate Logs. and select all logs and save in folder.(I saved in a new folder called binded and you can see theere from different days)
2. Open log viewer, by pressing ctlr+L or going to file in top right corner.

3.Load commview logs, should look like this pics when loaded.(I have 189518 keys, out of almost 2 millon packets ) 

5. Your done with commview, but i recommend to leave open to get more packets just in case.

PART 3
1. Open aircrack GUI.exe
2. now click choose, and go find the .cap file you saved.

3.click launch and click the one you want, i wanted the first one so i choose 1 and press enter.(this step is only for people with multiple networks)

4. now wait and you should get this.
PICTURE:


5. now right click and select all and press enter and save to notepad. or connect and enter key without colon in wep password box.

That's it .
The other 25% that I got it from was from here:
5% - http://wirelessdefence.org/Contents/Airc...nstall.htm
10% - other multiple sources.

I got this working, because of stress.

EDUCATION PURPOSES ONLY. I"LL ADD MAC CHANGER WHEN I FIND A GOOD ONE.

ANY QUESTION, just ask.

SUPPORTED CARDS:

GO HERE

Lenovo Y550P(custom line)/intel core i7 /4GB RAM/400GB-HD/Nividia GEFORCE GT240M 1GB/ intel 5300/back-up HD
(nak15)

[X] Infect 30 ppl with rat
[X] Learn to hex edit
[X] Make a two tutorials
[X] Crack wep successfully
[X] Create keylogger in VB6 with logs via sms
[ ] Create USB spreader
[ ] Infect pc on wlan

Tuesday, April 6, 2010

Hide EXE File Into JPG (Easy Way)


1) Firstly, create a new folder and make sure that the options 'show hidden files and folders' is checked and ‘hide extensions for known file types’ is unchecked.
Basically what you need is to see hidden files and see the extension of all your files on your pc.

2) Paste a copy of your server on the new created folder. let's say it's called 'server.exe' (that's why you need the extension of files showing, cause you need to see it to change it)

3) Now you’re going to rename this 'server.exe' to whatever you want, let’s say for example 'picture.jpeg'

4) Windows is going to warn you if you really want to change this extension from exe to jpeg, click YES.

5) Now create a shortcut of this 'picture.jpeg' in the same folder.

6)Now that you have a shortcut, rename it to whatever you want, for example, 'me.jpeg'.


7) Go to properties (on file me.jpeg) and now you need to do some changes there.


8) First of all delete all the text on field 'Start In' and leave it empty.


9) Then on field 'Target' you need to write the path to open the other file (the server renamed 'picture.jpeg') so you have to write this :-
'C:\WINDOWS\system32\cmd.exe /c picture.jpeg'


10) The last field, 'c picture.jpeg' is always the name of the first file. If you called the first file 'soccer.avi' you gotta write 'C:\WINDOWS\system32\cmd.exe /c soccer.avi'.


11) So what you’re doing is when someone clicks on 'me.jpeg', a cmd will execute the other file 'picture.jpeg' and the server will run.


12) On that file 'me.jpeg' (shortcut), go to properties and you have an option to change the icon. Click that and a new window will pop up and you have to write this :-
%SystemRoot%\system32\SHELL32.dll . Then press OK.




13) You can set the properties 'Hidden' for the first file 'picture.jpeg' if you think it’s better to get a connection from someone.


14) But don’t forget one thing, these 2 files must always be together in the same folder and to get connected to someone they must click on the shortcut created not on the first file. So rename the files to whatever you want considering the person and the knowledge they have on this matter.


15)for example I always want the shortcut showing first so can be the first file to be opened. So I rename the server to 'picture2.jpeg' and the shortcut to 'picture1.jpeg'.
This way the shortcut will show up first. If you set hidden properties to the server 'picture.jpeg' then you don’t have to bother with this detail but I’m warning you, the hidden file will always show up inside of a Zip or a Rar file.


16) So the best way to send these files together to someone is compress them into Zip or Rar.


17) inside the Rar or Zip file you can see the files properties and even after all this work you can see that the shortcut is recognized like a shortcut but hopefully the person you sent this too doesn’t know that and is going to open it.
 


Windows XP Mode & KB971033

Windows XP Mode & KB971033
Today, I have 2 News for your Guyz One is Good & Second one is bad but Don't worry i have Solution to that problem too..

Its Simply the way to run XP applications in Windows 7


NEWS 1: (Good)
-
Microsoft have removed hardware virtualization barrier to running XP Mode
It means If your Processor Do not Support Virtulization Technology or
If its Not enabled in the Bios Now, You can also Use XP MODE within Windows 7
-
NEWS 2: (BAD)
-
Microsoft has applied KB971033 (WAT UPDATE) to their website from where you can get XP MODE, Windows Virtual PC & XP MODE Update
It means if you have to Download these things from Microsoft website you must have to Install KB971033 (WAT UPDATE) Which will Screw your Windows 7 Activation Status & after Installing Microsoft Website will Tell u that You are not using Genuine Windows so you cannot Download that material
-
Solution:
-
Download Windows Virtual PC X86 = 32 BIT (Direct Link):


http://download.microsoft.com/download/0/5/5/0554AE99-785F-45CB-B1F2-0E3ED1E6117D/Windows6.1-KB958559-x86.msu

Download XP MODE Update X86 = 32 BIT To Remove VT Requirement (Direct Link):
-
http://download.microsoft.com/download/E/7/4/E742FBD2-AE2E-4920-AED1-ABE3F8173585/Windows6.1-KB977206-x86.msu
--
--
Download Windows XP Mode X86 = 32 BIT (Direct Link):
-
http://download.microsoft.com/download/7/2/C/72C7BAB7-2F32-4530-878A-292C20E1845A/WindowsXPMode_en-us.abc
(Replace abc with exe in the end of URL)
--
IF Direct Links Goes Down i will upload these three Things to any other Hosting and will Provide u the Links so in this way you can Stay away from
(WAT UPDATE KB971033) 
Note: These Files are for 32 BIT WINDOWS 7 ULTIMATE
-
A Quick Guide:
-
1. Download & Install "Windows Virtual PC X86 = 32 BIT"
2. Download & Install XP MODE Update X86 = 32 BIT To Remove VT Requirement
3. Download & Install Windows XP Mode X86 = 32 BIT
4. Follow Instructions after 3rd Step



Monday, March 15, 2010

Try Out Google Chrome OS

hose who are desperate to try out the Google chrome OS,Here's the VMware of it.
First, a few caveats: we didn’t create the Chrome OS build ourselves — it was downloaded from BitTorrent. In theory it could possibly have been tweaked by some malicious hacker to steal your Google account information (this is unlikely, but who knows). There’s an easy fix if you’re worried though: just go make a throwaway Gmail account, and use that to play around with the OS. Also note that because this is running in a virtual machine, you’re probably not going to be seeing great performance (like that 7 second boot time). But it’s more than good enough to get a feel for the OS for yourself.
Direct download:

http://gdgt.com/google/chrome-os/download/





Torrent:
http://torrents.thepiratebay.org/5170843/chromeos-image-999.999.32309.211410-a1.vmdk.bz2.5170843.TPB.torrent