Page 2 of 3
Posted: Wed Apr 12, 2006 7:45 pm
by blueznl
i'd suggest to take one program and work on one program at a time
i wouldn't bother too much about other people using it, part of the fun is writing it, as long as you like working on then it it's worth working on it!!
Posted: Wed Apr 12, 2006 7:49 pm
by Inf0Byt3
Ok! Thx for the tips. I'll begin the work. In fact, there will be many users using it if I manage to make it work fine. I'll try to make it bloat-free

. If anybody wants to share its ideas and\or code with me regarding this, please gimme a shout

. Maybe this will become something really cool.
Posted: Fri Apr 14, 2006 10:09 pm
by Inf0Byt3
I made a small design for the control center. If you have any suggestions... Hope ya like it

Posted: Fri Apr 14, 2006 10:10 pm
by Killswitch
That's pretty sweet

.
Posted: Fri Apr 14, 2006 10:14 pm
by Inf0Byt3
Thanks. I am starting the official work tomorrow

. Should Linux be supported?
Posted: Fri Apr 14, 2006 10:19 pm
by Killswitch
I don't think there are that many viruses for Linux...
Posted: Fri Apr 14, 2006 10:22 pm
by Inf0Byt3
Yes, you're right... Maybe in the future

...
Posted: Sat Apr 15, 2006 1:26 am
by rsts
That is a slick control panel.
cheers
Posted: Sat Apr 15, 2006 6:02 am
by ricardo
The most importants things in an AV IMHO is behind the security, the fast scann and don't take much CPU.
How are your app about that?
Posted: Sat Apr 15, 2006 12:40 pm
by Inf0Byt3
I only tested it with small databases (1000 threats inside) and it was working fine, it was consuming around 3,5 Mb of RAM and 5-7% of the CPU. The scan is fast enough, but it depends on how many threats are contained in the database. Currently, I am beginning to create the window layout, etc. and after that I'll concentrate on the scanning engine.
Posted: Mon Apr 17, 2006 3:09 am
by dagcrack
you shouldnt care of how a program will look like... you must care of its core first. Because at the end, you're suposely alone on this (You don't have a paid team to give schedules and tasks, right) So you cant have the luxury of making the GUI first as if someone else was working on part of the core, another guy on the other part, etc...
Most important thing here is the core, which you should take care of. Heck, let it be a command line application until the core is nearly done to your expectations for release 1, then go ahead make a gui!.
Just my 2 lecops

Posted: Mon Apr 17, 2006 7:46 am
by blueznl
everyone his own approach

i tend to design functionality first, then gui, then fool around a little with some procedures, then event framework including gui, and details, and then i mess around so much with the code noone can recognize it's original purpose anymore...
Posted: Tue Apr 18, 2006 1:47 am
by Inf0Byt3
Ok, I'll skip the GUI part for now

. Concentrating on the core... I dunno why, but I think I will never finish this

But whatta hell, I gotta do something with my free time

so I'll keep lying myself like I allways did.
Inf0Byt3 starts singing: I'm gonna build an AV, ... using PB 
Posted: Wed Apr 26, 2006 8:22 am
by Inf0Byt3
I made a very small script interpreter a few weeks ago and I was thinking to integrate it in PureAV. This would be the first antivirus toolkit that uses AI to detect malware, something like a heuristical detection. What do you think?
Posted: Sun Apr 30, 2006 12:13 pm
by Inf0Byt3
I am making progresses but I don't know what approach to use to do the signature scanning. I currently load all the signatures in an array, read the header of the file to be scanned and I use ReversedMemory search to match the array with the contents of the file. I tested it and it works perfectly, 100% detection, but it's a bit slow... Any suggestions or ideas greatly appreciated.