Git Product home page Git Product logo

littlebrother's People

Contributors

b1rdex avatar lrhel avatar lulz3xploit avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

littlebrother's Issues

#python3 LittleBrother.py Traceback (most recent call last): File "LittleBrother.py", line 6, in <module> from lib.menu import checkVersion, clear, menu File "/home/ashu/LittleBrother/lib/menu.py", line 2, in <module> from core.Profiler import * File "/home/ashu/LittleBrother/core/Profiler.py", line 2, in <module> from terminaltables import SingleTable ModuleNotFoundError: No module named 'terminaltables'

#python3 LittleBrother.py
Traceback (most recent call last):
File "LittleBrother.py", line 6, in
from lib.menu import checkVersion, clear, menu
File "/home/ashu/LittleBrother/lib/menu.py", line 2, in
from core.Profiler import *
File "/home/ashu/LittleBrother/core/Profiler.py", line 2, in
from terminaltables import SingleTable
ModuleNotFoundError: No module named 'terminaltables'

'searchLinkedIn' object has no attribute 'profiles'

Le dernier commit supprime toute trace de l'attribut "profiles" de la classe searchLinkedIn, ce qui a pour conséquence le crash de LittleBrother (en faisant un "Personne lookup" par exemple"). Je ne sais pas si c'est voulu/si d'autres commits sont en chemin...
Voilà le message d'erreur en eniter :
image

IndexError pb

Traceback (most recent call last):
  File "LittleBrother.py", line 221, in <module>
    searchTwitter()
  File "/home/kali/LittleBrother/core/searchTwitter.py", line 6, in searchTwitter
    twitool.getInfoProfile(username)
  File "/home/kali/LittleBrother/core/twitterSearchTool.py", line 55, in getInfoProfile
    data =  jsonData[0].replace("&quot;", "\"")

Salut,

Petit soucis quand j'utilise lookup twitter
J'ai aussi une erreur IndexError quand j'utilise le profiler

Instagram

Instagram search tools don't work, He tells me profile not found even though the profile exists.

Problème technique

Voici le message d'erreur qu'il m'indique et m'empêche de démarrer le logiciel
error

Problem with Instagram?

Hi,

I just discovered your tool and i'm currently trying it. I've always the same issue when searching on a person, here is the traceback I have :

Traceback (most recent call last):
  File "LittleBrother.py", line 199, in <module>
    searchPersonne(settings.codemonpays)
  File "/opt/LittleBrother/core/searchPersonne.py", line 153, in searchPersonne
    instatls.searchInsta(nom)
  File "/opt/LittleBrother/core/instagramSearchTool.py", line 183, in searchInsta
    account = re.findall(r"instagram\.com/(.*?)/", url)[0]
IndexError: list index out of range

Any idea from where the error come?

Thanks for your help!

Installation problem

Hi,
I do not understand I can not install the cli on windows. Can somebody help me please

Décalage entre colonnes Name et User

Bonjour,

J'ai l'impression que dans le listing des comptes Facebook (j'ai pas vérifié pour le reste), l'outil n'associe pas les bons Name aux User. Il y aurait un décalage d'une ligne.
Si je ne suis pas assez clair, je peux envoyer par Telegram ou en mp le nom à partir duquel j'ai pu constater le décalage.

[WIP] Profiler

  • Bug Fix Profile not Found (throw an exception)
  • Exception when no profile are given after creating a profile

Fix for macos

Hi,

I'm using this tool with macOS 10.13.6 (High Sierra).
For using it, you need to install python3 using brew :
brew install python3
and self-upgrade pip :
pip install --upgrade pip
and install dependencencies :
pip3 install requests bs4 terminaltables colorama exifread dnspython
The python module are terminaltables not terminaletables

Notta Bene : for dependencies fix, the problem are same on other Unix-like OS.

Despite these elements, the program work great !

Auccun respect PEP8, Manque cruel d'optimisation

Code non-optimisé, manque cruel du respect pep-8

  • Certaines lignes sont inutiles (comme :)
if condition:
    fonction()
else:
    pass

source,


  • Des fonctions comportant des majuscules (comme:)
def searchGoogle(requete='', requete2=''):
  • Dans l'exemple montré plus haut, des strings seront donnés par défaut, il faut donc préciser que des requests.Reponse sont attendues
def search_google(requete: request.Reponses = '', requete2: request.Reponses= ''):

pep8,
source,


  • Plusieurs modules importés sur une même ligne
import sys, os, time, random, threading

pep8


Code spaghetti :

		if lookup == 'h':
					print(helpLookup)
				elif lookup.lower() == '1':
					searchPersonne(settings.codemonpays)
				elif lookup.lower() == '2':
					searchUserName()
				elif lookup.lower() == '3':
					searchAdresse(settings.codemonpays)
				elif lookup.lower() == '4':
					searchNumber(settings.codemonpays)
#                                 [...]
	

Ce code est tout simplement infâme. Il aurait pu être rendu plus agréable avec des dicts :

(petit exemple)

nb =  int(input("Index:"))
# supposont que printa() printb() et printc() sont des fonctions définies antérieurement
choice = {"a": printa, 
             "b": printb,
             "c" printc }
funct  = choice[nb]
funct()
>>> Index: a
>>> "a"

  • Il n'est pas recommandé d'utiliser excpect à tout vas, surtout sans préciser le type d'exception derrière. Il serait dur de détecter un bug pouvant être réglé facilement
    pep8

  • Des fonctions sont présentes dans d'autres fonctions.
    L'utilisation de class est à privilégier
    exemple
class main:
    def __init__(self,something)
        self.do_stuff(something)
    def do_stuff(something)
        return something

Problem with the Person Lookup

When I try to do some research on myself on on anyone else (with their agree) this message appear.
I tried to search the problem compare the sourcecode of my files and the sourcecode on your Github, but nothing differents

here's the message :

3Traceback (most recent call last):
File "LittleBrother.py", line 199, in
searchPersonne(settings.codemonpays)
File "/root/LittleBrother/core/searchPersonne.py", line 43, in searchPersonne
searchPJ(requete)
File "/root/LittleBrother/core/searchPJ.py", line 39, in searchPJ
p.search(n)
File "/root/LittleBrother/core/searchInfoNumero.py", line 37, in search
ville = p[3]
IndexError: list index out of range
root@kali:~/LittleBrother# 3

thx for ur answser and ur help ;)

ModuleNotFoundError: No module named 'terminaltables' [ Resolved ]

So, i tried to launch Little Brother today, and this appear :
Traceback (most recent call last):
File "LittleBrother.py", line 6, in
from lib.menu import checkVersion, clear, menu
File "/root/LittleBrother/lib/menu.py", line 2, in
from core.Profiler import *
File "/root/LittleBrother/core/Profiler.py", line 2, in
from terminaltables import SingleTable
ModuleNotFoundError: No module named 'terminaltables'*

thank's for your answser 😉

Module 13 instagram

username: blabla blabla
Traceback (most recent call last): File "LittleBrother.py", line 223, in <module> searchInstagram() File "/home/snake/LittleBrother/core/searchInstagram.py", line 21, in searchInstagram images = shortCutUrl(images)

L'outil ce ferme a la suite de ce problème

Employee search broken?

Hi,
Thanks for the great project!
All my try fail but the Google dorks manually exploited seems working.
Can you give an eye?
Regards

error

hi when I use 1 (lookup) I've error: 'ascii' codec can't encode character '\xe9' in position 87: ordinal not in range(128) can you help?

NameError: name 'internet' is not defined

Salut, L'osque j'exécute LittleBrothers, j'ai se type de problèmes, merci d'avance pour votre réponses

traceback (most recent call last):
File "LittleBrother.py", line 1998, in
menu()
File "LittleBrother.py", line 1992, in menu
""" % (Fore.YELLOW+str(today)+Fore.RESET, Fore.YELLOW+times()+Fore.RESET, Fore.YELLOW+str(version)+Fore.RESET, internet, random.choice(text))
NameError: name 'internet' is not defined

Running error

Hello, I am receiving this error when I start the tool.

Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 159, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3/dist-packages/urllib3/util/connection.py", line 84, in create_connection
raise err
File "/usr/lib/python3/dist-packages/urllib3/util/connection.py", line 74, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 670, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 392, in _make_request
conn.request(method, url, **httplib_request_kw)
File "/usr/lib/python3.8/http/client.py", line 1255, in request
self._send_request(method, url, body, headers, encode_chunked)
File "/usr/lib/python3.8/http/client.py", line 1301, in _send_request
self.endheaders(body, encode_chunked=encode_chunked)
File "/usr/lib/python3.8/http/client.py", line 1250, in endheaders
self._send_output(message_body, encode_chunked=encode_chunked)
File "/usr/lib/python3.8/http/client.py", line 1010, in _send_output
self.send(msg)
File "/usr/lib/python3.8/http/client.py", line 950, in send
self.connect()
File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 187, in connect
conn = self._new_conn()
File "/usr/lib/python3/dist-packages/urllib3/connection.py", line 171, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPConnection object at 0x7f78a3e05070>: Failed to establish a new connection: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/requests/adapters.py", line 439, in send
resp = conn.urlopen(
File "/usr/lib/python3/dist-packages/urllib3/connectionpool.py", line 724, in urlopen
retries = retries.increment(
File "/usr/lib/python3/dist-packages/urllib3/util/retry.py", line 439, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='ip-api.com', port=80): Max retries exceeded with url: /json/195.47.194.37 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f78a3e05070>: Failed to establish a new connection: [Errno 111] Connection refused'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "LittleBrother.py", line 32, in
settings.init()
File "/root/LittleBrother/settings.py", line 34, in init
monpays = requests.get("http://ip-api.com/json/"+monip).text
File "/usr/lib/python3/dist-packages/requests/api.py", line 76, in get
return request('get', url, params=params, **kwargs)
File "/usr/lib/python3/dist-packages/requests/api.py", line 61, in request
return session.request(method=method, url=url, **kwargs)
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 530, in request
resp = self.send(prep, **send_kwargs)
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 643, in send
r = adapter.send(request, **kwargs)
File "/usr/lib/python3/dist-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPConnectionPool(host='ip-api.com', port=80): Max retries exceeded with url: /json/195.47.194.37 (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f78a3e05070>: Failed to establish a new connection: [Errno 111] Connection refused'))

Problème avec SMS

Bonjour, lorsque j'utilise l'option SMS dans la partie social engineering, j'obtiens l'erreur suivante lorsque je rentre l'ID du server :
Traceback (most recent call last):
File "LittleBrother.py", line 2084, in
receive_sms()
File "LittleBrother.py", line 1414, in receive_sms
receive.sms(url)
File "LittleBrother.py", line 175, in sms
self.messageText = messagesList[1]
IndexError: list index out of range

Pip not found by Python

root@ALPHA:~/LittleBrother# python3 -m pip install -r requirements.txt
/usr/local/bin/python3: No module named pip

Profiler issue

The code crashes every time whenever I enter a name in profile.
Screenshot from 2020-09-13 06-09-39

RIP MA VIE

Traceback (most recent call last):
File "littlebrother.py", line 6, in
from colorama import init, Fore, Back, Style
ModuleNotFoundError: No module named 'colorama'

J'ai essayer plein de truc ça marche pas .... HELP !!!

problem with the argument

Traceback (most recent call last):
File "LittleBrother.py", line 223, in
searchInstagram()
File "/home/kali/Documents/LittleBrother/core/searchInstagram.py", line 21, in searchInstagram
images = shortCutUrl(images)
File "/home/kali/Documents/LittleBrother/core/shortCutUrl.py", line 6, in shortCutUrl
url = Url(url).decode()
File "/home/kali/Documents/LittleBrother/lib/Url.py", line 47, in decode
while '%' in url:
TypeError: argument of type 'NoneType' is not iterable

issues with the links

Hi There,
its really awesome experience to use the tool,
but while opening the link we get a error on the page which says **Bad Request along with blank white background. ** this causes unable to look on the photos on facebook or instagram, thanks for making this great tool, here are some screenshots which may indicate about the issue to understand better :-

Screen Shot 2020-01-02 at 8 03 26 PM
Screen Shot 2020-01-02 at 8 02 50 PM

Code consistency

return(passw)

return(None)

return(leaked)

return(None)

return(regroup)

return(regroup)

return(pagesLiked)

return("Connecte")

return("Aucune connexion internet")

return(os.mkdir(dossier))

return(times)

return(values['country']+', '+values['region']+', '+ values['city'])

return(s[0])

return(nameReversed.capitalize())

return(nameFile)

return(random.choice(headers))

Also some weird stuffs:

IndexError: list index out of range

Traceback (most recent call last):
File "LittleBrother.py", line 199, in
searchPersonne(settings.codemonpays)
File "/root/LittleBrother/core/searchPersonne.py", line 43, in searchPersonne
searchPJ(requete)
File "/root/LittleBrother/core/searchPJ.py", line 39, in searchPJ
p.search(n)
File "/root/LittleBrother/core/searchInfoNumero.py", line 36, in search
operator = p[3]
IndexError: list index out of range

i think that i will found all the times those error code and report to you XD
btw thank's by advance for your answers 😉

Contact for contribution

Hi, I'd like to contribute to your project. But I would get your email adress or discord to talk about it. Waiting for your answer, have a nice day.
Ps : I'm French

Personnal Lookup non fonctionnel

Salut,

Je voulais tester ce petit programme et en lançant une recherche sur moi même j'ai la stack suivante qui s'affiche :

Traceback (most recent call last):
  File "LittleBrother.py", line 199, in <module>
    searchPersonne(settings.codemonpays)
  File "C:\LittleBrother\core\searchPersonne.py", line 43, in searchPersonne
    searchPJ(requete)
  File "C:\LittleBrother\core\searchPJ.py", line 47, in searchPJ
    print("\n"+table_instance.table)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 41, in write
    self.__convertor.write(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 162, in write
    self.write_and_convert(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 190, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 195, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 41, in write
    self.__convertor.write(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 162, in write
    self.write_and_convert(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 190, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 195, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 41, in write
    self.__convertor.write(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 162, in write
    self.write_and_convert(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 190, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 195, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 41, in write
    self.__convertor.write(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 162, in write
    self.write_and_convert(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 190, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 195, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 41, in write
    self.__convertor.write(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 162, in write
    self.write_and_convert(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 190, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 195, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 41, in write
    self.__convertor.write(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 162, in write
    self.write_and_convert(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 190, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 195, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 41, in write
    self.__convertor.write(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 162, in write
    self.write_and_convert(text)
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 190, in write_and_convert
    self.write_plain_text(text, cursor, len(text))
  File "C:\Python\Python38\site-packages\colorama\ansitowin32.py", line 195, in write_plain_text
    self.wrapped.write(text[start:end])
  File "C:\Python\Python38-32\lib\encodings\cp1252.py", line 19, in encode
    return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\u250c' in position 2: character maps to <undefined>

Une idée du pourquoi ?

Little Brother

Bonjour je voulais vous poser une question.
est il possible d'avoir plusieurs versions de Little Brother, car j'ai la toute première et la nouvelle.
La première ne fonctionne plus.
Mais pour la dernière aucun problème.
PS: il y a un script que j'aime bien dans la première qui n'est pas dans la seconde ( le script pour avoir les numéros de téléphone des personnes.
Merci d'avoir pris le temps de lire mon message.

Linux Team France
[ [email protected] ]

Profiler bug

When I type a name profile on Profiler Python crashes:
image
Thanks to debug ;)

ne marche pas

Bonjour, j'ai un problème, la tool ne se lance pas:

Traceback (most recent call last):
File "LittleBrother.py", line 45, in
from terminaltables import SingleTable, AsciiTable
ModuleNotFoundError: No module named 'terminaltables'

est-ce normal ? que puis-je faire pour remedier à ça svp ? merci.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.