Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Hacked Hotmail

Hacked Hotmail

Scheduled Pinned Locked Moved The Lounge
questiontutorial
21 Posts 13 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Kristian Sixhoj

    I *think* you missed the joke icon. :)

    :bob: Kristian Sixhoej Growing old is mandatory; growing up is optional. - Chili Davis


    My latest tip/trick: Dragging a Borderless Form[^]

    V Offline
    V Offline
    Vasudevan Deepak Kumar
    wrote on last edited by
    #10

    It isn't a joke. Having passwords like 'password1', '123' is not going to serve anything. A simple console application can generate passwords and give us. Of course I admit these passwords be remembered by storing elsewhere like an encrypted XML file.

    Vasudevan Deepak Kumar Personal Homepage
    Tech Gossips
    The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep!

    K 1 Reply Last reply
    0
    • V Vasudevan Deepak Kumar

      It isn't a joke. Having passwords like 'password1', '123' is not going to serve anything. A simple console application can generate passwords and give us. Of course I admit these passwords be remembered by storing elsewhere like an encrypted XML file.

      Vasudevan Deepak Kumar Personal Homepage
      Tech Gossips
      The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep!

      K Offline
      K Offline
      Kristian Sixhoj
      wrote on last edited by
      #11

      I wasn't referring to your post, because you are absolutely right in what you said. It was the post you replied to I was talking about. :) But yes, I think we can all agree how important it is to have strong/random passwords. Unfortunately, there will always be some fools out there who think their birthday, phone no. and so on are good enough.

      :bob: Kristian Sixhoej Growing old is mandatory; growing up is optional. - Chili Davis


      My latest tip/trick: Dragging a Borderless Form[^]

      V 1 Reply Last reply
      0
      • K Kristian Sixhoj

        I wasn't referring to your post, because you are absolutely right in what you said. It was the post you replied to I was talking about. :) But yes, I think we can all agree how important it is to have strong/random passwords. Unfortunately, there will always be some fools out there who think their birthday, phone no. and so on are good enough.

        :bob: Kristian Sixhoej Growing old is mandatory; growing up is optional. - Chili Davis


        My latest tip/trick: Dragging a Borderless Form[^]

        V Offline
        V Offline
        Vikram A Punathambekar
        wrote on last edited by
        #12

        Have you seen Big Bang Theory? VDK is a bit like Sheldon, sarcasm-impaired and irony-impaired. :)

        Cheers, विक्रम (Got my troika of CCCs!) "cant stand heat myself. As soon as its near 90`F I seriously start to loose interest in doing much." - fat_boy. "Finally we agree, a little warming will be good if it makes you shut the f*** up about it." - Tim Craig.

        1 Reply Last reply
        0
        • K KenBonny

          My hotmail has been hacked. I know so because my password doesn't work and my secret question is full of chinese characters. Since I'm from Belgium and I don't have a special keyboard, this is not my doing. Since I have a couple of important emails in there, can any of you give me any ideas on how to get my address back?

          S Offline
          S Offline
          saiyuk6 7
          wrote on last edited by
          #13

          you could use TrueCrypt to store your passwords, and generate a password using SHA256/8 = 32 (Digest Size) * 2 = 64 Characters in HEX string. because TrueCrypt max password string is 64 length, but you can also use a Keyfile this generates a pretty strong password, and if anything you could replace a few characters with symbols it SHA256 ^ MD5 +=2 Stepping

          #include <stdio.h>
          #include <string.h>
          #include "sha2.h"
          #include "md5.h"

          void Password_Create(char *pPass)
          {
          sha256_ctx sha256;
          MD5_CTX md5;
          unsigned char bzDigest[SHA256_DIGEST_SIZE];
          int iSize = strlen(pPass);

          MD5Init(&md5);
          sha256_init(&sha256);

          MD5Update(&md5, (unsigned char*)pPass, iSize);
          sha256_update(&sha256, (unsigned char*)pPass, iSize);

          MD5Final(&md5);
          sha256_final(&sha256, bzDigest);

          for (int i = 0; i < 64; i += 2)
          bzDigest[i/2] ^= md5.digest[i/4];

          printf("\nSHA256^MD5 : ");

          for (int i = 0; i < 32; i ++)
          printf("%02.2X", bzDigest[i]);
          }

          int main(int argc, char *argv[])
          {
          if (argc > 1)
          Password_Create(argv[1]);
          }

          There is also a program called KeePass which is pretty good as well, it can help generate pretty strong passwords Im not sure what the maximum length for Hotmail passwords are, if anything you can copy/splice the results hope that helps

          J 1 Reply Last reply
          0
          • A AspDotNetDev

            It's really easy to remember. It's the same as my email address.

            [Forum Guidelines]

            K Offline
            K Offline
            KenBonny
            wrote on last edited by
            #14

            I took two random letters from my name and 4 numbers. I'm currently busy changing all my passwords to other passwords that have at least 10 or 11 letters and numbers in it. Just saw that my WoW account has been taken over as well. I haven't played in over a year, but still. It's mine and I want it in tact.

            B D 2 Replies Last reply
            0
            • K KenBonny

              I took two random letters from my name and 4 numbers. I'm currently busy changing all my passwords to other passwords that have at least 10 or 11 letters and numbers in it. Just saw that my WoW account has been taken over as well. I haven't played in over a year, but still. It's mine and I want it in tact.

              B Offline
              B Offline
              BarrRobot
              wrote on last edited by
              #15

              Password Safe http://pwsafe.org/[^] is what I use to generate and keep all of mine.

              K 1 Reply Last reply
              0
              • S saiyuk6 7

                you could use TrueCrypt to store your passwords, and generate a password using SHA256/8 = 32 (Digest Size) * 2 = 64 Characters in HEX string. because TrueCrypt max password string is 64 length, but you can also use a Keyfile this generates a pretty strong password, and if anything you could replace a few characters with symbols it SHA256 ^ MD5 +=2 Stepping

                #include <stdio.h>
                #include <string.h>
                #include "sha2.h"
                #include "md5.h"

                void Password_Create(char *pPass)
                {
                sha256_ctx sha256;
                MD5_CTX md5;
                unsigned char bzDigest[SHA256_DIGEST_SIZE];
                int iSize = strlen(pPass);

                MD5Init(&md5);
                sha256_init(&sha256);

                MD5Update(&md5, (unsigned char*)pPass, iSize);
                sha256_update(&sha256, (unsigned char*)pPass, iSize);

                MD5Final(&md5);
                sha256_final(&sha256, bzDigest);

                for (int i = 0; i < 64; i += 2)
                bzDigest[i/2] ^= md5.digest[i/4];

                printf("\nSHA256^MD5 : ");

                for (int i = 0; i < 32; i ++)
                printf("%02.2X", bzDigest[i]);
                }

                int main(int argc, char *argv[])
                {
                if (argc > 1)
                Password_Create(argv[1]);
                }

                There is also a program called KeePass which is pretty good as well, it can help generate pretty strong passwords Im not sure what the maximum length for Hotmail passwords are, if anything you can copy/splice the results hope that helps

                J Offline
                J Offline
                Joe Woodbury
                wrote on last edited by
                #16

                I tried KeePass and then forgot the password to it.

                S 1 Reply Last reply
                0
                • K KenBonny

                  My hotmail has been hacked. I know so because my password doesn't work and my secret question is full of chinese characters. Since I'm from Belgium and I don't have a special keyboard, this is not my doing. Since I have a couple of important emails in there, can any of you give me any ideas on how to get my address back?

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #17

                  u still use hotmail in google world :O

                  Ravi S Coding is my birth-right and bugs are part of feature my code has! _________________________________________ Me  Facebook  Twitter

                  1 Reply Last reply
                  0
                  • B BarrRobot

                    Password Safe http://pwsafe.org/[^] is what I use to generate and keep all of mine.

                    K Offline
                    K Offline
                    KenBonny
                    wrote on last edited by
                    #18

                    I'm keeping my pw's now in a text file in an AES-Twofish encrypted TrueCrypt file.

                    B 1 Reply Last reply
                    0
                    • K KenBonny

                      I'm keeping my pw's now in a text file in an AES-Twofish encrypted TrueCrypt file.

                      B Offline
                      B Offline
                      BarrRobot
                      wrote on last edited by
                      #19

                      I used to do exactly that (and I still keep all my sensitive files in Truecrypt volumes) but Password Safe is a tool designed for a specific task, and I find its special features (copy User ID or password to clipboard, password subset - i.e. extracts 3rd, 4th & 7th character or whatever, and random password generation) really quite handy. I doubt if it's any more or less secure than Truecrypt using AES-twofish, because it also uses twofish and was originally written by Bruce Schneier, who invented twofish (with others).

                      1 Reply Last reply
                      0
                      • K KenBonny

                        I took two random letters from my name and 4 numbers. I'm currently busy changing all my passwords to other passwords that have at least 10 or 11 letters and numbers in it. Just saw that my WoW account has been taken over as well. I haven't played in over a year, but still. It's mine and I want it in tact.

                        D Offline
                        D Offline
                        Dan Neely
                        wrote on last edited by
                        #20

                        Before you do anything else you need to do a full court malware sweep. On keylogger and all your effort now will be for naught.

                        3x12=36 2x12=24 1x12=12 0x12=18

                        1 Reply Last reply
                        0
                        • J Joe Woodbury

                          I tried KeePass and then forgot the password to it.

                          S Offline
                          S Offline
                          saiyuk6 7
                          wrote on last edited by
                          #21

                          well KeePass allows you to use external Key Files, it gives you several options how you want to protect it, just like True Crypt difference between KeePass and TruCrypt is, keepass is just a password database, and TruCrypt allows you to create mini or hdd images, or convert a partition into a protected hdd etc..

                          1 Reply Last reply
                          0
                          Reply
                          • Reply as topic
                          Log in to reply
                          • Oldest to Newest
                          • Newest to Oldest
                          • Most Votes


                          • Login

                          • Don't have an account? Register

                          • Login or register to search.
                          • First post
                            Last post
                          0
                          • Categories
                          • Recent
                          • Tags
                          • Popular
                          • World
                          • Users
                          • Groups