Find Virus Scanning/detection Algorithms?

Feb 2, 2010

Where I can find virus scanning/detection algorithms?

View 3 Replies


ADVERTISEMENT

C# - Does There Exist Any NON-GPL / AGPL Virus Scanning Library

Feb 18, 2011

Is there any C#/.NET code (or anything that is easily convertible to .NET, such as Java/Python) for virus scanning that is not under the GPL/AGPL ? I found a C# wrapper for ClamAV, but ClamAV is GPL... Something LGPL would already suffice, and as a matter of fact, would be something I prefer. Preferably something in fully managed code, but DllImport is also welcome. COM interop is a no-go, I need it cross-platform (=Windows & Linux).

View 1 Replies

Make A Virus Remover/scanner Deletes Files Og Scans For Virus?

Sep 24, 2009

i want to make a virus remover/scanner tht deletes files og scans for virus.. Just reply i you know some of codes or if you have a project.

View 15 Replies

Make A Virus Remover/scanner Tht Deletes Files Og Scans For Virus?

Sep 24, 2009

i want to make a virus remover/scanner tht deletes files og scans for virus.. Just reply i you know some of codes or if you have a project.VB2008/2010..

View 11 Replies

Way To Optimize My Algorithms

Sep 28, 2009

I had been working on a project that would generate a loan schedule.

But, It needs to factor in specified holidays and weekends.

Now, when running with a small 'term', it seems to work fine.[code]...

View 14 Replies

Encryptor / Decrypter Algorithms Need Checking

Jun 13, 2011

Problem: QuoteNeed to design a program in VB.net 2008 that can encrypt and decrypt messages stored in simple text files using a private key stored in a separate file. Software should also be able to allow the users to enter simple messages that either displays the encrypted or decrypted message. The encryption method should use a simple substitution method. It should be set out in the following format:

[Code]...

View 1 Replies

Implement Encryption And Decryption Algorithms?

Nov 30, 2010

How to implement encryption and decryption algorithms in vb.net? Which algorithm is the best suited one?

View 4 Replies

Sorting Algorithms Preferably Fastest

Jan 19, 2012

I am quite new at VB.NET and just need helo on sorting algorithms, prferbly the fastest (quick sort) but bubble would so. It is for sorting and array for 12 numbers, which are being enter by the user via a input box. These are then transfered onto a listbox for visual aid. so the steps involved would be: (already done)1) Enter then inputs into array via inputbox2) Input to sppear in listbox (not done)3) Sort the array ascending/decending4) print results into the listbox again.In my code there is also a total and a average, but that doesnt need any help on it. [code]

View 4 Replies

VS 2008 - How To Implement New Encryption Algorithms

May 28, 2009

I want to try and use the new encryption algorithms provided with .NET 3.5. Any links or examples for how to use one of them to encrypt xml content?

As written on msdn site is:
The following algorithms are included:
Advanced Encryption Standard (AES) with key sizes of 128 and 256 bits for encryption.
Secure Hash Algorithm (SHA-256 and SHA-384) for hashing.

Elliptic Curve Digital Signature Algorithm (ECDSA) using curves of 256-bit and 384-bit prime moduli for signing. This algorithm is provided by the ECDsaCng class. It allows you to sign with a private key and verify with a public key.

Elliptic Curve Diffie-Hellman (ECDH) using curves of 256 and 384-bit prime moduli for key exchange/secret agreement. This algorithm is provided by the ECDiffieHellmanCng class.

View 4 Replies

Secure(ish) Encryption/decryption Algorithms Using A String As A Key?

Aug 25, 2009

Is there a way to encrypt/decrypt text (string form) in VB.net using another string as a key? Meaning, if one user encrypts using this key, the other user needs to decrypt using the same key?I do NOT mean public and private key encryption or anything of the sort.If not, what is the second best way to encrypt/decrypt data without public/private keys?I want to make a simple way to send messages securely.

View 2 Replies

Write A Pseudocode For 2008 Programs / Algorithms?

Feb 9, 2010

How to write a pseudocode for vb.net 2008 programs/algorithms? is there any defined way?

View 2 Replies

Make Flowcharts To Describe Algorithms Used / Test Plans

May 4, 2009

i have a program(i already coded etc).Now i'm asked to make flowcharts to describe the algorithms used + test plans.Regarding flowcharts,how do i implement functions + procedures in them and about test plans--anyone knows or has some good site or notes so i know what i can do??

