Viewing 15 posts - 91 through 105 (of 871 total)
Michael Meierruth (2/3/2014)
February 3, 2014 at 1:50 pm
Michael Meierruth (2/3/2014)
Just out of curiosity what exactly does this mean:
REPLACE(pc.[Password],'_Replace_',sl.name)
Also, how exactly will you login to 250 or so instances to run this and gather the data into a...
February 3, 2014 at 11:53 am
Indeed a good thought Lowell. My colleague was thinking the same thing last week. I didn't have much luck with a performance gain then; however your post inspired me to...
February 3, 2014 at 9:26 am
Michael Meierruth, SQL2000 and later.
My current test case is running on a SQL2012 instance with 8 logins, comparing to 10,000 + reverse = 90 second run. I think it's because...
February 3, 2014 at 9:08 am
Michael Meierruth (1/30/2014)
Adam, just out of curiosity, how many servers and logins are you dealing with?
Fluctuates daily; however based on current inventory ... 242 instances, 6,974 logins.
January 30, 2014 at 2:24 pm
That sounds pretty awesome Nadrek ... and way more effective. This SQL function is incredibly poor performing and obviously limiting. Do you have anything already built to leverage this oclHashcat?...
January 30, 2014 at 1:32 pm
Thanks Nadrek, I'll check that out later. For now I want to wrap up this current version and figure out how to resolve this damn duplicate ...
January 30, 2014 at 12:03 pm
Nadrek (1/30/2014)
January 30, 2014 at 9:56 am
Lowell (1/30/2014)
if '0001'...
January 30, 2014 at 9:44 am
So what if any resolution is there?
In the example that this account has a password of 0001, and that's stored in the password list ... the reverse of that is...
January 30, 2014 at 9:31 am
So I've been working on rewriting this to hit a table of known bad passwords and running into a snag.
LEFT JOIN dbo.[PasswordCheckerList] pc
ON PWDCOMPARE(pc.[Password], sl.[password_hash]) = 1
OR PWDCOMPARE(REVERSE(pc.[Password]), sl.[password_hash]) =...
January 30, 2014 at 8:35 am
Lowell,
This is great, I have many ideas already on how to expand this pretty intensely.
That's exactly what I needed, I didn't realize PWDCOMPARE was out there! Unfortunately though, looks...
January 29, 2014 at 11:58 am
Michael Meierruth (1/29/2014)
So what you're saying is that this software makes attempts to login using some sort of dictionary of...
January 29, 2014 at 11:44 am
Matt Crowley (1/21/2014)
January 21, 2014 at 9:12 am
Lynn Pettis (1/21/2014)
Can you post the links you have that relate to reindexing causing duplicate records? I have never experienced this issue.
Hey Lynn, it's not the act of reindexing...
January 21, 2014 at 9:09 am
Viewing 15 posts - 91 through 105 (of 871 total)