Welcome to HaCkEr-BrAdRi

HaCkEr-BrAdRi you Quality Software's Free of Cost with full version Keep Visiting and Keep enjoying . . . Don't Forget To Comment on Posts.

HaCkEr-BrAdRi Features

HaCkEr-BrAdRi provide you cracked,registered, serial key, and much more for free

HaCkEr-BrAdRi Update Daily

Our Team Update Blog Daily Or Twice A Day With latest and Cool Stuff For You For Free Download . . .

HaCkEr-BrAdRi Give You Big Variety Of Software's

HaCkEr-BrAdRi Provide You Latest and registered software's. . .

HaCkEr-BrAdRi

A Solution Of Your Needs

Delete Files From The Recent File List In Windows

Delete Files From The Recent File List In Windows

This tip requires a change to the Windows Registry. Please see the MSFN Guide "Backup Your Registry" if you are new to the Windows Registry.

Windows Media Player (WMP) is a built-in application that allows you to play multimedia files. Like many other applications, WMP remembers the most recently played files and displays them in the Recent File List under the File menu. This feature is useful if you regularly play certain files, but you may want to clear the list if you share the computer and a user account or create archives and CDs.

There are two ways you can clear the list:

I. The ClearMRU.exe Utility is available for free in the Windows Media Player Bonus Pack from Microsoft, but Microsoft does not support this tool.

II. You can also manually delete the list through the Windows Registry:

1. Start the Windows Registry Editor, regedit.exe, by typing regedit in the Windows Run Command Line.

2. Go to HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\RecentFileList.

3. Delete the RecentFileList subkey.

4. If you've also streamed content from the Internet, you can delete the RecentURLList subkey.

5. Exit the Registry Editor.

6. Restart the computer.

To keep certain files in the list, don't delete the entire key. Deleting individual entries within the key will get rid of the files that you no longer want in the Recent File List.

Delete An "undeletable" File in Windows

Delete An "undeletable" File in Windows

Open a Command Prompt window and leave it open.
Close all open programs.
Click Start, Run and enter TASKMGR.EXE
Go to the Processes tab and End Process on Explorer.exe.
Leave Task Manager open.
Go back to the Command Prompt window and change to the directory the AVI (or other undeletable file) is located in.
At the command prompt type DEL where is the file you wish to delete.
Go back to Task Manager, click File, New Task and enter EXPLORER.EXE to restart the GUI shell.
Close Task Manager.


Or you can try this

Open Notepad.exe

Click File>Save As..>

locate the folder where ur undeletable file is

Choose 'All files' from the file type box

click once on the file u wanna delete so its name appears in the 'filename' box

put a " at the start and end of the filename
(the filename should have the extension of the undeletable file so it will overwrite it)

click save,

It should ask u to overwrite the existing file, choose yes and u can delete it as normal


Here's a manual way of doing it.

1. Start
2. Run
3. Type: command
4. To move into a directory type: cd c:\*** (The stars stand for your folder)
5. If you cannot access the folder because it has spaces for example Program Files or Kazaa Lite folder you have to do the following. instead of typing in the full folder name only take the first 6 letters then put a ~ and then 1 without spaces. Example: cd c:\progra~1\kazaal~1
6. Once your in the folder the non-deletable file it in type in dir - a list will come up with everything inside.
7. Now to delete the file type in del ***.bmp, txt, jpg, avi, etc... And if the file name has spaces you would use the special 1st 6 letters followed by a ~ and a 1 rule. Example: if your file name was bad file.bmp you would type once in the specific folder thorugh command, del badfil~1.bmp and your file should be gone. Make sure to type in the correct extension.

how to crack windows, programs manually

How to crack windows, programs  manually


how to crack windows, programs  manually


Debug is a program that comes with modern versions of DOS (I do not know when I started shipping out with DOS). Anyway, all Windows users should have it already.

It's a great tool for debuging programs, unassembling and cracking, and reading "hidden" memory areas like the boot sector, and much more.

The following was copied from an assembly tutorial who's author we cannot credit, because we have no idea who he is.

Get into DOS and type "debug", you will get a prompt like this:
-