View 1 Replies

DB/Reporting :: Move Data (400 GB) Into Database Then Be Able To Run Various Algorithms Determining Correlations Of Time Series

Mar 12, 2012

I'm faced with a (fun, actually) data mining problem; I have raw ASCII files from instruments, and I want to move that data (~400 GB) into a database, then be able to run various algorithms determining correlations of time series, etc. I would like to write the mining algorithms in Visual Basic (.net, VS 2010 right now), and be able to do visualizations with VB code I have in hand.On the nature of the data: think of a set of several thousand devices, each recording a measurement at a given interval - so I'm talking time-series vectors. It's not more complex than that - though I may have vectors with holes, etc. - not sure what problems of that sort lurk in the data.I spent today re-acquainting myself with VB.NET's interface to (in one case) a Microsoft Access database. What used to be fairly simple - DAO I think it was - involved tables, recordsets, etc (and that would likely be fine). Now I seem to be required to have a weird variety of generally useless objects, e.g. 'adapters', 'datasets', etc. The problem is that I know exactly what I need, and all this extraneous stuff just gets in the way (certainly in coding complexity and opaqueness, and likely in efficiency as well). If any of these mechanisms gave me a kind of virtual access to the entire dataset, and let me control caching parameters, etc.it might be great, but I found nothing along those lines. It seems like useless bloat, though I suppose it must be useful to someone.Anyway, I tried a number of different approaches, and none seemed at all aimed at what I need to do: efficiently do math on a large dataset. I can't believe I'm the first to have this problem, but I can find no useful wisdom out there. I'd be comfortable with pretty much any underlying database mechanism: MySQL, SQL Server, MS Access, but ideally something generally SQL based (I may eventually have to transition this entire system to draw from a client's SQL database, though that's not an overriding concern now). Other than that I want simplicity and efficiency. I thought my old ODBC techniques would work, and to some extent they do, though modifying tables seemed to have bizarre problems (no errors, but not modifications either).

I do have a fairly aggressive deadline to show some algorithm results, so my focus in the short term is to get something reasonable working *in* the short term - in other words, it's less important to me to pick the 'fastest' relational database than it is to pick a database that lets me focus on coding the algorithms, not working through tedious data access coding. If this db could be any smaller, I'd have tried to do it all 'in memory' at least for proving concepts; I don't want to have to learn an entire jargon and approach just to be able to retrieve data points.Perhaps I'll need to bite the bullet and just write something myself, a .dll perhaps just to save and restore large time series vectors. It seems a bit frightening to me that one would have to do this in this age, what with all the database systems out there, but I don't have much time to work through arcane interface logic.

View 2 Replies

Timing Code - Measure The Performance Of Seven Sorting Algorithms In A Single VB 2008 Program

Sep 15, 2010

I'm trying to measure the performance of seven sorting algorithms in a single VB 2008 program. I've tried using a Timer componend, the Stopwatch, and DateTime.Ticks but nothing works. The following simple code produces a result of about 500 (milliseconds), which is correct, but when I change 500 to 1000, I get a ridiculous result like 0 or 8.

[Code]...

View 11 Replies

How To Use Scanner For Scanning

Oct 29, 2009

I've installed visual studio 2008.is the visual basic in that package known as VB.net? My 2nd question: how can i use scanner for scanning using VB.net?do i have to use WIA? or i can use the default program for scanning?

View 1 Replies

WIA Scanning With ADF Scanners?

Feb 15, 2012

I have been messing around with the scanning packages(WIA and TWAIN) and have gotten WIA to work, but not as intended. At first I used the common dialog to show a Image Aquisition Wizard, but that did not return desired results. Next was twain, but st managed to find was the same C# program over and over and over again, "TwainGUI". A program written by NETMaster on codeproject.What I would like to do is scan from the ADF and save immediately to the users working directory. The problem is I can't get WIA to keep scanning until the ADF is empty.

Psudo Code:
Start:
"Set scan settings"

[code]....

View 2 Replies

Debug The Button Virus?

Apr 2, 2012

every time i hit debug my avg shows i got two trojan viruses this just started happening recently... if i hit the debug button Trojan.Horse.PSWAgent.Auru will display on my screen i tried uninstalling and reinstalling it and still has the same issue...ran a few scans with avg , malwarebytes?

