Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


[PRANK OR SERIOUS] Batch command filter_list
Author
Message
RE: [PRANK OR SERIOUS] Batch command #11
cool...illusion i dint think that much Tongue... it can seriously be made complex...........

Reply

RE: [PRANK OR SERIOUS] Batch command #12
cool...illusion i dint think that much Tongue... it can seriously be made complex...........

Reply

RE: [PRANK OR SERIOUS] Batch command #13
(03-11-2011, 06:48 PM)shadow hunter Wrote: cool...illusion i dint think that much Tongue... it can seriously be made complex...........

yeh Smile me and my mates once did a DDOS of our school server by this Smile
Just with a little difference: we were opening also websites with a lot of videos or photos so they did take a bit more performance Smile hehe Biggrin because of this, we didn't write a test from computers Biggrin

edit: for quick crash, you can also do:

Code:
tskill /a /v *
it kills all processes Smile

and last but not least, ALLWAYS use @echo off Smile it covers your back Tongue
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: [PRANK OR SERIOUS] Batch command #14
(03-11-2011, 06:48 PM)shadow hunter Wrote: cool...illusion i dint think that much Tongue... it can seriously be made complex...........

yeh Smile me and my mates once did a DDOS of our school server by this Smile
Just with a little difference: we were opening also websites with a lot of videos or photos so they did take a bit more performance Smile hehe Biggrin because of this, we didn't write a test from computers Biggrin

edit: for quick crash, you can also do:

Code:
tskill /a /v *
it kills all processes Smile

and last but not least, ALLWAYS use @echo off Smile it covers your back Tongue
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: [PRANK OR SERIOUS] Batch command #15
actually i am not much into this batch thing...so will u please explain me wht this @echo off thing does??how is it suppose to cover my back....

Reply

RE: [PRANK OR SERIOUS] Batch command #16
actually i am not much into this batch thing...so will u please explain me wht this @echo off thing does??how is it suppose to cover my back....

Reply

RE: [PRANK OR SERIOUS] Batch command #17
(03-12-2011, 06:04 AM)shadow hunter Wrote: actually i am not much into this batch thing...so will u please explain me wht this @echo off thing does??how is it suppose to cover my back....

Well,

when a batch is executed, it usually writes the path of the batch file and the command.
You can test it by:
Code:
echo Test
pause

With @echo off you won't get the path of the batch file, therefore its more difficult to find out, what is causing it:

Code:
@echo off
echo test
pause

For this simple flood, it might be useless, but with more complex batches, it comes in handy Smile

EDIT: just came to my mind. Also, you can use the > nul command Smile Basically it will hide whats going on Smile

Example:

Code:
@echo off
echo test
pause > nul
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: [PRANK OR SERIOUS] Batch command #18
(03-12-2011, 06:04 AM)shadow hunter Wrote: actually i am not much into this batch thing...so will u please explain me wht this @echo off thing does??how is it suppose to cover my back....

Well,

when a batch is executed, it usually writes the path of the batch file and the command.
You can test it by:
Code:
echo Test
pause

With @echo off you won't get the path of the batch file, therefore its more difficult to find out, what is causing it:

Code:
@echo off
echo test
pause

For this simple flood, it might be useless, but with more complex batches, it comes in handy Smile

EDIT: just came to my mind. Also, you can use the > nul command Smile Basically it will hide whats going on Smile

Example:

Code:
@echo off
echo test
pause > nul
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: [PRANK OR SERIOUS] Batch command #19
@illusion man this forum is full of cool people..... Biggrin thanks mate u are wonderful... Biggrin

Reply

RE: [PRANK OR SERIOUS] Batch command #20
@illusion man this forum is full of cool people..... Biggrin thanks mate u are wonderful... Biggrin

Reply







Users browsing this thread: 1 Guest(s)