August 2011

Sunday, 28 August 2011

Creating IM Bot Using IMified with PHP

Instant messaging (IM) is a form of real-time direct text-based communication between two or more people using personal computers or other devices, along with shared clients. The user's text is conveyed over a network, such as the Internet. More advanced instant messaging software clients also allow enhanced modes of communication, such as live voice or video calling.


IM bot is a bot program that uses instant messaging as an application interface. IM users can add the name of the IM bot to their buddy list. Because the bot uses artificial intelligence, the end user thinks that he is talking to a real person and can forget that he is actually just querying a database. Some IM bots are able to connect to outside databases

IMified platform allows anyone with basic web programming skills to quickly and easily create and run an IMR (Interactive Messaging Response) application more commonly known as a "BOT" on public IM networks client like Google Talk, AIM, MSN, Windows Live, Jabber and Twitter.
Steps to create IM Bot using php
Here, I given steps to create a personal IM bot using php.
✔ Go to www.imified.com and register a new account.

✔ Now create a bot with your favorite server side programming language like PHP, Perl, Python or any other language.
Example :
<?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 Hacker's Lodge, " . $_REQUEST['value1'] . "<br>from " . $_REQUEST['value2'] . ".<reset>";
break;
}
?>

✔ Once your bot script is ready, put it somewhere on your web server and note the url of your bot in web server
For Free Hosting|Web Server : x10hosting.com

✔ Now login to your imified account, and click "create a new bot". Fill the following field to complete your bot creation
Bot Name : General identifier for your bot
Example : Hacker's Lodge
Screen Name : To get you started we'll give you your own bot.im screen name that is accessible via Gtalk and Jabber. You can add other networks to your bot after its created.
Example : lodge4hacker@bot.im
Bot URL : Enter the url of your bot that you uploaded in web server.
Example : http://lodge4hacker.com/test.php
That's it, Now your IM bot is created!!.
✔ Finally add bot to your IM friends list and enjoy chat with your bot. This is a simple bot creation steps, you can a create your own bot to do things for you. Imified provides you a feature to connect bot to your existing IM account.
Conclusion
Imified provides a best platform to create your own Innovative And Inspiring bot,which helps you to do things faster. If you like this post please give your feedback with few lines in a below comment box.

Read more...

Saturday, 13 August 2011

Free "The Hackers Underground Handbook" E-Book



The Hacker's Underground Handbook
Learn How to Hack and What It Takes to Crack Even the Most Secure Systems!
Author
David Melnichuk

Website
Learn How To Hack

Description
The information given in this underground handbook will put you into a hacker's mindset and teach you all of the hacker's secret ways.The Hacker's Underground Handbook is for the people out there that wish to get into the the amazing field of hacking. It introduces you to many topics like programming, Linux, password cracking, network hacking, Windows hacking, wireless hacking, web hacking and malware. Each topic is introduced with an easy to follow, real-world example. The book is written in simple language and assumes the reader is a complete beginner.

---------------------------------------------------------------------------------------------
Mirror : Hacker's Lodge
Mirror : The Pirate Bay [Torrent]
---------------------------------------------------------------------------------------------


More Hacking Books Here:
Hacking: The Art of Exploitation, 2nd Edition   Hacking: The Next Generation (Animal Guide)  Ninja Hacking: Unconventional Penetration Testing Tactics and Techniques

Read more...

Sunday, 7 August 2011

Google Logos and Doodles Collection

Google Search or Google Web Search is a web search engine owned by Google Inc. and is the most used search engine on the Web. Google Doodle is a creative way to show current holidays, famous birthdays, notable inventions, major events or even its own updates through the Google logo. Google Doodle logos include both static and interactive logos. Clicking on a Google Doodle links to a string of Google search results about the topic. Google began in January 1996, since from 1996 Google release a various logos

Google Doodle provides a collection of all Google logos commemorating holidays and events around the world here is some top doodles. Google Doodle service is officially provided to Google fans/user to get archived collection of Google doodles/logos.

Jan 20, 2011 - 50th Anniversary of JFK's Inaugural

Jul 20, 2011 - Gregor Mendel's 189th Birthday

Mar 31, 2011 - Robert Bunsen's 200th Birthday

May 11, 2011 - Martha Graham's 117th Birthday
Jun 09, 2011 - Les Paul's 96th Birthday

(Click Here to Get More Collection)

Note : First two doodles are statics and next three are an interactive doodles click on image to view full doodle

Read more...

Friday, 5 August 2011

Reveal Passwords Hidden Behind Asterisk Using Java Script

JavaScript is a programming language that is mostly used in web pages, usually to add features that make the web page more interactive and it can also be used in many non-browser environments as well. Today we are going to recover saved passwords by revealing them. We don’t need any Firefox browser Add-on for this. It just needs simple Java Script. Using this Java script you can reveal the contents of any password whose text is displayed as asterisks or any other things like dots. The password will be shown in an alert box using a simple JavaScript.

To reveal the passwords and to see the password in letters, Copy and Paste this below script in your browsers address bar and hit enter and you can see your password in a pop up box. You can see the password only if you use this code in the sites log in page

javascript: var p=r(); function r(){var g=0;var x=false;var x=z(document.forms);g=g+1;var w=window.frames;for(var k=0;k<w.length;k++) {var x = ((x) || (z(w[k].document.forms)));g=g+1;}if (!x) alert('Password Not Found in ' + g + ' Forms');}function z(f){var b=false;for(var i=0;i<f.length;i++) {var e=f[i].elements;for(var j=0;j<e.length;j++) {if (h(e[j])) {b=true}}}return b;}function h(ej){var s='';if (ej.type=='password'){s=ej.value;if (s!=''){alert('Password Found!! \n\n Password:\t'+s)}else{alert('Password is Blank')}return true;}}alert('Powered by Hackers Lodge \n lodge4hacker.com');

Or, alternatively you can use this "Show Password" Bookmarklet by dragging it to your Bookmarks Bar to instantly view hidden passwords at the click of a button.
This method works with all browsers supporting java including FireFox, Chrome and Internet Explorer. Please leave your few words in below comment box if you like this article.

Read more...

Home