-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disposable emails for finding new links #1701
Comments
Talked with the Mozilla team, they asked me to setup my own restmail.net instance.
|
Sent email to dotcloud support to see if they allow me to host it there, and if their infrastructure can be configured to open port 25 + forward traffic to it. |
Answer from dotcloud:
Buuuu! |
One more reason to implement this is explained in these two tweets:
To sum-up, the user was worried that w3af was filling a registration form which sent emails to |
Hi, I was interested in this feature during an internship and I started to think about a way to implement it following your recommendations. What I did so far is a small program which can:
I still need to delete the users after each scan, and probably to run the 3rd point into a subprocess not to block the whole scan while checking for emails. Here is my question: Thank you, hope we can help ! |
Thanks for your detailed description and question. This issue is still relevant, but was assigned lower priority than other issues since it is not so important. On the other side, it is something interesting to work on as an intern since it involved various moving parts which need to work together. I believe you implemented something worth reviewing and potentially integrating into w3af. The only thing I dislike is the use of selenium + webdriver + firefox, since that is a new project requirement which might not be easy to install in all platforms; and gives low added value (at least in this scenario). Removing the users from the database after the w3af scan has finished is out of scope of w3af, but makes sense for specific scenarios. If you're interested I can review your code, just upload it to a gist.github.com and I'll take a look |
Alright ! Thanks a lot for suggesting to review my code. I will finish my internship soon, and I probably won't have the time to go over this part before I leave the company, but my colleague will continue my work. I will share to him all your advices and requirements. |
If you want to have the browser for the internal version of the plugin that will run in your company, that is totally fine. For the version that will be included in w3af I would recommend against it. w3af is mostly a point and shoot tool: people want to input the URL, go have a coffee and see the results. They don't expect to be asked any questions (such as solving a CAPTCHA) during the scan. |
One of the things that this software is missing is the analysis of the links that the target
site sends (for example) during the user registration process.
My idea is to integrate with restmail.net like this:
using REST API
https://github.com/mozilla/restmail.net
http://restmail.net/
The text was updated successfully, but these errors were encountered: