In meinem letztem Blogpost hatte ich angekündigt, etwas zu SPTH’s Language Infection Project beizutragen. Das muss leider noch ein bisschen warten, da ich ein neues Projekt gestartet habe: Ich versuche einen ELF Infector in Java zu schreiben (man kann Java Codes auch zu ELF Dateien compilen).
Da es keine offizielle ELF Library für Java gibt (und ich das Dateiformat gut kennen lernen will) werde ich versuchen alle Funktionen selber zu schreiben. Diese Funktionen werde ich hier im Blog immer wieder hochladen und Teilweise auch erklären.
Bis jetzt habe ich Funktionen um zu
überprüfen, ob es sich um eine ELF Datei handelt (0x7F454C46 am Anfang der Datei)
die Architektur auslesen (4. Byte in einer ELF Datei)
den EntryPoint auslesen und verändern
Offset des ProgramHeaders auslesen
Hier ist der aktuelle Code. Ich werde regelmäßig Updates hierzu schreiben
importjava.io.*;importjava.math.BigInteger;/** * ELF * * @author R3s1stanc3 * @version 0.1 */publicclassELF{publicstaticvoidmain(String[]args){newELF();}publicELF(){byte[]fullFile=readFile("/home/r3s1stanc3/elf/halloadf");intarch=getArch(fullFile);// exit if we can't get the architecture or if the file is no ELF fileif(arch==0||!(isELF(fullFile)))System.exit(0);byte[]entryPoint=getEntryPoint(fullFile,arch);StringhexString=byteToHex(entryPoint);intentry=Integer.parseInt(hexString,16);System.out.println(byteToHex(intToByteArray(entry)));intprogramHeaderOffset=getProgramHeadersOffset(fullFile,arch);System.out.println(hexString);System.out.println(entry);System.out.println(arch);System.out.println(programHeaderOffset);// i used a hallo world ELF written in nasm and set the EntryPoint direct to the exit codebyte[]newFile=changeEntryPoint(fullFile,entry,27);writeFileByte("/home/r3s1stanc3/elf/halloadf",newFile);}/** * Reads the content of a file * @param name Name of the file * @return the files content as a byte array */publicbyte[]readFile(Stringname){try{RandomAccessFilefile=newRandomAccessFile(name,"r");byte[]data=newbyte[(int)file.length()];file.read(data);file.close();returndata;}catch(Exceptione){returnnull;}}/** * converts a byte array to a hex string * @param bytes byte array to convert * @return hex string */publicStringbyteToHex(byte[]bytes){BigIntegerbi=newBigInteger(1,bytes);returnString.format("%0"+(bytes.length<<1)+"X",bi);}/** * Returns the entry point of an ELF file. * @param file byte array of the whole file * @return entry point in a byte array */publicbyte[]getEntryPoint(byte[]file,intarch){intlength;if(arch==32)length=4;elselength=8;byte[]entryPoint=newbyte[length];for(inti=0;i<length;i++){entryPoint[i]=file[0x18+i];}returnreverse(entryPoint);}/** * checks the 4th byte of an ELF file to see if it is a 32 or 64 bit file * @param file byte array of the whole file * @return 32 - 32 bit; 64 - 64 bit; 0 - error */publicintgetArch(byte[]file){if(file[0x4]==0x01)return32;elseif(file[0x4]==0x02)return64;elsereturn0;}/** * reverses a byte array * @param array array to reverse * @return reversed array */publicbyte[]reverse(byte[]array){inti=0;intj=array.length-1;bytetmp;while(j>i){tmp=array[j];array[j]=array[i];array[i]=tmp;j--;i++;}returnarray;}/** * checks the header of a file to see if it's a ELF or not * @param file byte array of the whole file * @retrun true - ELF file; false - no ELF file */publicbooleanisELF(byte[]file){// magic number of an ELF file: 0x7F454C46if(file[0]==0x7F&&file[1]==0x45&&file[2]==0x4C&&file[3]==0x46)returntrue;elsereturnfalse;}/** * reads the program header offset of an ELF file * @param file byte array of the whole file * @param arch architecture of the file * @return program header offset as an integer value */publicintgetProgramHeadersOffset(byte[]file,intarch){if(arch==32)returnfile[0x1C];elsereturnfile[0x20];}/** * changes the entrypoint of a file by a given number * @param file byte array of the whole file * @param entry original entrypoint as integer value * @param change number to increase the entrypoint */publicbyte[]changeEntryPoint(byte[]file,intentry,intchange){entry+=change;byte[]entryB=reverse(intToByteArray(entry));for(inti=0;i<entryB.length;i++){file[0x18+i]=entryB[i];}returnfile;}/** * converts an integer value to a byte array of hex values * @param value integer value * @return byte array */publicbyte[]intToByteArray(intvalue){returnnewbyte[]{(byte)(value>>>24),(byte)(value>>>16),(byte)(value>>>8),(byte)value};}/** * Writes a bytearray to a file * @param fi file to write to * @param data bytearray to write in the file */publicvoidwriteFileByte(Stringfi,byte[]data){try{FileOutputStreamoutput=newFileOutputStream(fi);output.write(data,0,data.length);output.flush();output.close();}catch(Exceptione){}}}