CLICK TO HOSTING A WEBPAGE

Web hosting

Monday, February 8, 2016

Create Your Own Instant Messenger Bot

                                 -: Creating IM Bot :-


This quick tutorial will show you how to develop your own functional IM bot that works with Google Talk, Yahoo! Messenger, Windows Live and all other popular instant messaging clients.

To get started, all you need to know are some very basic programming skills (any language would do) and web space to host your “bot”.

For this example, I have created a dummy bot called “insecure” that listens to your IM messages. To see this live, add insecure@bot.im to your GTalk buddy list and start chatting.


f you like to write a personal IM bot, just follow these simple steps:-

Step 1: Go to www.imified.com and register a new account with a bot.

Step 2: Now it’s time to create a bot which is actually a simple script that resides on your public web server.
It could be in PHP, Perl, Python or any other language.

Example Hello World bot:
The example below illustrates just how easy it is to create a bot.
This example is coded in PHP.
<?php

switch ($_REQUEST['step']) {
case 1:
echo "Hi, what's your name?";
break;
case 2:
echo "Hi " . $_REQUEST['value1'] . ", where do you live?";
break;
case 3:
echo "Well, welcome to this hello world bot, " . $_REQUEST['value1'] . "<br>from " . $_REQUEST['value2'] . ".<reset>";
break;
}

?>

Step 3: Once your script is ready, put it somewhere on your web server and copy the full URL to the clipboard.

Step 4: Now login to your imified account, paste the script URL

Screen Name: insecure@bot.im
Bot Script URL: http://www.insecure.in/imbot.php

Step 5: Add that im bot your friends list. That’s it.

This is a very basic bot but the possibilities are endless.

For instance, you could write a bot that will send an email to all your close friends via a simple IM message. Or you could write one that will does currency conversion.

Sunday, February 7, 2016

How To Add Wireless Security In Home NetWork.

              Tips for Wireless Home Network Security


1) Change Default Administrator Passwords (and Usernames)

2) Turn on (Compatible) WPA / WEP Encryption

3) Change the Default SSID

4) Disable SSID Broadcast

5) Assign Static IP Addresses to Devices

6) Enable MAC Address Filtering

7) Turn Off the Network During Extended Periods of Non-Use


8) Position the Router or Access Point Safely 

How To Run Firefox inside Firefox

How to run Firefox inside Firefox.?

Yup you can run Firefox inside firefox just by typing following url.

How about Opening Firefox inside Firefox which is again in another Firefox..?
Not bad huh?
And its really easy too just type in this url in Firefox's address bar and there you go!
Firefox inside Firefox!

copy paste following url in a web browser (mozilla firefox).

chrome://browser/content/browser.xul


Following is the screenshot of this trick (firefox in firefox in firefox, which is again in another firefox)-

How To Lock Folder Without Any Software

Folder Lock With Password Without Any Software-

Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat').

Any name will do.

Then you see a batch file. Double click on this batch file to create a folder locker.

New folder named 'Locker' would be formed at the same location.

Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock the folder namely 'Locker'.

If you want to unlock your files,double click the batch file again and you would be prompted for password.

Enter the password and enjoy access to the folder.


if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

How to make computer faster in window 10

Thursday, February 4, 2016

Is Kali Linux Right For You?

As the distribution developers, one would likely expect us to recommend that everyone use Kali Linux. The fact of the matter is however, that Kali is a Linux distribution specifically geared towards professional penetration testing and security auditing and as such, it is NOT a recommended distribution for those unfamiliar with Linux.

In addition, misuse of security tools within your network, particularly without permission, may cause irreparable damage and result in significant consequences.

If you are looking for a Linux distribution to learn the basics of Linux and need a good starting point, Kali Linux is not the ideal distribution for you. You may want to begin with Ubuntu or Debian instead.

There are some default which should be remembered and most important


Kali Linux Default Passwords 


Kali Linux Default root Password is toor


Default root Password

During installation, Kali Linux allows users to configure a password for theroot user. However, should you decide to boot the live image instead, the i386, amd64, VMWare and ARM images are configured with the default root password – “toor“, without the quotes

Wednesday, February 3, 2016

how to Installing, configuring, and starting OpenVAS in kali linux

OpenVAS, the Open Vulnerability Assessment System, is an excellent framework that can be used to assess the vulnerabilities of our target. It is a fork of the Nessus project. Unlike Nessus, OpenVAS offers its feeds completely free of charge. As OpenVAS comes standard in Kali Linux, we will begin with configuration.

Getting ready 
A connection to the Internet is required to complete this recipe.

How to do it... 

Let's begin the process of installing, configuring, and starting OpenVAS by navigating to its directory via a terminal window:

1. OpenVAS is installed by default and it only needs to be configured in order  to be utilized. 
2. From a terminal window, change your directory to the OpenVAS directory: 
       cd /usr/share/openvas/
3. Execute the following command:
      openvas-mkcert 

What we are performing in this step is creating the SSL certificate for the  OpenVAS program: 
1. Leave the default lifetime of the CA certificate as it is.
2. Update the certificate lifetime to match the number of days of the CA certificate: 1460. 
3. Enter the country. 
4. Enter the state or province (if desired).
5. Leave the organization name as the default. 
6. You will be presented with the certificate confirmation screen, then press Enter to exit:
4. Execute the following command: 
    openvas-nvt-sync 


This will sync the OpenVAS NVT database with the current NVT Feed. It will also update you with the latest vulnerability checks:

5. Execute the following commands: 
   openvas-mkcert-client -n om -i openvasmd -rebuild 
This will generate a client certificate and rebuild the database respectively. 

6. Execute the following command: 
  openvassd 
This will start the OpenVAS Scanner and load all plugins (approximately 26,406),  so this may take some time.

 7. Execute the following commands: 
 openvasmd --rebuild openvasmd --backup 
These commands will rebuild and create a backup of the database.

 8. Execute the following command to create your administrative user  (we use openvasadmin):  openvasad -c  'add_user' -n openvasadmin -r admin

9. Execute the following command:
  openvas-adduser

This will allow you to create a regular user:
  • 1. Enter a login name. 
  • 2. Press Enter on the authentication request (this automatically chooses  the password). 
  • 3. Enter the password twice. 
  • 4. For rules, press Ctrl + D. 
  • 5. Press Y to add the user.

10. Execute the following commands to configure the ports that OpenVAS will  interact with:  

 openvasmd -p 9390 -a 127.0.0.1 openvasad -a 127.0.0.1 -p 9393 gsad --http-only --listen=127.0.0.1 -p 9392

9392 is the recommended port for the web browser, but you can choose your own.

11. Go to http://127.0.0.1:9392, in your browser to view the OpenVAS  web interface.