Setting Up A Simple Web Server

You don’t need to set up a web server in order to automate the delivery of your information products. This section is for people who don’t want to pay a cent for hosting their downloadable information products and web sites. Hosting your own web pages gives you much more hard drive space and easier control of your HTML documents. This section will also go over typical issues when setting up a web server and a solution for each issue.

Internet Service Providers (ISP’s)

Here is a little information on most Internet Service Providers (ISP’s). If you’re on a basic ADSL or Cable package, then chances are you have some restrictions on your Internet account. Common limitations are certain port blockages, and IP address assignment process. First, let’s look at ports.

Ports

Ports are used for communication on the Internet. There are a lot of them, and knowing what they all do is not important for this document. What is important is that your ISP may be blocking you from accepting requests on port 80, which is the HTTP (Hypertext Transfer Protocol) port. HTTP allows you to surf the Internet. If you look at the address bar on your browser, you will always see “HTTP”. This means that you can access the Internet on an outgoing basis, but you can’t accept incoming HTTP connections. Why? Think of your ISP as doing you a favor. By blocking port 80, they are eliminating the chance of your computer from ACCEPTING viruses, spyware, and all sorts of other malicious activity. The problem is, this also blocks your ability of accepting other HTTP (port 80) requests, therefore preventing you from being a web server. To find out if your port 80 is blocked, you will either have to go to your ISP’s web site and find your license agreement, or call their technical support line and ask. Either way, this problem is easily solved in the next few pages. We will now move on to the next issue, IP Address Assignment.

IP Address Assignment

An IP (Internet Protocol) address is a unique identifier that gives your computer a “home” on the World Wide Web. Most basic Internet packages, including all dial-up connections, work on a dynamic IP address assignment process. The problem this causes is that if your IP address is always changing, how is anyone supposed to find your “home”? It would be like you lived in your house for 5 hours, and then left. Even your trusty mailman would get confused! One solution is to call your ISP and get your Internet package upgraded to a business plan, which will change your IP from dynamic to static, but at an extra cost. The other is to use a great free tool that we will explain in the next section.

To find out your IP address, click “Start”, then Run, type “Command”, click “OK”. When the black window, known as the “Command” window opens, type “ipconfig /all”. This will yield your current IP configuration. If you see a line that says “Lease Expires”, and it’s soon, then you definitely have a dynamic IP. Don’t worry if it expires soon, you’ll get a new one as soon as it does. You will also notice a 4-octet number, seperated by 3 periods next to its appropriate description, “IP Address”. This is your IP address.

No-IP.com

Who is No-IP?

These guys are great!

Before we get into it, lets define what a domain name is. A domain name is a alphanumeric representation of your IP address. In other words, any “www” name you enter into your address bar actually reflects an IP address. If you open up your command window again and type “ping www.articleautomate.com”, you will notice there is an IP
address in square brackets next to my domain name in the results.

Now, let’s move on.

First, No-IP will give you a web name and you don’t even have to pay for it! That means you don’t have to purchase a domain name. Any “www” address you see in your address bar is a domain name. When you use No-IP.com, you will receive a domain name that looks like www.yourname.no-ip.com. Notice the “no-IP” part. Since No-IP.com is a free service, they add that to your “www” name. This is fine because the purpose of your site is to serve your articles to your customers through your eBay and Paypal “Instant Purchase” sales, although you can also serve web pages. Your domain name also remains easy to remember.

Second, your dynamic IP address issue simply disappears. No-IP.com has developed a free piece of software that you download from them and install on your PC. What it does is monitor your IP address, and when your IP changes, it tells the No- IP.com server, which updates your “www” name to reflect your new IP address.

No-IP.com Registration

Now that you understand what No-IP is, you are ready to go out and get registered. Click the link below, find their “Sign-up Free” link, and fill in the blanks.

www.articleautomate.com/no-ip

Once you have fully registered, you will receive a confirmation email. Follow the directions on the email. Next, log into your No-IP.com account, and click on the “Add” link under the “Hosts/Redirects” header.

The “Hostname” textbox is where you will enter your “www” name, and the dropdown is the No-IP.com extension of your choice.

If your ISP does not block port 80 then you don’t need to do any port redirecting. Just click the “Create Host” button at the bottom of the page.

If your ISP does block port 80 then click on the “Port 80 Redirect”. A new page will load, but will look almost the same. For the “Port”, enter 8000. Click the “Create Port Redirect” at the bottom of the page.

Registration is complete – on to the software!

Click on the “Downloads” tab at the top and then click “Windows” on the left column. Click on the No-IP DUC v x.x.x link. (x.x.x because the version is always changing)

Follow the wizard to install the program. Once installation is complete, you will be prompted for the email address and password you entered during registration. After entering this, the console will open. Turn to the next page to see what your console will look like.

console

Notice the smiley face. That means the No-IP.com server has been updated with your current IP address.

Now that you have your domain name set up, you have to start hosting your pages! The next section will introduce you to an excellent program called Abyss Web Server by Aprelium.

Abyss Web Server

What is Abyss?

Simply put, Abyss is a free personal web server for Windows, MacOS X, Linux, and FreeBSD. Abyss is just a web server, and does not allow for any FTP protocol. You can access your console remotely to update directory and user settings, but you can’t upload any files unless you are at the computer running the web server.

Installation

Click on the following link:
www.articleautomate.com\abyss

Find the “Download” link under the “Software Resources” header near the bottom of the page. Click on the “Download Abyss Web Server X1 for Windows” link and install the software.

Once the installation is complete, you will be asked for a username and a password. This identifier will then be your login to your web server. You will also see the Abyss icon in your system tray. After entering your login info, you will be prompted again for a username and password. You will always be prompted for your login information with this screen whenever you start your console.

You should get a console that looks something like this:

console

Do not change the “Server Root”. This is where your web server runs.

Change your “Documents Path” to the path you wish to host your pages from. For this book, I will use “c:\article”.

If your “Port” isn’t already set to 8000, do that now.

Any changes that you make will require a server restart, which is nothing more than clicking a button when you are prompted.

If you ever need to access your console again, right click on the Abyss icon in the system tray, and select “Show Console”. Please take into consideration that we have only skimmed the surface with Abyss Web Server and that there is much more to learn about it, such as setting up directory and user permissions, and your access statistics.

We will now move on to a “suggested” method of setting up your web server directory.

Directory Structure

Before you start creating HTML and putting your article online, you may want to look at how you want your web server’s file system to be set up. I have found that it is easier to maintain when you have the following setup: For this example, I have set my “Documents Path” to c:\article. To create a directory, read “Directory Creation”.

Take a look at the image below:

console

You will notice that we are in the article directory, and there is an index.htm file. This file will be your website’s home page. Next, you will see an images folder and a widgets folder. You will store all of your website’s images in the image folder. The widgets folder will contain another “index.html” file, which will contain the download link to your article.

Directory Creation

To create your “article” directory:

1. Right-Click the “Start” menu.
2. Click on “Explore”.
3. Navigate through the tree until you find “C:” and click on it.
4. In the right window pane, right-click on some white-space, and select “New”, then “Folder”.
5. Name your folder “article”.

Follow this process to create your “images” and “widgets” directory. We will look at creating your “index.html” file in Section 4 or this article.

Test Your Server

Next, test your server. Run the “ipconfig” command, and write down your IP address. Open a new web browser and in the address bar type: yo.ur.ip.addy:8000/

If you get the Paypal button you created and tested earlier, you have correctly installed Abyss. Notice the “8000”. This directs the website to your port 8000. If you decide to run your server on a different port, you will need to change this figure to be the same.

Now try your No-IP domain name “http://yourname.no-ip.com”. Notice that your address bar changes to your IP address?

If you don’t want the address to change to your IP, then you will have to log into your No-IP account and edit your Host settings from “Port 80 Redirect” to “DNS Host,” but the difference will be that your domain will look like www.yourname.no-ip.com:8000.

Troubleshooting

If you experience problems, such as “error 404 - Page cannot be found”, then try some of these suggestions:

1. Make sure there is an “index.html” file in your “c:\article” directory.
2. Make sure your “Documents Path” is set to “c:\article”
3. Make sure you see the following icons in your system tray (bottom right):
4. Make sure your web address DOES NOT contain a “WWW” in it. It should follow this exact protocol: yourname.no-ip.com.