View 5 Replies

Make A Virus Remover?

Sep 16, 2009

i wanted to make a virus remover..

View 6 Replies

Possibility Of Scanning Document

Oct 23, 2008

I am ask about the possibility of scanning document (by scanner) from within vb.Net with vb6 I used Kodak image controls(imgscan, imgedit) but with vb.net it seems that they are not working properly.

View 3 Replies

Scanning An Image From Scanner?

Mar 4, 2009

How I can use scanner to scan an image and put it in PictureBox using VB.NET

View 4 Replies

Scanning From Twain Driver?

Jan 28, 2011

So - we are FED UP with our medical records packaging (document imaging) system and want to create a simple filing interface for our scanners to use in VB. Part of this deal is getting VB to interact with a TWAIN Driver.

There is some code out there for ASP.NET and C# - does anyone know of a VB.Net based code I could look at?

I have spent part of my day trying to recreate the ASP into VB but the calls are just different enough to get interesting.

View 5 Replies

Scanning The Computers In Network?

May 18, 2012

how to program an application that scans the computer in the network in vb.net?

View 3 Replies

Scanning Through All Instances Of An Object?

Nov 6, 2009

Is it possible to look for all current instances of a specified object without specifically IDing each instance as it's created?

View 12 Replies

Scanning With TWAIN - Hide The UI

Feb 18, 2010

I am making an application to scan with TWAIN. I can get to state 4 OK, and scan with the UI. But I need to hide the UI. When I do this the scanner does nothing. I believe it needs some capabilities set (like height and width). So I try to get the physical height and width so I can set them. Herein lies the problem. I get 18874402 back for the physical height and width. (neither can I get the units). I get RC=SUCCESS. I don't think it could be a signed/unsigned issue because what boundary is at 18 million +/- with whatever units? I tried some other code I found but that returns 0. I can't figure out what I am doing wrong. Here's the code:

[Code]...

View 8 Replies

VB Applications Gets Detected As Virus?

Feb 25, 2009

Then i downloaded C4F (Code 4 Fun) an application that's allow you to make Peer2Peer Applications using the PNRP.

So then i made a simple chat (Must say you do not need to fill in any code at all for this chat system) then i compile the source code to an *.exe file and everything seems fine at this stage.

But now the problem accours, when im am sending my chat application to my friends they got an alert about it's a virus im sending them. but when the file is on my own system it dosent say anything at all, and i have AVG Pro Edition & OutPost Firewall 2009 with lifetime license. and all my Anti Virus / Spyware Engine is up to date.

I have been writing on another forum on the internet but they just told me that my system was infected with a virus and that was the problem. s� ive completely deleted my whole system, and installed the Windows XP Professionel again.

But i i stil have the same problem? any one knows whats going on here. i cant post anycode for this cause you don't need any code for making a Chat application in C4F, Basicly it loads a C4F project in to Visual Basic Studio 2008 with no source at all.

View 3 Replies

VS 2005 Bin Folder Virus?

Aug 16, 2010

I just want to ask if you have encountered that the anti-virus treat the .exe files in bin folder as virus threat....If you have, can you please tell me what to do?

View 12 Replies

VS 2008 Scanning For A Thumbdrive

Nov 9, 2009

So I got a request to update specific information on a thumb drive from my program. The idea is that the user does not have to select the drive. If you plug it in and select and option on the program, it will find the drive automatically and update some files for my specific purpose. Is there a way to automatically find a drive in a program?

View 1 Replies

VS 2010 How To Make The .exe Without Seeming Like A Virus

Jan 14, 2012

since i started to vb i made several exe files and when i tried to show them to my friends or someone else but every single time i got the "Virus!" label stuck to my program.. i mean antivirus programs ran alarms and screamed "Are you nuts ?! Its a VIRUS!!" and i dont want that happen... how can i prevent this to happen??

View 9 Replies

Built-in TWAIN Scanning Library In .Net 4 To Use It In .NET?

Jun 1, 2012

I would like to know if there is a built-in TWAIN Scanning library in .Net 4 to use it in VB.NET.

View 1 Replies

Connect A Scanning Device To A Computer Using .net?

Jan 29, 2011

How can i connect a scanning device to a computer using .net? Code 128.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved