Skip to content
This repository has been archived by the owner on Apr 19, 2020. It is now read-only.

Commit

Permalink
adds plugins options,improved features code,v0.6.7 and more
Browse files Browse the repository at this point in the history
  • Loading branch information
mh4x0f committed Oct 8, 2015
1 parent 92f79d1 commit 019803c
Show file tree
Hide file tree
Showing 49 changed files with 1,769 additions and 865 deletions.
12 changes: 5 additions & 7 deletions 3vilTwin-Attacker.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,18 @@
from Core.Main import Initialize
from Core.check import check_dependencies
from Modules.utils import Refactor

def ExecRootApp():
check_dependencies()
root = QApplication(argv)
def ExecRootApp(root):
app = Initialize()
app.setWindowIcon(QIcon('rsc/icon.ico'))
app.center(),app.show()
exit(root.exec_())

if __name__ == '__main__':
check_dependencies()
main = QApplication(argv)
if not getuid() == 0:
app2 = QApplication(argv)
priv = frm_privelege()
priv.setWindowIcon(QIcon('rsc/icon.ico'))
priv.show(),app2.exec_()
priv.show(),main.exec_()
exit(Refactor.threadRoot(priv.Editpassword.text()))
ExecRootApp()
ExecRootApp(main)
15 changes: 14 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Version 0.6.7
-------------
- added Probe Request discovery mac Devices
- added plugins options
- added PopUpServer options
- added Java Update Fake
- code improvements
- fixed small bugs
* phishing error directory
* fixed resolve host select adpter
* fixed rules iptables redirect
* fixed arp posion cache

Version 0.6.4
-------------
- added support kali 2.0
Expand All @@ -7,7 +20,7 @@ Version 0.6.4
- fixed dhcp install

Version 0.6.3
-----------
-------------
- Netcreds Plugin
- New DHCP (dnsmasq)
- New module DNS spoof
Expand Down
27 changes: 27 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## Contributing

You can help this project by reporting problems, suggestions, localizing it or contributing to the code.

### Report a problem or suggestion

Go to our [issue tracker](https://github.com/P0cL4bs/3vilTwinAttacker/issues) and check if your problem/suggestion is already reported. If not, create a new issue with a descriptive title and detail your suggestion or steps to reproduce the problem.
A good bug report shouldn't leave others needing to chase you up for more
information. Please try to be as detailed as possible in your report.

Please **do not** derail or troll issues. Keep the
discussion on topic and respect the opinions of others.

## Pull requests


- Fork the project
- Make one or more well commented and clean commits to the repository. You can make a new branch here if you are modifying more than one part or feature.
- Perform a pull request in github's web interface.
if it is a new Feature request, don't start the coding first. Remember to post an issue to discuss the new feature.

If the feature is well discuss and there are some +1 or the project owner approved it, assign the issue to yourself, then do the steps above.

Some projects won't use the pull request system. Check with the author or mailing list on the best way to get your code back into the project.

**IMPORTANT**: By submitting a patch, you agree to allow the project
owners to license your work under the terms of the [MIT License](LICENSE).
Loading

0 comments on commit 019803c

Please sign in to comment.