亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? connection.java

?? 一個木馬程序源碼
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
/* *   File:  Connection.java * *   Version 1.02 v1a *   Copyright 1998, 1999 by Hush Communications Corporation, BWI */package hushcode;import java.applet.*;import java.net.*;import java.io.*;import java.awt.*;import java.util.*;import hushcode.HushSHA1;import hushcode.BlowfishCipher;import hushcode.HushApplet;import hushcode.Conversions;import hushcode.ElGamalCipher;import hushcode.HushRandom;import hushcode.ByteQueue;class Connection{ /************************************************************ *  The class variables and the methods that return them  ************************************************************//** * The following variables and methods deal with the user's folderlist.   * The folderlist is obtained by calling the method getFolders(). */  /* The number of folders used by the user   */  private int numberOfFolders;  int numberOfFolders() {return numberOfFolders;}      /* An array containing the names of the user's folders   * in the order they were received from the server   */  private String[] folderNameArray;  String folderName(int x) {return folderNameArray[x];}  /* An array containing the numbers of messages in each folder   * in the order they were received from the server   */  private int[] numberOfMessagesArray;  int numberOfMessages(int x)     {return numberOfMessagesArray[x];}  /* An array containing the numbers of unread messages in each folder   * in the order they were received from the server    */  private int[] numberOfUnreadMessagesArray;  int numberOfUnreadMessages(int x)     {return numberOfUnreadMessagesArray[x];}/** * The following variables and methods deal with the currently open  * folder.  A folder is opened by calling the method openFolder(String foldername) */  /* The name of the currently open folder   */  private String folderName;  String folderName() {return folderName;}   /* The number of messages in the currently open folder   */  private int numberOfMessages;  int numberOfMessages() {return numberOfMessages;}   /* The number of unread messages in the currently open folder   */  private int numberOfUnreadMessages;  int numberOfUnreadMessages() {return numberOfUnreadMessages;}    /* An array containing the messageIDs of messages in the currently    * open folder. messageIDs are assigned in the order messages are     * received from the server.  ?? Do we need this ??   */  private int[] messageIDArray;  int messageID(int x) {return messageIDArray[x];}    /* An array containing the exact sizes in octets of message in the   * currently open folder.  Ordered by messageID.   */  private int[] messageSizeArray;  int messageSize(int x) {return messageSizeArray[x];}  /* An array containing the subjects of the messages in the currently    * open folder.  Ordered by messageID.   */  private String[] subjectArray;  String subject(int x) {return subjectArray[x];}   /* An array containing the from addresses of the messages in the currently    * open folder.  Ordered by messageID.   */  private String[] fromArray;  String from(int x) {return fromArray[x];}  /* An array containing the to addresses of the messages in the currently    * open folder.  Ordered by messageID.   */  private String[] toArray;  String to(int x) {return toArray[x];}   /* An array containing the dates of the messages in the currently    * open folder.  Ordered by messageID.   */  private String[] dateArray;  String date(int x) {return dateArray[x];}   /* An array of type boolean indicating whether or not each message   * in the currently open folder has been read. Ordered by messageID.   */   private boolean[] readArray;  boolean read(int x) {return readArray[x];}  /** * The following variables and methods deal with the current   * message.  The current message is selected by calling * the method getMessage(String messageID). */   /* The messageID of the current message.   */   private int messageID;  int messageID() {return messageID;}  /* The date of the current message.   */   private String date;  String date() {return date;}  /* The subject field of the current message   */  private String subject;  String subject() {return subject;}  /* The to field of the current message   */  private String to;  String to() {return to;}  /* The from field of the current message   */  private String from;  String from() {return from;}  /* The reply-to field of the current message   */  private String replyTo;  String replyTo() {return replyTo;}    /* The cc field of the current message   */  private String cc;  String cc() {return cc;}   /* The bcc field of the current message   */  private String bcc;  String bcc() {return bcc;}   /* The full header of the current message   */  private String header;  String header() {return header;}  /* The body of the current message (unencrypted if the message was secure)   */  private String body;    String body() {return body;}  /* The body of the current message (encrypted if the message was secure)   */  private String actualbody;  String actualbody() {return actualbody;}  /*  If true the message has been rewritten   *  to the server, so the folderlist needs to be reloaded   */  private boolean wasRewritten;  boolean wasRewritten() {return wasRewritten;}  /*  This method wipes the entire message from memory   */  void wipeMessage()  {    date = null;    subject = null;    to = null;    from = null;    replyTo = null;    cc = null;    bcc = null;    header = null;    actualbody = null;    body = "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------"+           "-----------------------------------------------------------";    body = null;  }/** * The following variables and methods deal with the addressbook   * message.  The addressbook is obtained by calling the method * getAddresses(). */  /* The number of addresses in the address book   */  private int numberOfAddresses;  int numberOfAddresses() {return numberOfAddresses;}  /* An array of nicknames for the entries in the addressbook     */  private String[] nicknameArray;  String nickname(int x) {return nicknameArray[x];}  /* An array of fullnames for the entries in the addressbook   */  private String[] fullnameArray;  String fullname(int x) {return fullnameArray[x];}    /* An array of email addresses for the entries in the addressbook   */  private String[] addressesArray;  String addresses(int x) {return addressesArray[x];}  /* An array of public key fingerprints   */  private String[] fingerprintsArray;  String fingerprints(int x) {return fingerprintsArray[x];}/** * The following variables and methods deal with information   * about the users account and current session. */  /* The server's address   */  private String serverAddress;  /* The port the server listens for connections on   */  private int serverPort = 21;  /* The socket used to communicate with the server   */  private Socket s;     /* The service's domain.  Usually hushmail.com   */  private String domain;  String domain() {return domain;}  /* The username   */  private String username;     String username() {return username;}  /* The users email address   */  private String emailAddress;  String emailAddress() {return emailAddress;}    /* Half of a hash of the passPhrase;   */  private byte[] halfPassphraseHash;  void setPassphrase(String passedPassphrase)   {    byte[] passphraseHash = new HushSHA1().SHA1Hash(passedPassphrase);    halfPassphraseHash=new byte[passphraseHash.length/2];    System.arraycopy(passphraseHash,0,halfPassphraseHash,0,halfPassphraseHash.length);    passphraseHash = null;    passCipher = new BlowfishCipher();    passCipher.setKey(passedPassphrase.getBytes());    passedPassphrase = "                                            " +                       "                                            " +                       "                                            " +                       "                                            " +                       "                                            " ;    passedPassphrase=null;  }  /*  The user's public key fingerprint   */  private String fingerprint = "";  String fingerprint() {return fingerprint;}  /* The cipher with the key as user's passphrase   */  private BlowfishCipher passCipher;  void killPassCipher() {passCipher=null;}  /* The pseudo stream cipher for communication between applet and server   */  private BlowfishCipher blowfishPipe;   /* The sessionID.  64 bytes used as a unique identifier by the server to ensure   * a user cannot open multiple sessions, and that no one can break into the middle   * of a session.   */  private byte[] sessionIDBytes;  /* The user's encrypted public key   */  private byte[] encPrivKey;  /* A random number stream for encryption   */  private HushRandom randStream;   /* The applet using this instance of Connection   */  private HushApplet hushApplet;   /* A count of the tasks currently requiring use of the socket.   * Allows the socket to close when not needed.   */  private int socketRequests;  /* An output stream to the socket   */  BufferedOutputStream out;  /* An input stream from the socket.   */  BufferedInputStream eIn;  /* An input stream from a decrypted String which is used as a buffer   * to store data from eIn after it has been decrypted with blowfishPipe   */  DataInputStream in;  /* A boolean flag that indicates if the socket connection has been used yet.   * This ensures the session will only be initialized by method use() once   */  private boolean initialUse;  private String spaces="                               ";/************************************************************ *  Actions ************************************************************/    Connection(String passedUsername, String passedSessionID, String passedSessionKey, HushApplet a) //Constructor  {    /**     * This is the class constructor     */    username = passedUsername.toLowerCase();    /* Convert sessionID hex string to an array of bytes     */    sessionIDBytes = Conversions.hexStringToBytes(passedSessionID);      /* Convert sessionKey hex string to an array of bytes     */    byte[] sessionKeyBytes = Conversions.hexStringToBytes(passedSessionKey);    /* Instantiate cipher with sessionKey     */    blowfishPipe = new BlowfishCipher();    blowfishPipe.setKey(sessionKeyBytes);    hushApplet = a;    serverAddress = hushApplet.getCodeBase().getHost();    domain = "hushmail.com";    emailAddress = username+"@"+domain;    /* Since this session has just been started, no tasks are using the socket yet     */    socketRequests = 0;    /* The socket has not yet been used for communication     */    initialUse = true;    randStream = new HushRandom(new HushSHA1().SHA1Hash(Conversions.longToBytes(new Date().getTime())));  }    void getFolders() throws IOException  {     /**    *  Retrieves information on the folders stored on the server    *       numberOfFolders is set to the number of folders the     *           user has.    *       folderNameArray contains the names of the folders.    *        numberOfMessagesArray contains the numbers of messages    *          in each folder     *        numberOfUnreadMessagesArray contains the numbers of     *          unread messages in each folder     */        encryptAndWrite("LISTFOLDERS\n");    readAndDecrypt();    if (!in.readLine().equals("OK")) throw new IOException();    numberOfFolders = Integer.parseInt(in.readLine());    folderNameArray = new String[numberOfFolders];    numberOfMessagesArray = new int[numberOfFolders];    numberOfUnreadMessagesArray = new int[numberOfFolders];    for (int x=0;x<numberOfFolders;x++)         {      folderNameArray[x] = in.readLine();      numberOfMessagesArray[x] = Integer.parseInt(in.readLine());       numberOfUnreadMessagesArray[x]= Integer.parseInt(in.readLine());    }  }  void deleteFolder(String passedFolderName) throws IOException  {   /**    *  Indicates to the server that the folder with name    *  passedFolderName should be deleted    */     encryptAndWrite("DELETEFOLDER\n"+passedFolderName.trim()+"\n");    readAndDecrypt();    if (!in.readLine().equals("OK")) throw new IOException();   } 

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品成人少妇| 国内成人精品2018免费看| 亚洲国产视频直播| 日本成人中文字幕在线视频| 国产综合色精品一区二区三区| 成人avav影音| 欧美日韩第一区日日骚| 国产欧美日韩在线视频| 中文字幕亚洲区| 免费视频最近日韩| 99久久精品一区| 91精品国产全国免费观看| 久久久国产午夜精品 | 国产在线精品一区在线观看麻豆| 国产很黄免费观看久久| 欧美日韩一区久久| 国产精品久久久久影院亚瑟| 日韩av高清在线观看| 首页国产欧美日韩丝袜| 不卡区在线中文字幕| 日韩欧美久久久| 一卡二卡欧美日韩| 国产乱人伦精品一区二区在线观看 | 色婷婷久久久久swag精品| 欧美在线短视频| 中文字幕av资源一区| 免费不卡在线观看| 欧美三级乱人伦电影| 久久先锋资源网| 同产精品九九九| 91亚洲国产成人精品一区二区三| 精品精品国产高清一毛片一天堂| 亚洲免费电影在线| 精品在线亚洲视频| 欧美男生操女生| 一区二区三区国产精华| 大尺度一区二区| 欧美变态tickling挠脚心| 亚洲一区二区三区视频在线| 97国产一区二区| 久久亚洲综合色| 久久精品99国产国产精| 欧美伊人精品成人久久综合97| 国产精品女同一区二区三区| 肉丝袜脚交视频一区二区| 欧美亚洲动漫另类| 亚洲另类一区二区| 91在线观看污| 国产精品大尺度| 狠狠久久亚洲欧美| 欧美大胆一级视频| 美女免费视频一区二区| 91精品免费观看| ...av二区三区久久精品| av在线免费不卡| 国产精品久久久久毛片软件| 高清国产一区二区三区| 国产午夜精品美女毛片视频| 高清成人在线观看| 成人免费在线播放视频| 97se亚洲国产综合在线| 亚洲精品视频自拍| 91福利小视频| 久久亚洲二区三区| 国产盗摄女厕一区二区三区| 国产女人水真多18毛片18精品视频| 久久精品国产亚洲aⅴ| 欧美性一二三区| 日韩精品国产精品| 欧美精品一区二区三区在线 | 久久精品国产久精国产爱| 在线播放中文一区| 狠狠狠色丁香婷婷综合久久五月| 久久精品一区二区三区四区| 国产成人av影院| 中文字幕一区二区三区色视频 | 亚洲视频一区在线观看| 欧洲精品一区二区| 日本欧美一区二区三区乱码| 日韩欧美一区二区三区在线| 豆国产96在线|亚洲| 樱桃视频在线观看一区| 欧美一区二区三区男人的天堂| 轻轻草成人在线| 国产精品久久久久永久免费观看 | 欧美一区二区三区思思人| 波波电影院一区二区三区| 蜜臀a∨国产成人精品| 亚洲精品免费播放| 日本一区二区三区免费乱视频| 欧美精品在线一区二区三区| 狂野欧美性猛交blacked| 国产精品久久久久久久久果冻传媒| 欧美日本一区二区三区| 91丨porny丨首页| 国产一区二区成人久久免费影院| 一区二区三区在线免费观看| 国产欧美久久久精品影院| 欧美一区二区三区精品| 欧美三级中文字幕在线观看| 99久久免费视频.com| 国产精品影视天天线| 日本亚洲三级在线| 性做久久久久久| 亚洲精品国产视频| 亚洲精品日韩综合观看成人91| 国产精品色哟哟| 中文字幕免费不卡在线| 久久女同互慰一区二区三区| 精品少妇一区二区三区在线视频| 欧美精品三级在线观看| 欧美日韩国产综合久久| 欧美中文字幕一区二区三区 | 成人av网在线| 国产成人8x视频一区二区| 国产露脸91国语对白| 国产麻豆成人精品| 国产精华液一区二区三区| 国产精品1024| 99视频精品免费视频| 91美女在线观看| 91麻豆蜜桃一区二区三区| 色哟哟在线观看一区二区三区| 99久久99久久免费精品蜜臀| 色综合久久久网| 欧美三级三级三级爽爽爽| 欧美日韩五月天| 91精品国产全国免费观看| 精品毛片乱码1区2区3区| 精品国产三级电影在线观看| 国产亚洲女人久久久久毛片| 国产精品嫩草久久久久| 一区二区三区高清不卡| 五月激情综合婷婷| 国产在线视频不卡二| 懂色一区二区三区免费观看| 91色porny蝌蚪| 欧美日韩中文国产| 欧美成人一区二区三区| 久久久久国产精品厨房| 亚洲三级免费观看| 视频在线在亚洲| 国产精品99久| 欧洲视频一区二区| 欧美xxxx在线观看| 国产精品白丝在线| 亚洲成av人片www| 国产宾馆实践打屁股91| 在线这里只有精品| 26uuu国产在线精品一区二区| 国产精品久久久久久久裸模| 亚洲国产精品嫩草影院| 国产精品夜夜爽| 欧美午夜精品免费| 久久欧美一区二区| 亚洲曰韩产成在线| 精品无码三级在线观看视频| 色婷婷综合视频在线观看| 日韩视频一区二区三区 | 一个色在线综合| 美日韩一区二区| 成人动漫在线一区| 日韩欧美不卡一区| 亚洲欧美日韩在线| 精品无人区卡一卡二卡三乱码免费卡| 91欧美一区二区| 精品国产露脸精彩对白| 亚洲综合区在线| 成人免费观看av| 日韩欧美电影一区| 亚洲观看高清完整版在线观看| 国产一区二区精品在线观看| 欧美日韩一区二区三区高清| 中文在线资源观看网站视频免费不卡| 午夜精品福利一区二区三区蜜桃| 成人福利视频在线| 国产日韩欧美激情| 麻豆精品视频在线观看| 欧美色国产精品| 亚洲天堂av一区| 丰满亚洲少妇av| 久久综合久久久久88| 日本亚洲三级在线| 欧美日韩一区视频| 亚洲午夜久久久久| 91网页版在线| 中文字幕一区免费在线观看| 国产成人综合在线| 久久尤物电影视频在线观看| 丝袜美腿亚洲一区| 在线观看日韩av先锋影音电影院| 国产精品久久久久一区| 成人夜色视频网站在线观看| 精品处破学生在线二十三| 日本人妖一区二区| 91精品国产综合久久蜜臀| 亚洲国产日韩a在线播放性色| 一本色道久久综合狠狠躁的推荐 | 国产经典欧美精品| 久久久久久亚洲综合影院红桃|