|
-
Jul 18th, 2012, 07:29 AM
#1
Thread Starter
Addicted Member
Anyone has a MD5 Virus DataBase?
Hello, If anyone has a MD5 database of md5 virus signatures can you please give me it? It would be veerryy appreciated
-
Jul 18th, 2012, 09:29 AM
#2
Re: Anyone has a MD5 Virus DataBase?
Moved to the General PC forum
-
Jul 18th, 2012, 04:19 PM
#3
Thread Starter
Addicted Member
Re: Anyone has a MD5 Virus DataBase?
ok ty, i couldt find this section:/
-
Jul 18th, 2012, 07:04 PM
#4
Re: Anyone has a MD5 Virus DataBase?
Not sure if the Clam database is what you're after?
Edit:
I just found this on you tube.
Last edited by Nightwalker83; Jul 18th, 2012 at 07:08 PM.
Reason: Adding more!
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Jul 18th, 2012, 07:14 PM
#5
Thread Starter
Addicted Member
Re: Anyone has a MD5 Virus DataBase?
on the youtube video his link to donwload it is broken:/ Soo i cant get all his MD5 virus signatures
But where is Clam's MD5 virus signatures database? I see main,daily,bytecode,and safebrowsing .cvd files buutt idk how to open .cvd files and idk if even those are the right things:/
-
Jul 18th, 2012, 07:25 PM
#6
Re: Anyone has a MD5 Virus DataBase?
If you download the VB10 project link to on the above video and unzip it there is a text file called "viruslist.txt" located in the "Debug" directory of the "Bin" folder. I don't know if that is what you are looking for?
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Jul 18th, 2012, 07:38 PM
#7
Thread Starter
Addicted Member
Re: Anyone has a MD5 Virus DataBase?
You my friend are absoluetly amazing Do you think you can help me with a "Scan whole Computer" button? Becuase atm, i only have it 'open a file' and then 'scan file'? You dont have to help me if u dnt wana or dont hav time.
-
Jul 18th, 2012, 08:10 PM
#8
Re: Anyone has a MD5 Virus DataBase?
If you are able to download the VB10 project that should have everything you are looking for.
Edit:
If you need help with the coding I suggest starting a new thread in the VB6 section and just link back to this thread since "General PC" is not the place to ask coding questions.
Last edited by Nightwalker83; Jul 18th, 2012 at 08:14 PM.
Reason: Adding more!
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
Jul 22nd, 2012, 01:10 PM
#9
Fanatic Member
Re: Anyone has a MD5 Virus DataBase?
may sound like a stupid question, but why use md5 of the file to find viruses? there are only 32^16 (approximately 1208925819614629174706176) possible md5 checksums, and there are close to infinite (well a lot of) possible codes.. so some programs might collide with the checksums of the virus? or am i totally wrong on the subject?
-
Nov 29th, 2012, 03:58 AM
#10
New Member
Re: Anyone has a MD5 Virus DataBase?
 Originally Posted by Justa Lol
may sound like a stupid question, but why use md5 of the file to find viruses? there are only 32^16 (approximately 1208925819614629174706176) possible md5 checksums, and there are close to infinite (well a lot of) possible codes.. so some programs might collide with the checksums of the virus? or am i totally wrong on the subject?
MD5 is fine... CRC, or some other hashing thingy can be used as well, but the hashing limit (unique hashes) of MD5 is very very high, & not achievable by any human means for centuries to come. lol 
1.2+ Septillion (1,200,000,000,000,000,000,000,000) there isn't even that many strands of hair on the planet - be it from man, or beast, or even combined, & quadrupled.
Would be nice if my cheque book had this feature... 
However, it has since been shown that MD5 is not collision resistant, & 2 or more different files CAN share the SAME MD5 hash value.
I think the best way to get signatures via hashes is to run a free public virus scanning site, & have multiple scanning engines return their results (to the page) of the file submitted for scanning,
& save it's first "detected as" name, file size, MD5, Sha-1, & SHA-2 Hashes. I'd advise you to use SHA-2. I think you'll have to manually choose a name for each new file detection
hash signature in your list... something like Worm.crappy-File.6, or BAT.crappy-File.19, because this is the only way to generate an official database of MILLIONS of hash sigs, & will
cause accusations to start flying around about stealing (hacking/decoding) definition data files from some of the well known AV companies out there when you use your new signatures in a
new product you create - that returns some other company's virus names.
You can name them after the first result name returned by the scanners, or just make them up. Who cares, but they should be similar to what the threat actually is...
like worm, bat, info-stealer, hacktool, pdf.exploit or whatever.
If you want to go legit, this is the way to get there FAST.
ps: This is an old post, but Google doesn't care about that
-
Nov 29th, 2012, 08:35 AM
#11
Fanatic Member
Re: Anyone has a MD5 Virus DataBase?
 Originally Posted by DTeCH
MD5 is fine... CRC, or some other hashing thingy can be used as well, but the hashing limit (unique hashes) of MD5 is very very high, & not achievable by any human means for centuries to come. lol
1.2+ Septillion ( 1,200,000,000,000,000,000,000,000) there isn't even that many strands of hair on the planet - be it from man, or beast, or even combined, & quadrupled.
Would be nice if my cheque book had this feature...
However, it has since been shown that MD5 is not collision resistant, & 2 or more different files CAN share the SAME MD5 hash value.
I think the best way to get signatures via hashes is to run a free public virus scanning site, & have multiple scanning engines return their results (to the page) of the file submitted for scanning,
& save it's first "detected as" name, file size, MD5, Sha-1, & SHA-2 Hashes. I'd advise you to use SHA-2. I think you'll have to manually choose a name for each new file detection
hash signature in your list... something like Worm.crappy-File.6, or BAT.crappy-File.19, because this is the only way to generate an official database of MILLIONS of hash sigs, & will
cause accusations to start flying around about stealing (hacking/decoding) definition data files from some of the well known AV companies out there when you use your new signatures in a
new product you create - that returns some other company's virus names.
You can name them after the first result name returned by the scanners, or just make them up. Who cares, but they should be similar to what the threat actually is...
like worm, bat, info-stealer, hacktool, pdf.exploit or whatever.
If you want to go legit, this is the way to get there FAST.
ps: This is an old post, but Google doesn't care about that 
Welcome to the forums! I'm glad you took your time to register and answer my post this answers my question, in very good detail. thank you.
-
Nov 29th, 2012, 05:13 PM
#12
Re: Anyone has a MD5 Virus DataBase?
Maybe there's a way to get the list used by VirusTotal?
-
Nov 29th, 2012, 08:37 PM
#13
Re: Anyone has a MD5 Virus DataBase?
@tr333,
Emailed them about it waiting for a response.
Edit:
Here is the response I received!
Hello,
This is not something that we make available.
Regards.
Last edited by Nightwalker83; Nov 30th, 2012 at 02:36 AM.
Reason: Adding more!
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|