now type "?", you should get the following response:
assemble A [address]
compare C range address
dump D [range]
enter E address [list]
fill F range list
go G [=address] [addresses]
hex H value1 value2
input I port
load L [address] [drive] [firstsector] [number]
move M range address
name N [pathname] [arglist]
output O port byte
proceed P [=address] [number]
quit Q
register R [register]
search S range list
trace T [=address] [value]
unassemble U [range]
write W [address] [drive] [firstsector] [number]
allocate expanded memory XA [#pages]
deallocate expanded memory XD [handle]
map expanded memory pages XM [Lpage] [Ppage] [handle]
display expanded memory status XS

Lets go through each of these commands:
Assemble:

-a
107A:0100

At this point you can start assembling some programs, just like using a assembler. However the debug assembler is very limited as you will probably notice. Lets try to enter a simple program:

-a
107A:0100 MOV AH,02
107A:0102 MOV DL,41
107A:0104 INT 21
107A:0106 INT 20
-g
A

Program terminated normally

That's the same program we did at the end of the previous chapter. Notice how you run the program you just entered with "g", and also notice how the set-up part is not there? That's because debug is just too limited to support that.
Another thing you can do with assemble is specify the address at which you want to start, by default this is 0100 since that's where all .COM files start.
Compare:

Compare takes 2 block of memory and displays them side by side, byte for byte. Lets do an example. Quite out of debug if you haven't already using "q". Now type "debug c:\command.com"

-c 0100 l 8 0200
10A3:0100 7A 06 10A3:0200

This command compared offset 0100 with 0200 for a length of 8 bytes. Debug responded with the location that was DIFFERENT. If 2 locations were the same, debug would just omit them, if all are the same debug would simply return to the prompt without any response.
Dump:

Dump will dump a specified memory segment. To test it, code that assembly program again:

C:\>debug
-a
107A:0100 MOV AH,02
107A:0102 MOV DL,41
107A:0104 INT 21
107A:0106 INT 20
-d 0100 l 8
107A:0100 B4 02 B2 41 CD 21 CD 20
...A.!.

The "B4 02 B2 41 CD 21 CD 20" is the program you just made in machine language.

B4 02 = MOV AH,02
B2 41 = MOV DL,41
CD 21 = INT 21
CD 20 = INT 20

The "...A.!." part is your program in ASCII. The "." represent non-printable characters. Notice the A in there.
Enter:

This is one of the hard commands. With it you can enter/change certain memory areas. Lets change our program so that it prints a B instead of an A.
-e 0103 <-- 0103="0103" at="at" br="br" edit="edit" program="program" segment="segment">107A:0103 41.42 <-- 41="41" 42="42" br="br" change="change" to="to">-g
B

Program terminated normally
-
Wasn't that amazing?
Fill:

This command is fairly useless, but who knows....
It fills the specified amount of memory with the specified data. Lets for example clear out all memory from segment 0100 to 0108, which happens to be our program.
-f 0100 l 8 0 <-- 0100="0100" 0="0" 8="8" a="a" br="br" bytes="bytes" file="file" for="for" length="length" of="of" offset="offset" with="with">-d 0100 l 8 <-- br="br" it="it" that="that" verify="verify" worked="worked">107A:0100 00 00 00 00 00 00 00 00 .......
Yep, it worked.
Go:

So far we used go (g) to start the program we just created. But Go can be used for much more. For example, lets say we want to execute a program at 107B:0100:
-r CS <-- 107b="107b" br="br" cs="cs" point="point" register="register" set="set" the="the" to="to">CS 107A
:107B
-g =100

You can also set breakpoints.
-a <-- br="br" enter="enter" have="have" original="original" our="our" program="program" so="so" something="something" we="we">107A:0100 MOV AH,02 to work with
107A:0102 MOV DL,41
107A:0104 INT 21
107A:0106 INT 20
-g 102 <-- 107a:0102="107a:0102" a="a" at="at" br="br" break="break" point="point" set="set" up="up">
At this point the program will stop, display all registers and the current instruction.
Hex:

This can be very useful. It subtracts and adds two hexadecimal values:
-h 2 1
0003 0001 <-- -="-" 1="1" 1h="1h<br" 2h="2h" 3h="3h" and="and">
This is very useful for calculating a programs length, as you will see later.
Input:

This is one of the more advanced commands, and I decided not to talk about it too much for now. It will read a byte of data from any of your computers I/O ports (keyboard, mouse, printer, etc).

-i 3FD
60
-

Your data may be different.
In case you want to know, 3FD is Com port 1, also known as First Asynchronous Adapter.
Load:

This command has 2 formats. It can be used to load the filename specified with the name command (n), or it can load a specific sector.

-n c:\command.com
-l

This will load command.com into debug. When a valid program is loaded all registers will be set up and ready to execute the program.
The other method is a bit more complicated, but potential also more usefull. The syntax is

L

-l 100 2 10 20

This will load starting at offset 0100 from drive C (0 = A, 1 = B, 2 = C, etc), sector 10h for 20h sectors. This can be useful for recovering files you deleted.
Move:

Move takes a byte from the starting address and moves it to the destination address. This is very good to temporary move data into a free area, than manipulate it without having to worry about affecting the original program. It is especially useful if used in conjunction with the r command to which I will get later. Lets try an example:
-a <-- br="br" enter="enter" have="have" original="original" our="our" program="program" so="so" something="something" we="we">107A:0100 MOV AH,02 to work with
107A:0102 MOV DL,41
107A:0104 INT 21
107A:0106 INT 20
-m 107A:0100 L 8 107B:0100 <-- 107a:0100="107a:0100" 107b:0100="107b:0100" 8="8" br="br" bytes="bytes" from="from" into="into" more="more" starting="starting">-e 107B:0103 <-- 107b:0103="107b:0103" br="br" edit="edit">107B:0103 41.42 <-- 42="42" and="and" br="br" change="change" it="it">-d 107A:0100 L 8 <-- br="br" it="it" make="make" sure="sure" worked="worked">107A:0100 B4 02 B2 41 CD 21 CD 20 ...A.!.
-d 107B:0100 L 8
107A:0100 B4 02 B2 42 CD 21 CD 20 ...B.!.
-m 107B:0100 L 8 107A:0100 <-- br="br" changes.="changes." like="like" original="original" program="program" restore="restore" since="since" the="the" we="we">Name:

This will set debug up with a filename to use for I/O commands. You have to include the file extension, and you may use addition commands:

-n c:\command.com
Output:

Exactly what you think it is. Output sends stuff to an I/O port. If you have an external modem with those cool lights on it, you can test this out. Find out what port your modem is on and use the corresponding hex number below:

Com 1 = 3F8 - 3FF (3DF for mine)
Com 2 = 2F8 - 2FF
Com 3 = ??? - ??? (if someone knows, please let me know)

Now turn on the DTA (Data Terminal Ready) bit by sending 01h to it:
-o XXX 1 <-- br="br" com="com" hex="hex" in="in" is="is" port="port" the="the" xxx="xxx">
As soon as you hit enter, take a look at your modem, you should see a light light up. You can have even more fun with the output command. Say someone put one of those BIOS passwords on "your" computer. Usually you'd have to take out the battery to get rid of it, but not anymore:

MI/AWARD BIOS
-o 70 17
-o 71 17

QPHOENIX BIOS
-o 70 FF
-o 71 17

QGENERIC
-o 70 2E
-o 71 FF

These commands will clear the BIOS memory, thus disabling the password.
Proceed:

Proceeds in the execution of a program, usually used together withy Trace, which I will cover later. Like the go command, you can specify an address from which to start

using =address
-p 2

Debug will respond with the registers and the current command to be executed.
Quite:

This has got to be the most advanced feature of debug, it exits debug!

-q
Register:

This command can be used to display the current value of all registers, or to manually set them. This is very useful for writing files as you will see later on.

-r AX
AX: 011B
:5
-
Search:

Another very useful command. It is used to find the occurrence of a specific byte, or series of bytes in a segment. The data to search for can by either characters, or a hex value. Hex values are entered with a space or comma in between them, and characters are enclosed with quotes (single or double). You can also search for hex and characters with the same string:
-n c:\command.com <-- br="br" command.com="command.com" data="data" have="have" in="in" load="load" search="search" so="so" some="some" to="to" we="we">-l
-s 0 l 0 "MS-DOS" <-- block="block" br="br" entire="entire" for="for" memory="memory" search="search">10A3:39E9 <-- 10a3:39e9="10a3:39e9" br="br" found="found" in="in" string="string" the="the">
NOTE: the search is case sensitive!
Trace:

This is a truly great feature of debug. It will trace through a program one instruction at a time, displaying the instruction and registers after each. Like the go command you can specify where to start executing from, and for how long.
-a <-- again="again" br="br" thing="thing" this="this" yes="yes">107A:0100 MOV AH,02
107A:0102 MOV DL,41
107A:0104 INT 21
107A:0106 INT 20
-t =0100 8

If you leave out the amount of instructions that you want to trace, you can use the proceed (p) to continue the execution as long as you want.
Unassemble:

Unassembles a block of code. Great for debugging (and cracking)
-u 100 L 8 <-- 100="100" 8="8" at="at" br="br" bytes="bytes" offset="offset" starting="starting" unassembles="unassembles">107A:0100 MOV AH,02 <-- br="br" debut="debut" response="response" s="s">107A:0102 MOV DL,41
107A:0104 INT 21
107A:0106 INT 20
Write:

This command works very similar to Load. It also has 2 ways it can operate: using name, and by specifying an exact location. Refer to back to Load for more information.

NOTE: The register CX must be set the file size in order to write!
NOTE: Write will not write .EXE or .HEX files.[SIZE=7][SIZE=14]

Woo Themes - Canvas Wordpress themes Free Download Latest Full

Woo Themes - Canvas WordPress themes Free Download
Woo Themes

Woo Themes - Canvas Wordpress themes Free Download Latest Full hacker bradri

Canvas is our most ambitious theme to date! Every element of Canvas is highly customizable through our options panel, so you can make the design, layout and typography exactly like you want. If you are after a highly customizable blog design or just a starter theme for your next client project, then Canvas will most definitely work for you!


Unique Features

Customize any element

Canvas will let you customize the style and typography of every element in the design. Packed with 100+ options, it allows you to make your blog look exactly like you want!

Google fonts support

You can change any text on your site to the font of your liking, and also use the awesome Google Fonts to go beyond those standard web-safe fonts.

Fully Responsive Design

The design will scale to fit on all browser widths/resolutions and on all mobile devices. Go ahead and scale your browser window and see the results.

Use your own images in design

The options panel lets you upload your own images for use as main background image and header background image. It’s never been this easy!

Advanced Layout Controls

Canvas lets you easily change your site width from 600px to 2000px, and also gives you the ability to change the layout of your columns through the Layout Manager.

Change your layout

You can also choose between 6 different layouts for and order of content/sidebars (full width, 2 col left, 2 col right, 3 col left, 3 col middle, 3 col right). Canvas also lets you specify individual layouts per post or page!

Magazine and business page templates

Canvas features a Magazine and Business page template, both with javascript sliders so now you can easily setup your homepage to act as a magazine or business theme.

Portfolio module

Canvas comes with a portfolio custom post type where you can showcase your latest projects, designs, or even product images. A dedicated page template showcases your portfolio with a category sorter and lightbox pop-up functionality for ease-of-use.

Tumblog functionality with iPhone App publishing!

NEW! Canvas now supports WooTumblog functionality so it can function like a Tumblr theme, and you can use our new Express iPhone App to publish to your Canvas powered blog!

Custom widgets

The theme has 2 widgetized areas in sidebar and 4 widgetized areas in the footer (optional), and also some extra Woo custom widgets (Woo Tabs, Flickr, Twitter, Adspace, Search).

Child theme friendly

Canvas is the first theme from WooThemes that has made use of custom hooks, which makes it a lot easier to customize the theme via a child theme without touching any code in the main parent theme. Download our sample child theme Fresh Canvas to get started.


Click Here For Demo

Click Here To Download

WooStore Wordpress eCommerce theme Free Download Full

WooStore Wordpress eCommerce Theme Free Download
WooThemes  eCommerce Theme


WooStore is a landmark for WooThemes, our first eCommerce theme for WordPress. Designed in-house by Magnus Jepson and brought to life with WooCommerce, WooStore provides you with a powerful and flexible eCommerce solution.

Unique Features

WooCommerce Goodness

As you’d expect, WooStore makes full use of all of WooCommerce features. We’ve painstakingly married theme and plugin to provide a seamless front-end experience. Every single one of WooCommerce widgets has been lovingly styled to match the beautiful design, as has each key component of the plugin such as the product categories, product descriptions, cart, checkout and user account sections. Read all about the benefits of WooCommerce here.

Featured Slider

A custom homepage featured slider to showcase your products with style, all powered by jQuery. Optional slider pagination gives your visitors easy overview.

Customisable Homepage

The homepage features a stylish jQuery slider as well as the option to display content from one of your pages. There’s even an option to display your featured products, either in a slider of their own or a static grid.

Custom Post Types

The theme takes full advantage of the new custom post types functionality that came with WordPress 3.0, so adding slides and products (via WooCommerce) is dead easy!

Custom Widgets

The theme has 1 widgetized sidebar (which can be moved from the right of the content to the left) and 4 footer regions, and as always comes with 8 custom Woo Widgets PLUS a multitude of WooCommerce widgets too. Widgelicious!


The Woostore theme offers shop facilities

This theme works out of the box, and includes styling for our freely available eCommerce plugin. In other words, you have the option to offer shop facilities right from your WordPress powered website.


With our huge catalog of commercial extensions you can add even further niche functionality to your shop.

Click Here For Demo 

Click Here To Download

Free Download Latest Torrentz Search Engine Script Full

Free Download Torrentz Search Engine Script
Torrent Search Engine

Free Download Latest Torrentz Search Engine Script Full www.hackerbradri.com

The torrent search engine is a fast, easy to use search engine to find torrents. It updates automatically adding new sources and files to your site. In built, SEO search engine friendly links allow for better google ranking. 

The torrent search engine creates a new page every time a search is made, which leads to more pages being indexed within google. It means there is potential for thousands of pages indexed in google from this script.

Script Checks:

  • Find the latest movies, TV shows, music, games, software ect.
  • Search for torrents from a wide range of sources.
  • Search for any file types.
  • Automatically finds new torrents.
  • Fast real time search results.
  • Clean search results page.
  • Tag cloud - for easier searching.

Script Features:

  • One click installation.
  • Simple website search box.
  • 100% fully automated - You can run on auto-pilot
  • Easy to setup.
  • Can get you thousands of pages indexed in google. 
  • No torrents hosted on your server (all externally hosted)
  • Option to use proxy server to get data.
  • Default theme coded in valid html and CSS
  • Change the colours and looks of the design.
  • No admin panel needed.
  • Simple to add adverts (Google Adsense ready)
  • Unencrypted files (easy to change and edit template)
  • PSD files included (to edit logo)
  • Download script instantly after payment.

Requirements:

PHP5+

Script Options

Installation (Get script professionally installed)
Single domain license (Unlimited domain license is available)

Click Here For Demo

Click Here To Download 
 

Free Latest Google Earth Plus Download

Free Download Latest Google Earth Plus
Google Inc.

Free Download Latest Google Earth Plus www.hackerbradri.com

Want to know more about a specific location? Dive right in -- Google Earth combines satellite imagery, maps and the power of Google Search to put the world's geographic information at your fingertips.
  • Fly from space to your neighborhood. Type in an address and zoom right in.
  • Search for schools, parks, restaurants, and hotels. Get driving directions.
  • Tilt and rotate the view to see 3D terrain and buildings.
  • Save and share your searches and favorites. Even add your own annotations.
Download Info:
File Size:" Changes With Version "
License: Freeware
OS Support: Windows ( Windows 2000/XP/2003/Vista/XP64/Vista64 )
Plugins: Unknown
Publisher: Google

Free Download Latest Opera Web browser

Free Download Latest Opera Web browser
A Web browser

Free Download Latest Opera Web browser full www.hackerbradri.com


A full-featured Internet browser, Opera includes pop-up blocking, tabbed browsing, integrated searches, and advanced functions like Opera's groundbreaking E-mail program, RSS Newsfeeds and IRC chat. And because we know that our users have different needs, you can customize the look and content of your Opera browser with a few clicks of the mouse.
  • Tabbed browsing and pop-up blocking
  • Opera integrated search
  • Integrated search
  • Improved security
  • Password manager
  • Opera skins
  • Customization
  • Integrated voice features
  • Full support for Gmail
  • Atom newsfeeds
  • First Web browser to natively support Scalable Vector Graphics (SVG)

Download Info:
File Size:" Changes With Version "
License: Freeware
OS Support: Windows ( Windows 2000/XP/2003/Vista/XP64/Vista64 )
Plugins: Unknown
Publisher: Opera Software

Latest Free Download Manager Free Download

Latest Free Download Manager Free Download
Free Downloader

Latest Free Download Manager Free Download www.hackerbradri.com
What is Free Download Manager? It is a powerful, easy-to-use and absolutely free download accelerator and manager. Moreover, FDM is 100% safe, open-source software distributed under GPL license.
FDM is a light-weight, powerful and easy-to-use application. This software product is well-known for its intuitive and user-friendly interface. FDM can function as a site manager, accelerator, site explorer and scheduler.
FDM can resume broken downloads. So you needn't start the downloading process from the very beginning after casual interruption. You can resume unfinished download from the moment when it was interrupted. Also this program warns you if resuming isn't supported by the servers. It allows you to make a decision about the downloading. So with FDM you save your time and money.
Note that FDM has only been open source since version 2.5.

Download Info:
File Size:" Changes With Version "
License: Freeware
OS Support: Windows ( Windows 2000/XP/2003/Vista/XP64/Vista64 )
Plugins: Unknown
Publisher: freedownloadmanager.org