Results 1 to 7 of 7

Thread: 30 day password reset

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Code:
    function SiteUniquePassword(const aSiteName: String): String;
    const
      PersonalConstant = 'ABCDEFG'; // Or something a bit better, always same
    var
      SomeEasyButUniqueMemoryRule: String;
    begin
      SomeEasyButUniqueMemoryRule := SpecialTransformRule(aSiteName);  // e.g. Capital Initial Letters + Counter.ToString;
      Result := PersonalConstant + SpecialTransformRule;
    end
    
    function SpecialTransformRule(const aSiteName:string):string;
    begin
      //  result = every second letter of domain reversed + PasswordInstance.ToString;
      result = every initial letter of full words of domain, reversed + PasswordInstance.ToString;
    end
    This is very easy to remember across all sites. Hard enough to crack. Even proof against 30 day reset.

    e.g.
    Raw
    Const = dog
    Domain = PasgalGameDevelopment
    Instance = 2 (now with new 30 day reset)

    Result
    dogDGP2

    P.S. You dont recall the suffix, just increment until it is right.

    P.S.S Won't do any good to crackers to know your password. Won't work on any other site.
    Last edited by Thyandyr; 14-07-2017 at 11:38 PM.

  2. #2
    I'm closing this thread! Why?
    Contents of this thread are publicly visible (you don't need to be registered or logged in) so talking about site security is basically revealing necessary information to potential hackers and therefore this thread as such is a security risk to PGD.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •