megadose / holehe

holehe allows you to check if the mail is used on different sites like twitter, instagram and will retrieve information on sites with the forgotten password function.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to make a new module?

dinzin opened this issue · comments

commented

Hi there, it's possible to make some new modules? it's easy? there are some tutorials? thank you!

Assuming you know basic python. There is 3 common places where the wanted information can be retrieved: Registration, Login and password reset. Password resets aren't very useful most of the time as they often alert the user. You wil then preform these actions whilst looking for requests that check if the email is valid using the network tab in your browsers inspect or using a web debugging proxy for example fiddler. You may also need to aquire cookies and tokens. After this you can recreate these requests using python code or an api tester like post man. To implement it as a module look at existing modules as a guide of what your code should look like.