![]() |
|
How to make a Spammer with Notepad. - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Coding (https://sinister.li/Forum-Coding--71) +--- Thread: How to make a Spammer with Notepad. (/Thread-How-to-make-a-Spammer-with-Notepad) Pages:
1
2
|
How to make a Spammer with Notepad. - Blue - 07-04-2013 This will make someone go to google.com when opened. You can change google.com with anyother website. You could also do this to re-direct to say a Java Drive ip logger... etc.
Step's on how to make this. Open notepad and Type Start Example Code: START http://www.google.comWhich you can just say Start which will just open CMD. But if you put a website name it will open it to the website. You can also start a program like chrome.exe After doings click File - Save as - Whatever.bat Simple then get your friend or whoever to run the program there you go. Any questions ask. *This is really basic and just a fun prank. RE: How to make a Spammer with Notepad. - Anizeb - 07-04-2013 Can also be reworked to flood the computer, possibly forcing a crash(or simply be annoying, at the least). Code: :start
start http://www.google.com
goto startor Code: :start
start http://www.google.com
ping 192.0.2.2 -n 1 -w 10000 > nul
goto startthe line Code: ping 192.0.2.2 -n 1 -w 10000 > nulis used to delay the script, making crashes less likely. You can alter the wait time by changing the "10000". It's in milliseconds, so be sure to multiply the number of seconds you want it to wait by 1000. NOTE: This is completely untested, and I'm pretty shit at batch scripting. If I've done something wrong here, I'd really love it if you'd correct me. Misinformation is a terrible thing. RE: How to make a Spammer with Notepad. - Blue - 07-04-2013 You added the : In front of start take it away runs fine for me.
RE: How to make a Spammer with Notepad. - Platinum - 07-08-2013 Why not loop through the whole thing? (I have not tested this) Code: @echo off
start http://www.google.com
start thisprogramname.bat
exit
RE: How to make a Spammer with Notepad. - Anizeb - 07-08-2013 That'd be dependent on the target not renaming it. RE: How to make a Spammer with Notepad. - Eternity - 07-08-2013 Im pretty sure you should use "How to make a Spammer with Batch"
RE: How to make a Spammer with Notepad. - Blue - 07-09-2013 Well I released it in command line programming. But it's batch yes but it's made wif notepad.
RE: How to make a Spammer with Notepad. - BreShiE - 07-09-2013 There's a grammatical error in your post. Quote:you're Should be: Code: yourHope this helps. RE: How to make a Spammer with Notepad. - Xanii - 07-12-2013 Why not just spam opening of CMD's? You don't have to wait for a page to load and it takes up the screen and crashes the computer quickly
RE: How to make a Spammer with Notepad. - Blue - 07-13-2013 (07-12-2013, 10:41 PM)Xanii Wrote: Why not just spam opening of CMD's? You don't have to wait for a page to load and it takes up the screen and crashes the computer quickly You could do that. I just simply did that as an example. |