Advertisement
FederationHax

BruteForce

Jun 9th, 2016
759
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. Brute force !
  2.  
  3. BRUTE: A brute force approach to hacking Unix passwords. Version 1.1
  4. ------------------------------------------------------------------------------
  5.  
  6. Here's how to use it in a nutshell...
  7.  
  8. Download the passwd file from your local unix site, or have someone download
  9. it for you. It should be in the unix format (that is, line feeds but no
  10. carriage returns) so don't run it through any conversion programs--Brute uses
  11. it "as-is".
  12.  
  13. To check a single password against your list do this:
  14.  
  15. BRUTE passwd Password
  16.  
  17. (that would check the passwd file for the password "Password"). Brute is
  18. case sensitive (just as unix is), so "Password" is different than "password".
  19.  
  20. To convince yourself that brute actually works you'll probably want to run it
  21. with your password and see that it pulls up your account. It will.
  22.  
  23. ---
  24.  
  25. Brute can be used with a list of passwords. In this case, edit up a list or
  26. use a pre-made one (one password per line) and call brute like this:
  27.  
  28. BRUTE passwd @passlist.txt
  29.  
  30. (where passlist.txt is the name of your list-of-passwords. The @ sign tells
  31. brute that you're using list file). Note that you don't have to use the name
  32. "passlist.txt" for your word list, and you don't have to use the name
  33. "passwd" for the password file. This allows you to keep separate word lists
  34. for different types of unix sites, and separate password files.
  35.  
  36. Right now that's about it. There are a few enhancements I'm planning in the
  37. future, but this ought to do the trick for you. Any passwords found are
  38. written to the file "PWD_HITS.DAT".
  39.  
  40. Brute ignores unpassworded and invalidly-passworded accounts automatically,
  41. so you should probably check the passwd file for these babys yourself.
  42.  
  43. ---
  44.  
  45. Brute is about 25% faster than it's nearest competitor.
  46.  
  47. Have fun.
  48.  
  49. Prometheus
  50.  
  51. ---
  52.  
  53. Version 1.1: Fixed the icky short int bug which causes the "Password"
  54. counter to go negative after 32k attempts (changed to long
  55. int--now it will go negative should you reach 2 billion
  56. attempts in a single setting, which isn't extrememly likely.
  57.  
  58. Added the "*" password to check for the username as a password
  59. (forward and reversed). Either put * on a line by itself in
  60. your word list file, or call brute like this: brute passwd *
  61. ---
  62.  
  63. Version 2.0: I'm using the fastcrypt routine as ported to DOS by Gandalf and
  64. distributed in OBJ form by sir hackalot. I haven't measured
  65. the speed increase, but it's not as much as I had hoped. Maybe
  66. twice as fast. Anyhow, such is life.
  67.  
  68. ÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜ
  69. ÜÝÄ’œ›Š úúúúúúúúúúúúúúú THE HOLLOW'S ALLIANCE úúúúúúúúúúúúúúú AliceÄÞÜ ú
  70. ÜÝÄ (415)849-2688 Ÿ‰‰ë 攁r hîŽë (415)849-2688 ÄÞÜ ú
  71. ÜÝ ÄÄ Ä Ä Ä Ä Ä Ä T-file Distribution Cent-a-RoR Ä Ä Ä Ä Ä Ä ÄÄ ÞÜ ú
  72. ÜÝDr. Murdock ú Powerful Paul ú RatSnatcher ú Sir Death ú Pressed RatÞÜ ú
  73. ÜÝ ÄÄ Ä Ä Ä R o R - A l u c a r d Ä Ä Ä ÄÄ ÞÜ ú
  74. ÜÝÄ The Corporate Headquarters of Shawn-Da-Lay Boy Productions, Inc.ÄÞÜ ú
  75. ÜÝÄúúúú Ø úúúúSmooth is the Descent and Easy is the Wayúúúúú Ø úúúúúÄÞÜ ú
  76. ÜÛßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßßÛÜ ú
  77. úúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúúú
  78.  
  79. skype : yamod.gas
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement