English Amiga Board


Go Back   English Amiga Board > Main > Amiga scene

 
 
Thread Tools
Old 10 January 2010, 11:06   #1
fuzzylogic
Registered User
 
Join Date: Jan 2010
Location: Germany
Posts: 67
Wink Amiga Virus Encyclopedia Project

Hello dudes,

just registered here to say please support the Amiga Virus Encyclopedia - a site dedicated to Amiga viruses. If you have a virus we are searching for please don't hesitate to send them over to us or if you want to inform youself about some of these nasty codepieces just visit us, too at http://ave.teyko.com.

Cheers!
fuzzylogic is offline  
Old 10 January 2010, 11:45   #2
pmc
gone
 
pmc's Avatar
 
Join Date: Apr 2007
Location: completely gone
Posts: 1,596
Nice site fuzzylogic.

Hope I'm not missing something obvious - what does the column with the percentages far right indicate?

Also, as a bit of info for you, on your detailed description of the Disk Doctors boot block virus there's a code fragment with:

Code:
cmpi.w     #$101,$dff00c
which by my calculation is equivalent to holding forward *and* back on the joystick at the same time ie. an impossible combination.

Hope that helps...
pmc is offline  
Old 10 January 2010, 12:15   #3
whiteb
Fanatically Amiga.
 
whiteb's Avatar
 
Join Date: Apr 2002
Location: Melbourne, Victoria, Australia
Age: 54
Posts: 1,557
Quote:
Originally Posted by pmc View Post
Nice site fuzzylogic.

Hope I'm not missing something obvious - what does the column with the percentages far right indicate?
Relevance by user click rate.
whiteb is offline  
Old 10 January 2010, 12:22   #4
pmc
gone
 
pmc's Avatar
 
Join Date: Apr 2007
Location: completely gone
Posts: 1,596
OK whiteb, nice one. Thanks for that.
pmc is offline  
Old 10 January 2010, 13:41   #5
EmuChicken
Senior Member
 
EmuChicken's Avatar
 
Join Date: Jul 2004
Location: Nagoya, Japan (moved!)
Age: 41
Posts: 746
Im a bit unsure as to WHY youd want to make an encyclopedia about Amiga viri

... Me for one HATES the people that makes these viri... I mean, wtfffff!?
EmuChicken is offline  
Old 10 January 2010, 14:13   #6
Fingerlickin_B
Amiga Nut
 
Fingerlickin_B's Avatar
 
Join Date: Oct 2006
Location: Belco, Australia
Posts: 2,242
Quote:
Originally Posted by EmuChicken View Post
Im a bit unsure as to WHY youd want to make an encyclopedia about Amiga viri

... Me for one HATES the people that makes these viri... I mean, wtfffff!?
Ummm, to know the enemy is to defeat the enemy...

PZ.
Fingerlickin_B is offline  
Old 10 January 2010, 14:30   #7
pmc
gone
 
pmc's Avatar
 
Join Date: Apr 2007
Location: completely gone
Posts: 1,596
Quote:
Originally Posted by EmuChicken
Im a bit unsure as to WHY youd want to make an encyclopedia about Amiga viri

... Me for one HATES the people that makes these viri... I mean, wtfffff!?
It's worth having the information in my opinion.

From the perspective of a coding challenge, coding a virus would be interesting - well, to me at least - purely in terms of making something that's difficult to detect and clever at hiding and duplicating itself.

I think I'd stop short of coding the bits that f*ck up people's disks and data though... Cos that's just bang out of order...
pmc is offline  
Old 10 January 2010, 14:35   #8
Matt020
Registered User
 
Matt020's Avatar
 
Join Date: Dec 2009
Location: West Australia
Age: 47
Posts: 210
It is unlawful and an offence to code a virus.
Matt020 is offline  
Old 10 January 2010, 14:37   #9
pmc
gone
 
pmc's Avatar
 
Join Date: Apr 2007
Location: completely gone
Posts: 1,596
Quote:
Originally Posted by Matt020
It is unlawful and an offence to code a virus.
LOL. I think you can rest easy, I was only expressing an opinion, not an intention!
pmc is offline  
Old 10 January 2010, 17:47   #10
sneeker
Registered User
 
Join Date: Mar 2008
Location: Manchester!
Posts: 308
Very similar to this page :

http://www.vht-dk.dk/vhtdk/amiga/desc/all.htm

Has quite a bit of info on there too.
sneeker is offline  
Old 10 January 2010, 18:55   #11
fuzzylogic
Registered User
 
Join Date: Jan 2010
Location: Germany
Posts: 67
Quote:
Originally Posted by EmuChicken View Post
Im a bit unsure as to WHY youd want to make an encyclopedia about Amiga viri

... Me for one HATES the people that makes these viri... I mean, wtfffff!?
We are not into making viruses :-) - It is a preservation-project of old amiga viruses (see info on the site) also we are analyzing viruses for a good read (at least we hope so) :-)

You cannot find any info how to make viruses on the site of course.
fuzzylogic is offline  
Old 10 January 2010, 19:00   #12
fuzzylogic
Registered User
 
Join Date: Jan 2010
Location: Germany
Posts: 67
Quote:
Originally Posted by pmc View Post
Nice site fuzzylogic.

Code:
cmpi.w     #$101,$dff00c
which by my calculation is equivalent to holding forward *and* back on the joystick at the same time ie. an impossible combination.

Hope that helps...
This is the whole code involved with above mentioned code, maybe this helps you?
Code:
  movea.l (4).l,a6
  jsr     -$78(a6)  ; Forbid
  clr.l   ($DFF036).l
  move.b  #$E0,($DFF034).l
  move.w  #$F,d0
.loop:
  dbf     d0,.loop
  cmpi.w  #$101,($DFF00C).l ; JOYDAT0
  bne.s   InstallVirus
  move.l  #$5FFFF,d0
.loop2:
  subq.l  #1,d0
  bne.s   .loop2
  move.b  #$A0,($DFF034).l
  bra.s   NormalBoot ; (no installation)
fuzzylogic is offline  
Old 10 January 2010, 19:02   #13
cosmicfrog
The 1 who ribbits
 
cosmicfrog's Avatar
 
Join Date: Apr 2006
Location: leek, Staffs, UK
Age: 56
Posts: 3,557
Send a message via MSN to cosmicfrog
ist there a load of bootblock viruses somewhere on the eab file server ?
cosmicfrog is offline  
Old 10 January 2010, 19:14   #14
Toni Wilen
WinUAE developer
 
Join Date: Aug 2001
Location: Hämeenlinna/Finland
Age: 49
Posts: 26,518
Quote:
Originally Posted by pmc View Post
Code:
cmpi.w     #$101,$dff00c
which by my calculation is equivalent to holding forward *and* back on the joystick at the same time ie. an impossible combination.
Correct but it is only impossible if you use standard joystick, some old and simple game dongles used similar "impossible" combinations. (Leaderboard dongle actually used above combination)
Toni Wilen is offline  
Old 10 January 2010, 19:19   #15
Paul_s
Registered User
 
Paul_s's Avatar
 
Join Date: Nov 2006
Location: Amigaville
Age: 46
Posts: 3,336
Quote:
Originally Posted by Matt020 View Post
It is unlawful and an offence to code a virus.
In that case you should report Microsoft as they've made plently under the guise of 'Windows'
Paul_s is offline  
Old 10 January 2010, 19:35   #16
pmc
gone
 
pmc's Avatar
 
Join Date: Apr 2007
Location: completely gone
Posts: 1,596
Quote:
Originally Posted by Toni Wilen
Correct but it is only impossible if you use standard joystick, some old and simple game dongles used similar "impossible" combinations. (Leaderboard dongle actually used above combination)
Yes - obviously only impossible with a standard joystick.

I was going to add something like "the virus makers probably used some kind of dongle that held these joystick directions to stop themselves getting infected" but I didn't...
pmc is offline  
Old 10 January 2010, 19:41   #17
pmc
gone
 
pmc's Avatar
 
Join Date: Apr 2007
Location: completely gone
Posts: 1,596
Quote:
Originally Posted by fuzzylogic
You cannot find any info how to make viruses on the site of course.
But you can find out lots of interesting ideas that people who made the viruses came up with for keeping their virus hidden and resident and self replicating.

I found reading about that stuff interesting anyway...
pmc is offline  
Old 10 January 2010, 20:05   #18
fuzzylogic
Registered User
 
Join Date: Jan 2010
Location: Germany
Posts: 67
Quote:
Originally Posted by pmc View Post
But you can find out lots of interesting ideas that people who made the viruses came up with for keeping their virus hidden and resident and self replicating.

I found reading about that stuff interesting anyway...
Hi pmc,

well actually 90% of the viruses out on amiga were not that well coded anyway(*). I think a good coder does not need ideas he knows how to do it since its simple.

Best regards ;-)

(*)There is infact stuff which is really clever and only a handful ppl are able to patch the system like this (i.e. using trap vectors to get access to interesting OS functions or intercepting dos traffic on packet level not needing the dos.library anymore) but all in all I think the Amiga itself isn't interesting anymore for virus writers the last virus discovered was 2001 if I remember right.

Thanks for your help on that joystick routine :-)
fuzzylogic is offline  
Old 10 January 2010, 21:38   #19
pmc
gone
 
pmc's Avatar
 
Join Date: Apr 2007
Location: completely gone
Posts: 1,596
Quote:
Originally Posted by fuzzylogic
There is infact stuff which is really clever and only a handful ppl are able to patch the system like this (i.e. using trap vectors to get access to interesting OS functions or intercepting dos traffic on packet level not needing the dos.library anymore)
That was the kind of stuff I was enjoying reading about.

Quote:
Originally Posted by fuzzylogic
all in all I think the Amiga itself isn't interesting anymore for virus writers
Agreed. Not much notoriety in disrupting the lives of the, relatively speaking, handful of remaining users of an outdated machine.

Quote:
Originally Posted by fuzzylogic
Thanks for your help on that joystick routine :-)
No problems man, happy to help.

Keep up the good work with the site.

EDIT: I've added the joystick test explanation as a comment to the Disk Doctors virus page on your site.

Last edited by pmc; 10 January 2010 at 21:44. Reason: Virus site comment added...
pmc is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
CManual - Amiga C Encyclopedia Man - full version Asman request.Other 7 04 May 2010 22:17
SCS Encyclopedia of Cheats 01 Ian request.Other 2 13 March 2007 23:01
Amiga Demo Scene Encyclopedia Ziaxx Amiga scene 5 10 March 2007 00:26
Amiga gets favorable coverage in Wikipedia, the free encyclopedia. Pyromania Amiga scene 3 24 October 2003 13:32
Amiga Virus Help madduck Amiga websites reviews 1 11 September 2002 19:15

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 06:34.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.11551 seconds with 15 queries