If all none of these suggesstions work, the following link:
www.articleautomate.com/serverhelp

Set Up A Http Server Running From Computer

1. We are goin’ to use a program called hfs i like de beta version (2). You will need to download this program.
Go to randomshitfromtimmy.no-ip.org very easily.

1) All you have to do is go to www.no-ip.com
2) Make a username
3) Log in
4) Click add on de left hand side
5) Make a hostname (mine is randomshitfromtimmy)
6) Click port 80 redirect
7) Enter your ip in de ip address field
8) And choose de port you wish to forward (this is eider 80 or de oder one that you chose)
9) Click add redirect.

Now you have a fully workin’ hfs system.It runs of you bandwidth so if lots of people are downloadin’ from you, will find your net goes slowly so remeber to set limits.

Download Directly From CrackDB

Some of you may not know this, oders may already knew it, however, because of Sod rules which do no not allow indirect crack links, and because CrackDB is a very good resource for cracks, i will show how to post links that lead to a direct download from CrackDB.

The CrackDB server sends de archive of a crack as an attachment to de respond for an HTTP request made by your browser, this means you (and your browser) will never know de real location of de file, because of this you can’t post a direct link to de crack in your topic.

Usin’ de Referer variable we can overcome this problem, but what referer to
use? if you used de domain name http://www.crackdb.com/ you will get nothin’ but a useless image file.

The correct refere is shown on your browser address bar. For example, if you want de crack for IsoBuster Pro v1.6 you just type de name in de search box and press Enter, de next page displays a list of items that match or nearly match your search keywords, click on IsoBuster Pro v1.6 from de list and you are now in de download page, de hyperlink named “Download” is de link that initiates de request to de server to download de file, which looks like this:

http://www.crackdb.com/x.php?id=12356

The referer is now displayed on your browser address bar, which looks like this:

http://www.crackdb.com/get.php?id=12356

Now, you use both links to refer to a direct crack download from CrackDB, like this

http://www.crackdb.com/x.php?id=12356

Use this referer:

http://www.crackdb.com/get.php?id=12356

Any member now can copy & paste de links into his/her download manager and start downloadin’ immediately.

Downloading BitTorrent Files

What is BitTorrent in Plain En’lish?

BitTorrent is a program you download. It is similar to a peer-to-peer file sharin’ service. Basically it goes like this: You download de installer. You get de link to a file that ends in .torrent and enter that URL into your browser (preferably Internet Explorer). This opens de BitTorrent download window. It starts downloadin’ de file, or episode that you wanted (eg. alias2×01.torrent). As it downloads, it uploads de parts that you have to oder people so many people can get it at once. When you’ve finished downloadin’ de file, you can leave de window open (don’t press finish or close de window) and oder people can still download from you. This is very much encouraged.

I’m new to all this. How do I download with BitTorrent?

First we need to download and install a BitTorrent client

Official client 3.3
CODE
www.bitconjurer.org/BitTorrent/index.html

Experimental client 3.2.1b-2
CODE
ei.kefro.st/projects/btclient

TheShad0w Experimental S-5.8.3
CODE
home.elp.rr.com/tur

Azureus 2.0.3.0
CODE
azureus.sourceforge.net/

burst! RC5d
CODE
krypt.dyndns.org:81/torrent/download.phtml
BT++ 0.5.4 alpha [code]btplusplus.sourceforge.net

Shareaza 1.8.9.22
CODE
www.shareaza.com

Nova Torrent 0.2.0
CODE
blackflaw.dyndns.org

SimpleBT 0.1.9
CODE
sourceforge.net/projects/simplebt

BitAnarch 1.0.5a
CODE
sourceforge.net/projects/bitanarch/

Personal Torrent Collector 0.8.2.2
CODE
ptc.sourceforge.net

Effusion 0.3.3 beta
CODE
www.azrael-uk.f2s.com/az/effusion

Snark 0.5 beta
CODE
www.klomp.org/snark

ByteTorrent 0.95
CODE
sourceforge.net/projects/bytetorrent/

ABC 2.5
CODE
http://pin’pon’-abc.sourceforge.net

Note:
If you’re client freezes durin’ D/Ls, it’s a problem with you’re network card or mothem, this happens when you connect to more peers than you’re card or mothem can handle & windows shuts it down. There is a cure. Shad0ws Experimental client allows you to set how many incomin’ peers to allow.

All about BT:
CODE
www.dessent.net/btfaq/#now_what

How to Download Torrent files

BitTorrent is not like oder peer-to-peer applications (such as Winmx, Kazaa, Gnutella, etc.) in that it does not have its own ”universe.” Put anoder way, BT lives on top of de Web, which means that all of de searchin’/listin’ of available files is done on de web. When you find a file you want to download, you click on it and de BitTorrent client program will run and ask you where to put it, and den start downloadin’. Or you save target as. Save de file somewhere den click on it when you’re ready to start de download.

It doesn’t do anythin’ it says:
Problem connectin’ to tracker - timeout exceeded
Problem connectin’ to tracker - HTTP Error 503: Connect failed
Problem connectin’ to tracker - [Error socket error] (10061, ” Connection refused”)
Problem connectin’ to tracker - (111, ’Connection refused’

Generally just wait. this normally means that de ’Tracker’ is maybe too busy. Leave your window open and it will try to connect every 2 minutes or so.

Note: BT dose resume downloads, just click de torrent file again when you are ready to resume de download and save it to same place as de original. All clients have an option for default download directory. I suggest settin’ this option.

My speed is always very slow!

Speeds can be real slow if your one of de below, dey all can bet set to allow BT in and out

#1 behind a firewall
#2 behind a router
#3 on a network
#4 Xps firewall is enabled

Ports 6881 thru 6999 need to be open to get good speeds

If you need info on bit torrent and how to set it up with a firewall or router
CODE
knowbuddy.dyndns.org/torrent/btclientconfig.html

Get general info on how torrent works and how it uses ports
CODE
knowbuddy.dyndns.org/torrent/btclientconfig.html
www.dessent.net/btfaq/

Where do I get torrent files?

Supernova mirrors are de best site’s, updated every 20 minutes.
CODE
www.suprnova.org

There are oders you can use here is anoder one:
CODE
www.torrentbox.com

Places to find oder torrent sites
CODE
torrentlinks.com/index.php?action=displaycat&catid=10
members.chello.nl/~p.wiersema/
home.quicknet.nl/qn/prive/romeria/bittorrentsites.htm

Torrent Search en’ine
CODE
novasearch.net/

Keepin’ up with de torrent network
CODE
www.digital-update.com/forums/attachment.php?s=&postid=163113
www.filesoup.com/phpBB2/index.php
www.lickmytaint.com/
suprnova.org/

PeerGuardian

What does PeerGuardian actually do?

PeerGuardian does two thin’s to help P2P users. The first is de obvious one, it closes connections on certain IP addresses. The second is that it optionally logs all connections made to your computer. The reason for this is so that if you do use PeerGuardian but still get sent a legal threat, you can cross-reference de date/time of de alleged infringement with de log. This gives us a list of IPs, one of which will be de IP that’s doin’ de bustin’. It’s basically to help us identify which IPs are doin’ de bustin’ and weren’t known to PeerGuardian before. Hope that makes sense.

Is PeerGuardian 100% Protection?

CERTAINLY NOT! - PeerGuardian relies on users sharin’ information to stay up to date. It IS contributory to protection and (I’m not tryin’ to blow my own trumpet here!!) it seems to be de most up-to-date and open database of this nature on de internet (as far as I know). The more people who are usin’ full-loggin’ and report de relevant IPs when dey get a C&D threat (see above paragraph), de more people we can save. ANONYMOUS P2P is de way ahead IMHO, PeerGuardian isn’t 100% effective. I’ve NEVER claimed that and never will and I look forward to de day that PG (not just de app, more.. de database and communication between p2p’ers on blockin’ IPs) becomes totally redundant. I’m just tryin’ to help supply de next-best thin’ until we get to that stage.

I use PeerGuardian and have still been sent a legal threat.

What do I do?

First of all, stop sharin’ de file you got busted with. If you’re worried, try sharin’ older/rarer files. If you share Bourne Identity, Terminator 3 and a load of Busta Rhymes mp3s after bein’ busted, you’ll be askin’ for trouble. Second thin’ to do, check de “full connection log” in PeerGuardian. (you did have it enabled didn’t you?) - Work out de difference in timezones on de infringement warnin’ and cross-reference it with de log. From this you should be able to identify a handful of IPs. Eider post that list to de PG forums for one of our admins/moderators/members to investigate or investigate it yourself and post de p2p enemy IP to de on-line database. - There are plans to automate this whole process in de future.

CODE
www.peerguardian.net/

How To Bypass Web Filters

There are several occasions where you will be at a public terminal and need to bypass web filters, and require access to a particular website that is blocked for some reason or anoder. How to bypass dese restrictions is a very common question, and will be covered here.

Lets pretend for a moment that de Internet is made up of 26 websites, A-Z. The web filter blocks your browser from accessin’ sites X-Z, but not sites A-W. Simply make de browser think you’re goin’ to A- W. There are a variety of ways to do this:

Proxy Servers:
This is a list of http proxies. These sites may not be up forever, so you may need to search for “free http proxy” or “public proxy servers” or oder similar terms.

Proxy server lists:
www.aliveproxy.com
www.multiproxy.org
www.publicproxyservers.com/index.html
www.tehbox.com/proxy
www.proxz.com
www.proxy4free.com/index.html
free-proxies.com

Now that you have a list of proxies, you would open IE (internet explorer) and click on Tools > Internet Options > Connections > LAN Settin’s > Advanced. Enter de address and port of one of de servers from de list in de proper area (http) and make sure de “use a proxy server for your LAN” option is selected. Remember to replace de proxy and port at your terminal to de original when you’re done.

Note: Some proxies listed may not work, and this method may decrease your surfin’ speed. By tryin’ various entries, you’ll find one that works, or works faster.

The infamous translation trick:
Go to a web page translation site and use deir services to “translate a page to En’lish” thus accessin’ de blocked page through deir trusted site.

You’ll notice that several translation sites are blocked, but by usin’ less popular ones, this method can still be effective. Here is a list of some translation services. Again, dese sites may not be up forever, so you may need to search for them.

babelfish.altavista.com
world.altavista.com
translation.langenberg.com
freetranslation.com/web.thm

Url Scriptin’:
Url scriptin’ is de easiest method. It works on a select few web filters and is based on de same principal as de translation trick. By typin’ and address like “www.yahoo.com@www.restricted_site.com de filter will not go into effect as it recognizes de trusted site (in this case yahoo.com)

Oder tricks:
Simply open de command prompt and type:
Pin’ restricted.com, restricted.com obviously bein’ de restricted site. At this point you can take down de IP address (ex. 216.109.124.73) and enter it into de browser. If access to de command prompt is also restricted, see “How to bypass restrictions to get to de command prompt.” If this article has been taken from information leak, den know that it involves anythin’ from openin’ de browser, selectin’ view > source, den savin’ it as X.bat and openin’ it to openin’ a folder or browser and typin’ in de location of cmd.exe dependin’ on de OS. I will not go into furder, as this a completely different topic.

Use restrictedsite.com as referrin’ to it as a secured site may confuse de filter.

Note: These are ancient methods that many new filters defend against, but still may be applicable in your situation. If not, a little history never hurt anyone.

Web based Proxies:
Anoder one of de easier, yet effective methods include web based proxies. These are simple in de fact that you just enter de restricted address and surf! Some of dese have some restrictions, like daily usage limits, etc but you can also use anoder proxy (perhaps one that sucks, like a text only) to bypass deir restrictions as well. Here is a list of some:

proxify.com
www.anonymizer.com/index.cgi
www.guardster.com/
anonymouse.ws/anonwww.html
www.de-cloak.com/login.html
www.megaproxy.com/freesurf
www.anonymizer.ru
nadaily.com/cgi-bin/nph-proxyb.cgi
www.userbeam.de/cgi-bin/nph-userbeam.cgi
www.free2.surffreedom.com/nph-free.cgi

Proxy Programs:
There are many proxy programs that allow you to surf anonymously that are more or less based on de same topics we’ve covered here. I’ve added them just to cover de topic thoroughly:

www.hotscripts.com/Detailed/28480.html
www.inetprivacy.com/a4proxy/anonymous-grc.htm
www.oran\’atan\’o.com/home/index.ie.html
www.steganos.com
www.anonymization.net toolbar that requires admin rights to install

Makin’ your own CGI proxy server:
Makin’ your own proxy server may come in handy, but I personally find that simply uploadin’ a txt file with a list of proxies to a free host makes for a much easier and headache free solution. If you don’t know PERL, dere is code out dere to help you set it up. Check out dese sites for more info:

httpbridge.sourceforge.net
www.jmarshall.com/tools/cgiproxy
www.manageability.org/blog/stuff/open-source-personal-proxy-servers-written-in-java/view

Admin Access:
When all else fails, you can simply take over de PC and alter or delete de filter. This method varies accordin’ to de OS (operatin’ system) you are dealin’ with. Please see “Hackin’ Windows NT” for more information. If this tutorial has been taken from information leak, den I will go as far as to say it involves bootin’ de PC in anoder OS, copyin’ de SAM file and crackin’ it usin’ a program like saminside or LC5 rader than start a whole new topic within one.

Hardware Firewall

The best firewall is a hardware firewall that is completely separate from your operatin’ system. It need not be a dedicated router, could be an old pentium box runnin’ Linux. Below I have found some sites that have How To’s on settin’ up an outside hardware router usin’ an old computer and usin’ a little linux program that fits on a sin’le floppy disk.

Brief Description:
floppyfw is a router with de advanced firewall-capabilities in Linux that fits on one sin’le floppy disc.

Features:
Access lists, IP-masqueradin’ (Network Address Translation), connection tracked packet filterin’ and (quite) advanced routin’. Package for traffic shapin’ is also available.

Requires only a 386sx or better with two network interface cards, a 1.44MB floppy drive and 12MByte of RAM ( for less than 12M and no FPU, use de 1.0 series, which will stay maintained. )

Very simple packagin’ system. Is used for editors, PPP, VPN, traffic shapin’ and whatever comes up. (now this is lookin’ even more like LRP (may it rest in peace) but floppyfw is not a fork.)

Loggin’ through klogd/syslogd, both local and remote.

Serial support for console over serial port.

DHCP server and DNS cache for internal networks.

floppyfw
h#tp://www.zelow.no/floppyfw/

Sentry Firewall CD-ROM is a Linux-based bootable CDROM suitable for use as an inexpensive and easy to maintain firewall, server, or IDS(Intrusion Detection System) Node. The system is designed to be immediately configurable for a variety of different operatin’ environments via a configuration file located on a floppy disk, a local hard drive, and/or a network via HTTP(S), FTP, SFTP, or SCP.

The Sentry Firewall CD is a complete Linux system that runs off of an initial ramdisk, much like a floppy-based system, and a CD. The default kernel is a current 2.4.x series kernel with various Netfilter patches applied. An OpenWall-patched current 2.2.x kernel is also available on de CD.

Bootin’ from de CDROM is a fairly familiar process. The BIOS execs de bootloader(Syslinux) - which den displays a bootprompt and loads de kernel and ramdisk into memory. Once de kernel is runnin’, de ramdisk is den mounted as root(/). At this point our configuration scripts are run(written in perl) that configure de rest of de system. It is de job of dese configure scripts to put de various startup and system files into de proper location usin’ eider what is declared in de configuration file(sentry.conf) or de system defaults located in de /etc/default directory.

Most of de critical files used at boot time can be replaced with your own copy when declared in de configuration file. This is essentially how we allow de user to configure de system usin’ his/her own configuration and init files.

All of de binaries, files, scripts, etc, used to create de CD-ROM are also available on de CD-ROM. So, with a little practice, you can easily build and customize your own bootable Sentry Firewall CD.

Sentry Firewall
www.sentryfirewall.com/docs.html#overview

Get Music Without P2P Or HTTP/FTP Sites

Found out a really cool way to get cool music without p2p progs or HTTP/FTP sites. Best thin’ of all: NO QUEUES, NO PASSWORDS.

Here it is:

1.Get Yahoo Messenger [BETA] here:

CODE
download.yahoo.com/dl/installs/msgr6suite.exe

2.Wait for it to download,den run it and let it download anoder 5 MB or so.

3.Get FairStar MP3 Recorder here:

CODE
www.shareordie.com/forum/index.php?showtopic=9754

After testin’ Total Recorder and anoder prog,de FairStar product is de best RECORDING MP3s from a source, in our case de INTERNET RADIO.

4.Fire up LAUNCHcastRadion in Yahoo Messenger [BETA] and choose a station or a genre.

5.Start up FairStart MP3 Recorder,go to Record Options and CHECK autosettin’,go to Encoder-MP3 and UN-CHECK enable VBR and choose 128 or 192 KBs.Also make sure you choose your OUTPUT folder and you’re done.

6.Hit record or whatever and away you go.

Download Free Music Legally

Are you scared that de RIAA is about to track you down for illegally downloadin’ son’s.
Well, here is a method of obtainin’ many son’s absolutely free that is virtually untrackable
by modern technology. This has to do with capturin’ streamin’ audio, which in many cases, believe it or not
are plain old mp3s just waitin’ for you to “download.” I have found most of de current top-40 as well as many oders you may like, so keep searchin’. The music is waitin’ for you to find it.

Step 1:

First of all, you need to find a good site that hosts streamin’ audio. My favorite that has brought me many son’s to date is www.windowsmedia.com . Some oders are just as good, but this is de site that I will be referencin’ (plus, I know you guys love to steal from Microsoft).

Step 2:

Alright, go up to de left hand corner where dere is an empty text box. This is de search box, just fill it with a son’name or artist just like you would in kazaa and click search. This will brin’ up a page with links to many websites hostin’ a stream by that artist. The ones with music notes are just that…music, this is what you want. In many cases, this is all you need. Just right click on one of de links and click “save as” to save de son’. This works if de file extension is .mp3 or .wma or .asf or well-oder known formats. If this worked, you are finished, oderwise continue readin’.

Step 3:

However, if you encounter a .asx file, dere are a few more steps you will have to endure. First of all, do exactly like de above example and save de file locally. After de file is downloaded, check to see how large de file is. If it is a large file in de megabyte range, den you should be able to play it in your favorite music program. However, if it is less than 1 kilobyte, open it as a textfile. You will den see many script commands that communicate to windows media player. Don’t worry about dese, just look for some URLs which will most likely be pointin’ to a .asf file. It will have at least one if not more. Open de new found URL in your browser and save it like in step 2 and you should be good to go. (I use Mozilla, because Internet Explorer likes to open thin’s rader than save them as I tell it)

NOTE: If any of de URLs are preceded with “mms://” instead of “http://” find anoder URL, because this technique will not work.

This technique is especially useful to avoid prosecution because streamin’ audio, and downloadin’ it appear de same to a web server, derefore you are seen as just anoder “legal” listener, so “download” away my friend and don’t blame me if this soon becomes illegal (if it isn’t already).

Step 4:

If you are picky den search for a program that will convert dese file types to mp3s. I assure you dere are many sites out dere.

If this technique does not work for some reason, dere is anoder technique which is manually recordin’ streamin’ audio, with an audio capture program. I use de one that came with my soundcard (Audigy 2ZS, great soundcard), but I would recommend it only as a last resort such as with “mms://” files. There is a degredation in quality compared to de oder formats and it records every sound your PC makes while it is recordin’ so don’t chat on AIM while recordin’ (lol I can hear random doors slammin’ now).

Anti Leech Hacking Tutorial

I was just askin’ to know if dere is some audiance before

Here is my method for hackin’ anti leech

We are goin’ to use a software called Proxomitron. Proxomitron is an anti bull script web proxy. It works by applyin’ some rules to eleminate pop up and many oder thin’s but for our case we need to deactivate all this filterin’.

  • First goto www.proxomitron.info
  • Download a copy of de soft
  • Then you need to unselect all de option of de software
  • And clik on log window
  • Now go to an anti leech web site
  • Use de plug in and not netpumper
  • In de plugin add a proxy
  • You must put this proxy adress 127.0.0.1 8080 for http
  • Do de same for ftp
  • Now select de file to download a click download
  • Watch in proximitron log windows
  • You will see many internal forwardin’
  • If de file are located in a ftp server, proximitron dont handle them and you will find an error in a ftp adress
  • If it’s a http adress you will find somethin’ like /blablalma/bla/file, site tr.com
  • And you have foudn de adress that is Posted in Hacks  |  0 comments  |  Tags: , , , , , , , , , , ,