03 Jan, 2011

User agent mechanize

Articles related to user agent mechanize

ARP Spoofing or IP Masquerade

http://digitalpbk.blogspot.com/2009/02/arp-spoofin-ip-masquerade.html ARP Spoofing or IP Masquerade What is IP Masquerade or ARP Spoofing?In order to understand, What IP Masquerading or ARP Spoofing is we need to look into the working of the Ethernet. Ethernet is a Data Link Layer protocol, which uses MAC addresses embedded in the network interface cards (NICs) to communicate between devices. But the network layer and the above layer communicates using IP addresses. So in order to communicate, there must be some mechanism to map the IP addresses in network layer ...
Published 2 years, 12 months ago

How to change root admin user password in Drupal ?

http://digitalpbk.com/drupal/how-change-drupal-root-user-password How to change root admin user password in Drupal ? In order to reset the root or superadmin password on a drupal system, login into the database by looking at the settings.php. You can use phpMyAdmin or any other MySQL utilities like SQLYog, or MySQL command line. Run the following query to reset the password. UPDATE users SET pass = MD5('password') WHERE uid = 1 The user id of administrator is always 1. Password field in drupal is stored as MD5 of the actual string password. So ...
Published 1 year, 10 months ago

Perl Script to send Free SMS to any mobile number in INDIA using way2sms

http://digitalpbk.com/perl-sms/perl-script-send-free-sms-any-mobile-number-india-using-way2sms Perl Script to send Free SMS to any mobile number in INDIA using way2sms The following script sends SMS to any number in INDIA using the free service provided by Way2Sms.com Requires WWW::Mechanize and Compress::Zlib libraries. Please remember to fill the username and password in the fields that is mentioned in the script. Updated code on 28th October 2011. If you face errors use the new script. #!/usr/bin/perl use WWW::Mechanize; use Compress::Zlib; my $mech ...
Published 2 years, 2 months ago

Automate Rsync without Password using Rsync Daemon

http://digitalpbk.com/linux/automate-rsync-passwordless-daemon-rsyncd-conf-cron _Name] path = Filesystem_Path comment = Comment auth users = Authenticated_Users secrets file = User_Password_file hosts allow = IP_Addresses The parameters as shown in italics have to be edited. Module_Name : A name to the module Filesystem_Path : The folder that is to be synced Comment : A comment about the entry Authenticated_Users : List of users separated by space who can access the module / path User_Password_file : The location of the file containing ...
Published 1 year, 12 months ago

Fix for Facebook authentication on IE

http://digitalpbk.blogspot.com/2009/08/facebook-auth-next-parameter-ie.html Fix for Facebook authentication on IE What?This is for Facebook developers who have faced this problem. If you are using an Facebook application to authenticate a user on a PHP website, the Facebook redirection on Internet Explorer specifically fails the login of the user. This is because the return URL returned by facebook specifically for IE is the appending of the CallBack URL specified in the Application +the Next parameter + a "?" + the auth_token parameter.This results ...
Published 2 years, 5 months ago

Perl Script to Login to Orkut

http://digitalpbk.blogspot.com/2007/05/perl-script-to-login-to-orkut.html and GET the redirect page URLGoto the redirect pageGoto Orkut.com/home.aspxYour done.Note:Tested on Linux (FC6, Perl 5.8.8)The following script is for linux, Will run on Windows too but the ANSI coloring may not work...Windows Program is given below the program for Linux (without ANSI coloring).For Linux (with ANSI coloring)use WWW::Mechanize;use HTTP::Cookies;use HTTP::Request::Common;$cj=HTTP::Cookies->new(file => "cookie.jar",autosave=>1,ignore_discard=>1);$mech ...
Published 4 years, 9 months ago

microsoftpowerpoint.exe win32 usb worm manual removal

http://digitalpbk.blogspot.com/2008/04/microsoftpowerpointexe-win32-usb-worm.html in the registry to unhide hidden files.HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer searchidden en 1HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer searchsystemdirs en 1HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced hidden en 1HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced showsuperhiden en 1HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced superhiden en 1HKEY_LOCAL_MACHINE ...
Published 3 years, 9 months ago

Firefox Browser within Browser

http://digitalpbk.blogspot.com/2007/01/firefox-browser-within-browser.html Firefox Browser within Browser Browser within Browser ? This effect is only for Mozilla Firefox. Pastechrome://browser/content/browser.xul into your address bar and press Enter.What? How?All interfaces on firefox are made on XUL's. The browser window you see is browser.xul, accessing that simply displays the browser window again as the content. Quoted from mozilla.org XUL is an XML grammar that provides user interface widgets like buttons, menus, toolbars, trees etc. User actions are bound ...
Published 5 years ago

Preventing the default Windows Messenger from running.

http://digitalpbk.blogspot.com/2006/12/preventing-default-windows-messenger.html Preventing the default Windows Messenger from running. To disable the in-built Windows Messenger on XP1. Login as administrator2. Start > Run3. Type gpedit.msc in the dialog box, Press Enter.4. Now you can see the "Group Policy" window, from the Tree View thats shown at the left, Select Computer Configuration to disable it for all users or Select User Configuration for disabling only for your account.5. Select Administrative Templates > Windows Components > Windows Messenger6 ...
Published 5 years, 2 months ago

Optimize Javascript files with Google Closure compiler

http://digitalpbk.com/javascript/optmizie-javascript-files-google-closure-compiler Optimize Javascript files with Google Closure compiler Optimize Javascript files with Google Closure compiler Google has released / open sourced one of its internal tools, the javascript closure compiler. The closure compiler is used to optimize javascript files. It works by analyzing the code and removing redundancies and shortening variable names. This tool can be used to compress javascript files, (similar to the famous packer), results in lesser code to download, execute, obfuscation and faster user experience. Since most web 2.0 or 3 ...
Published 2 years, 3 months ago

Related help topics for user agent mechanize More keywords like user agent mechanize
More pages for user agent mechanize


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Elephant Beach at Havelock Island Elephant Beach at Havelock Island in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk