Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
3
Downvoting Members
4
0 Endorsements
~3K People Reached
Favorite Tags
c++ x 34
Member Avatar for dzhugashvili

Hello. A while back I wrote a program called 'divvy' ([URL="http://www.cerberusgate.com/divvy.zip"]http://www.cerberusgate.com/divvy.zip[/URL]) in C++. It works fine on my system, but I have received several complaints that it does not work on other systems. This is the error: [QUOTE]Error: The Side-by-Side configuration information for "C:\DIVVY.EXE" contains errors. This application has failed …

Member Avatar for dzhugashvili
0
221
Member Avatar for dzhugashvili

I have this code which I need to be compiled in 64-bit mode but have no 64-bit capable compiler. First of all, could somebody compile this code for me and put the executable on filedropper.com or something? And second of all, does anybody know of a free 64-bit capable compiler …

Member Avatar for dzhugashvili
-4
110
Member Avatar for dzhugashvili

I currently am using the optimized scaler 32-bit md4 and md5 implementations from here: [URL="http://freerainbowtables.com/phpBB3/viewtopic.php?p=8454#p8454"]http://freerainbowtables.com/phpBB3/viewtopic.php?p=8454#p8454[/URL]. I am get ~8.1million hashes/second for md4, ~6.6million for md5. I am looking for a sse2-accelerated implementation for core 2, primarily md5 - which is easy to implement and at the very least twice as …

Member Avatar for dzhugashvili
-1
145
Member Avatar for dzhugashvili

hello. I need help implementing an SSE2-accelerated MD4 implementation. I found one that I think may work at [URL="http://www.freerainbowtables.com/phpBB3/viewtopic.php?f=6&t=904&start=30"]http://www.freerainbowtables.com/phpBB3/viewtopic.php?f=6&t=904&start=30[/URL] it is the post by Corni: [QUOTE]“So, I took a crashcourse in how to implement MD4 and in what the hell is SSE2 and how do you use it, and implemented …

Member Avatar for dzhugashvili
0
138
Member Avatar for dzhugashvili

hey, I am writing a password cracker. But I now have been thinking about separating the word generator from the actual encrypt and check function (for the sake of flexibility and convenience). I noticed John the Ripper does some operations like this. I was thinking something like this: [CODE]wordgen --stdout …

Member Avatar for dzhugashvili
0
300
Member Avatar for dzhugashvili

I have this code: [CODE] #include <iostream> #include <string> #include <vector> #include <algorithm> #include <fstream> #include <stdlib.h>//(for atoi to work) using namespace std; void usage() { cout << "Usage: <input1> <input2> <output>\n"; cout << "\n see README for more details.\n"; exit(1); } int main(int argc, char *argv[]) { cout << …

Member Avatar for dzhugashvili
0
142
Member Avatar for dzhugashvili

Here is my code: [CODE]#include <iostream> #include <string> #include <vector> #include <algorithm> #include <fstream> #include <stdlib.h>//(for atoi to work) using namespace std; void usage() { cout << "Usage: <input1> <input2> <output>\n"; cout << "\n see README for more details.\n"; exit(1); } int main(int argc, char *argv[]) { cout << "\nshmoosh …

Member Avatar for Ancient Dragon
0
135
Member Avatar for dzhugashvili

Hello. I am working on a Kerberos 5 preauth password recovery tool. Part of an algorithm optimization involves checking the decrypted timestamp to make sure that it equals the year that the packet was recovered before continuing to compute a checksum. If the timestamp does not equal the year the …

Member Avatar for dzhugashvili
0
533
Member Avatar for dzhugashvili

alright, so I recently obtained a reference implementation of MD5. I benchmarked it, and it ran about 30% faster than OpenSSL's MD5. The function call is as such: [CODE]fast_MD5(unsigned char *pData, int len, unsigned char *pDigest);[/CODE] it worked great for a simple MD5 hash cracker, but I had trouble tweaking …

Member Avatar for dzhugashvili
0
120
Member Avatar for dzhugashvili

here is what I want to do: I want to read 104-character strings from a text file, one per line. I want to chop those strings in two, the first 32 characters being a string called schecksum and the last 72 characters being a string called sencdata. Then I want …

Member Avatar for dzhugashvili
0
160
Member Avatar for dzhugashvili

Hey, I was wondering if anybody had code to implement mscache. Writing an mscache password recovery tool. I know how to use OpenSSL to turn a plaintext into an NTLM hash, but I don't know how to do it from there. Anybody have any idea how to convert the username …

0
58
Member Avatar for Clockowl

Hey guys, I'm trying to create an MSCache (2 times MD4) cracker. I took the RFC thingy and implemented it in a cracker which is.. fast, but not as fast as I'd like it to be. So I searched a bit and stumbled on MDCrack, which claims it can do …

Member Avatar for dzhugashvili
0
458