Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ecthros committed Nov 16, 2016
1 parent 6075871 commit a6cf170
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def print_help(self, lst):
def do_help(self, args):
print "\nAvailable commands are: "
print "======================="
self.print_help(["list", "lists currently loaded targets, available capabilities, and enabled modules.", "quit", "quits","use <capability>", "engages a capability for use. Run \"list\" or \"list capabilities\" for a full list of capabilities.", "network", "shows all computers on the network", "discover", "use arp to discover all computers on the network and write to database"])
self.print_help(["list", "lists currently loaded targets, available capabilities, and enabled modules.", "quit", "quits","use <capability>", "engages a capability for use. Run \"list\" or \"list capabilities\" for a full list of capabilities.", "network", "shows all computers on the network", "discover", "use arp to discover all computers on the network and write to database", "wifi", "finds all wifi networks", "interface", "change interfaces", "promisc <enable/disable>", "enable or disable promiscuous mode", ])

def do_quit(self, args):
self.quit()
Expand Down Expand Up @@ -175,4 +175,4 @@ def main():
if os.getuid() != 0:
print BAD + "Please run me as root!"
sys.exit()
main()
main()
2 changes: 1 addition & 1 deletion core.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def promisc(self, enable=True):
def get_categories(self):
return ["auxiliary", "dos", "arp", "enumeration", "sniff", "exploitation", "scan"]

def beacon(pkt):
def beacon(self, pkt):
ap_list = []
if pkt.haslayer(Dot11):
if pkt.type == 0 and pkt.subtype == 8:
Expand Down
Binary file modified pinacolada-website/pinacolada_website/__init__.pyc
Binary file not shown.
Binary file modified pinacolada-website/pinacolada_website/views/__init__.pyc
Binary file not shown.
Binary file modified pinacolada-website/pinacolada_website/views/index.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import os

os.system("pip install netifaces scapy netaddr pexpect colorama")
os.system("pip install netifaces scapy netaddr pexpect colorama python-wifi")

0 comments on commit a6cf170

Please sign in to comment.