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

Commit 019803c

Browse files
committed
adds plugins options,improved features code,v0.6.7 and more
1 parent 92f79d1 commit 019803c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1769
-865
lines changed

3vilTwin-Attacker.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,18 @@
2222
from Core.Main import Initialize
2323
from Core.check import check_dependencies
2424
from Modules.utils import Refactor
25-
26-
def ExecRootApp():
27-
check_dependencies()
28-
root = QApplication(argv)
25+
def ExecRootApp(root):
2926
app = Initialize()
3027
app.setWindowIcon(QIcon('rsc/icon.ico'))
3128
app.center(),app.show()
3229
exit(root.exec_())
3330

3431
if __name__ == '__main__':
32+
check_dependencies()
33+
main = QApplication(argv)
3534
if not getuid() == 0:
36-
app2 = QApplication(argv)
3735
priv = frm_privelege()
3836
priv.setWindowIcon(QIcon('rsc/icon.ico'))
39-
priv.show(),app2.exec_()
37+
priv.show(),main.exec_()
4038
exit(Refactor.threadRoot(priv.Editpassword.text()))
41-
ExecRootApp()
39+
ExecRootApp(main)

CHANGELOG

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Version 0.6.7
2+
-------------
3+
- added Probe Request discovery mac Devices
4+
- added plugins options
5+
- added PopUpServer options
6+
- added Java Update Fake
7+
- code improvements
8+
- fixed small bugs
9+
* phishing error directory
10+
* fixed resolve host select adpter
11+
* fixed rules iptables redirect
12+
* fixed arp posion cache
13+
114
Version 0.6.4
215
-------------
316
- added support kali 2.0
@@ -7,7 +20,7 @@ Version 0.6.4
720
- fixed dhcp install
821

922
Version 0.6.3
10-
-----------
23+
-------------
1124
- Netcreds Plugin
1225
- New DHCP (dnsmasq)
1326
- New module DNS spoof

CONTRIBUTING.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## Contributing
2+
3+
You can help this project by reporting problems, suggestions, localizing it or contributing to the code.
4+
5+
### Report a problem or suggestion
6+
7+
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.
8+
A good bug report shouldn't leave others needing to chase you up for more
9+
information. Please try to be as detailed as possible in your report.
10+
11+
Please **do not** derail or troll issues. Keep the
12+
discussion on topic and respect the opinions of others.
13+
14+
## Pull requests
15+
16+
17+
- Fork the project
18+
- 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.
19+
- Perform a pull request in github's web interface.
20+
if it is a new Feature request, don't start the coding first. Remember to post an issue to discuss the new feature.
21+
22+
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.
23+
24+
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.
25+
26+
**IMPORTANT**: By submitting a patch, you agree to allow the project
27+
owners to license your work under the terms of the [MIT License](LICENSE).

0 commit comments

Comments
 (0)