Not MD5 - What Chaacters are these ? MySQL [closed] - mysql

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
please check the below images... i have download a script from internet. and when i am registering in forunt end. it is saving login and passwords in some format (not md5)
actually the 1st and 3rd password is different.. but it looks like same.. i am confused.. please have a look on image below.
login and passwords in db
test test
vishnu vishnu
test2 test1
1) i.stack.imgur.com/Oo4mK.png
2) i.stack.imgur.com/8w4E4.png
SCRIPT I USED : http://sourceforge.net/projects/oes/

It uses MySQL's ENCODE and DECODE functions with a salt of oespass. This is, by the way, very bad.

Related

decrypt passwords in database stored in hash code [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I wonder is there any way to decrypt passwords in sql database in an clear plain text that which already stored in HASH code?? if so can anyone explain me.
Thank you.
It depends on the hashing algorithm used, but given that it's hashed at all, then a one way function has almost certainly been used, which means you can't decrypt it easily.

How to access active directory with perl [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have never done anything like this... So here it goes.
I need to be able to submit (at one time) roughly 300 user ids and get back their name and email address... The company has all this info in active directory.
Does anyone have any idea how this would work with Perl, or really any language? I don't even know what type of UI I would need, and how to actually connect to AD to get the requested information..
Any and all help is appreciated!
you can connect to Microsoft AD with Net::LDAP - Lightweight Directory Access Protocol

How to Integrate Robotium test cases and Testlink, also send the result back to testlink [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Testlink is a test management tool and i want to trigger robotium test cases from testlink and get the result back to testlink..Any help would be appreciated
The easiest way I know of is to use the Test Link plugin for jenkins.
You basically map the name of the junit test to the test in testlink and it will automatically bring across the results.

Why cannot a breakpoint be set at this location? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Please have a look at this screenshot of IntelliJ IDEA. Why is the breakpoint not valid in the middle line?
I'm assuming that you are setting breakpoint(s) while debugging. In that case, I think the running binary isn't matching the code--browser cache, swf/swc being picked from wrong location to name a few reasons to get into such situation.
Can you try hitting the third breakpoint (2nd valid one) and check if temp is showing correct value as you'd expect (the reason I think it would work is that temp is a local variable and hence its value should be available when swf/swc is actually executing that piece of code.

Speedup webpage [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I test speed of my site loading and the result give me the answer for my site's low speed loading is .......
Resources with a "?" in the URL are not cached by some proxy caching servers. Remove the query string and encode the parameters into the URL for the following resources:
http://mydomain1.com/css/layout.css?v2.2
here how can i Remove the "?" from the above link and encode the parameter into the url.??
That message means you should do it like:
http://mydomain1.com/css/layout.css/v2.2
Using a / instead of a ?. How you achieve to parse this on server side depends on the technology you are using.