0

I am creating a Facebook brute force software... Everything is perfect until it reaches the code that reads the password list.. Then it says no module found for read line!

Python language

Comments
  • 6
    Facebook is a major sponsor of Python and has built in that limitation specifically so that people don't build Facebook brute forcers.
  • 0
    you should call read line on top of an opened file. It seems your setup is trying to call read line from a module for some reason and that module cannot be found since it probably doesn't exist in the first place.

    check your open()'s, with's, global's and scope's. Best just put a breakpoint there and check where it's trying to call the read line from in the first place
  • 4
    > Tries to break into Facebook
    > Can't read a file in a script

    Sounds about right
  • 0
    I crashed facebook. I posted a picture of your mom...
Add Comment