Friday, 31 May 2013
Tuesday, 28 May 2013
Facebook Chat Prank [ MUST SEE 'n' TRY ]
Firstly, Copy the below codes into notepad
dim strDot
strDot="."
set ws = CreateObject("wscript.shell")
wscript.sleep 5000
for i = 1 to 100
ws.sendkeys "Initializing : &H246" & 700 + i & "{ENTER}"
wscript.sleep 100
next
wscript.sleep 1500
ws.sendkeys "_Profile ID Found...._{ENTER}"
wscript.sleep 1500
ws.sendkeys "_Targeting Profile..._{ENTER}"
wscript.sleep 1800
ws.sendkeys "_Exploiting Profile_{ENTER}"
wscript.sleep 800
for i = 1 to 20
ws.sendkeys "*Sending Exploits...* : " & i & "{ENTER}"
wscript.sleep 800
next
wscript.sleep 1500
ws.sendkeys "*_Starting Password Attack_*{ENTER}"
wscript.sleep 800
ws.sendkeys "_Attack Type : Brute Force_{ENTER}"
wscript.sleep 1500
for i = 1 to 30
ws.sendkeys "Hacking account Now" & strDot & "{ENTER}"
strDot = strDot & "."
wscript.sleep 800
next
wscript.sleep 1500
ws.sendkeys "*Attack Completed...! by www.way2hacker.blogspot.in *{ENTER}"
Now save it as any name but with .vbs extension. E.g:- fbhack.vbs and save it on the desktop.
Now to the main trick, Open your facebook account and select the person you want to play pranks with from chat,
MAKE SURE THE PERSON IS ONLINE.
And the last part now, Please becareful in this part.
== >> Double click on the vbs script ypu crated previously and immediately move your cursor on the facebook chat box of the person and see what happens.
Source : Kehinde Ayoola Blog
dim strDot
strDot="."
set ws = CreateObject("wscript.shell")
wscript.sleep 5000
for i = 1 to 100
ws.sendkeys "Initializing : &H246" & 700 + i & "{ENTER}"
wscript.sleep 100
next
wscript.sleep 1500
ws.sendkeys "_Profile ID Found...._{ENTER}"
wscript.sleep 1500
ws.sendkeys "_Targeting Profile..._{ENTER}"
wscript.sleep 1800
ws.sendkeys "_Exploiting Profile_{ENTER}"
wscript.sleep 800
for i = 1 to 20
ws.sendkeys "*Sending Exploits...* : " & i & "{ENTER}"
wscript.sleep 800
next
wscript.sleep 1500
ws.sendkeys "*_Starting Password Attack_*{ENTER}"
wscript.sleep 800
ws.sendkeys "_Attack Type : Brute Force_{ENTER}"
wscript.sleep 1500
for i = 1 to 30
ws.sendkeys "Hacking account Now" & strDot & "{ENTER}"
strDot = strDot & "."
wscript.sleep 800
next
wscript.sleep 1500
ws.sendkeys "*Attack Completed...! by www.way2hacker.blogspot.in *{ENTER}"
Now save it as any name but with .vbs extension. E.g:- fbhack.vbs and save it on the desktop.
Now to the main trick, Open your facebook account and select the person you want to play pranks with from chat,
MAKE SURE THE PERSON IS ONLINE.
And the last part now, Please becareful in this part.
== >> Double click on the vbs script ypu crated previously and immediately move your cursor on the facebook chat box of the person and see what happens.
Source : Kehinde Ayoola Blog
Thursday, 23 May 2013
Gaming time :::Cat vs Dog:::
Download and enjoy Cat vs Dog
Stegan0graphy - Hide Files & Messages inside Images in CMD
Using the command prompt in Windows
This one's quite easy. Create an archive file (i.e a Zip or Rar file) which contains the files you want to hide.
Our aim is to hide this archive file inside an image. Let's assume secretfiles.zip is the archive file and mypicture.jpg is the picture file which will be used to hide the archive.
Now open the command prompt and use the following command:
copy /b mypicture.jpg + secretfiles.zip new.jpg
The above command will create a new image file named new.jpg, which contains secretfiles.zip.
Opening new.jpg will only display the image from the original mypicture.jpg file, so the zip file stays hidden. However, to access the archive, you'll have the open the new.jpg file with programs like Winzip,Winrar,7-zip etc.
This trick can also be used with other image formats like png, gif, tif etc. Additionally, the zip or rar archives can be encrypted(password protected), thereby making it difficult to retrieve even if one knows an image contains these files.
This one's quite easy. Create an archive file (i.e a Zip or Rar file) which contains the files you want to hide.
Our aim is to hide this archive file inside an image. Let's assume secretfiles.zip is the archive file and mypicture.jpg is the picture file which will be used to hide the archive.
Now open the command prompt and use the following command:
copy /b mypicture.jpg + secretfiles.zip new.jpg
The above command will create a new image file named new.jpg, which contains secretfiles.zip.
Opening new.jpg will only display the image from the original mypicture.jpg file, so the zip file stays hidden. However, to access the archive, you'll have the open the new.jpg file with programs like Winzip,Winrar,7-zip etc.
This trick can also be used with other image formats like png, gif, tif etc. Additionally, the zip or rar archives can be encrypted(password protected), thereby making it difficult to retrieve even if one knows an image contains these files.
Labels:
Computer Tricks
Wednesday, 22 May 2013
NAGIOS - "N€TW0rk M0niT0riNG T00L"
Nagios is an open source computer system monitor, network monitoring and infrastructure monitoring software application. Nagios offers monitoring and alerting for servers, switches, applications, and services. It alerts users when things go wrong and alerts them again when the problem has been resolved.
Source : ww.wikipedia.com
You can download Nagios tutorial from the Click here to download
Authors : Pankaj Rane , P. Venkatesh
Source : ww.wikipedia.com
You can download Nagios tutorial from the Click here to download
Authors : Pankaj Rane , P. Venkatesh
Tuesday, 21 May 2013
Disable Directory Listing in "APACHE" & "IIS" web server
Ex: www.way2hacker.blogspot.in
like traversing directories trying www.way2hacker.blogspot.in/robots.txt
there might be some probablity that an attacker tries to look for hidden directories and there is possibility of finding possible web configuration files.
TO DISABLE THIS :
In APACHE :
go to file called httpd.conf
and search for :
Options Indexes FollowSymLinks
Now add "-" (hyfen) before Indexes , as shown below
Options -Indexes FollowSymLinks
In IIS :
Open IIS Manager and navigate to manage then in "Feature View" Double Click "Directory browsing".
In "Actons" pane click Disable - if Directory browsing is enabled.
If you like this Post , Subscribe to my blog below ...
like traversing directories trying www.way2hacker.blogspot.in/robots.txt
there might be some probablity that an attacker tries to look for hidden directories and there is possibility of finding possible web configuration files.
TO DISABLE THIS :
In APACHE :
go to file called httpd.conf
and search for :
Options Indexes FollowSymLinks
Now add "-" (hyfen) before Indexes , as shown below
Options -Indexes FollowSymLinks
In IIS :
Open IIS Manager and navigate to manage then in "Feature View" Double Click "Directory browsing".
In "Actons" pane click Disable - if Directory browsing is enabled.
If you like this Post , Subscribe to my blog below ...
Subscribe to:
Posts (Atom)