-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwff.py
executable file
·39 lines (38 loc) · 1.06 KB
/
wff.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
#
# --------------------------------------------------
# Wireless Forensics Framework
# --------------------------------------------------
# Copyright (C) <2014> <Ap3x Pr3Dat0r (Nipun Jaswal)>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License
#
# WFF is Wireless Forensics Framework Developed For Penetration Testing and Forensics of Wireless Networks
#
#
# About Author :
#
# Founder :Ap3x Pr3Dat0r (Nipun Jaswal)
# Location : India
# Email : [email protected]
# Blog : www.nipunjaswal.com, www.nipunjaswal.info
import os
import sys
from interface import banner
from interface import forensic
banner.style()
def main():
option=raw_input('Wff>')
if option=="help" or option=="h":
banner.help()
main()
elif option=="forensics" or option=="f":
forensic.forensic_menu()
main()
elif option=="exit" or option=="e":
sys.exit(0)
else:
main()
if __name__ == "__main__":
main()