-
Notifications
You must be signed in to change notification settings - Fork 921
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Notifications: Updating objets on faraday now results in a beautiful notification in the QT ui. Performance: Enhacing performance when lots of workspaces are available. We now load each workspace whe it's needed instead of loading ahead the full workspace list. UI: Workspace split, now you can select the workspace to visualize. We are now using bootstrap. API: New operations on the Rest API (this is just for the following UI modifications). Vulnerability update and delete operations.
- Loading branch information
Showing
51 changed files
with
1,972 additions
and
622 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
''' | ||
Faraday Penetration Test IDE - Community Version | ||
Copyright (C) 2013 Infobyte LLC (http://www.infobytesec.com/) | ||
See the file 'doc/LICENSE' for the license information | ||
''' | ||
|
||
for host in api.__model_controller.getAllHosts(): | ||
if len(host.getAllInterfaces()) > 1: | ||
print host.name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
''' | ||
Faraday Penetration Test IDE - Community Version | ||
Copyright (C) 2013 Infobyte LLC (http://www.infobytesec.com/) | ||
See the file 'doc/LICENSE' for the license information | ||
''' | ||
webs={} | ||
for host in api.__model_controller.getAllHosts(): | ||
|
||
for i in host.getAllInterfaces(): | ||
for s in i.getAllServices(): | ||
for p in s.getPorts(): | ||
if str(p) == '23': | ||
webs[host.name]=1 | ||
|
||
for k,v in webs.iteritems(): | ||
print "hydra -l '' -p 'telecom' -w 10 telnet://"+k+":23" | ||
|
||
|
||
|
||
|
||
|
||
# 200.61.47.65 | ||
# 200.45.69.29 | ||
# 200.61.47.217 | ||
# 200.61.47.121 | ||
# 200.45.69.17 | ||
# 200.61.47.129 | ||
# 200.61.47.113 | ||
# 200.61.47.9 | ||
# 190.221.164.65 | ||
# 200.61.47.146 | ||
# 186.153.146.227 | ||
# 200.61.47.177 | ||
# 200.61.47.17 | ||
# 200.61.47.33 | ||
# 200.45.69.30 | ||
# 200.61.47.179 | ||
# 200.61.47.233 | ||
# 200.61.47.41 | ||
# 200.61.47.221 | ||
# 200.61.47.220 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
''' | ||
Faraday Penetration Test IDE - Community Version | ||
Copyright (C) 2013 Infobyte LLC (http://www.infobytesec.com/) | ||
See the file 'doc/LICENSE' for the license information | ||
''' | ||
webs={} | ||
for host in api.__model_controller.getAllHosts(): | ||
|
||
for i in host.getAllInterfaces(): | ||
for s in i.getAllServices(): | ||
for p in s.getPorts(): | ||
if str(p) == '5900': | ||
webs[host.name]=1 | ||
|
||
for k,v in webs.iteritems(): | ||
print k | ||
# print "hydra -l '' -p 'telecom' -w 10 telnet://"+k+":23" | ||
|
||
|
||
|
||
|
||
|
||
# 200.61.47.65 | ||
# 200.45.69.29 | ||
# 200.61.47.217 | ||
# 200.61.47.121 | ||
# 200.45.69.17 | ||
# 200.61.47.129 | ||
# 200.61.47.113 | ||
# 200.61.47.9 | ||
# 190.221.164.65 | ||
# 200.61.47.146 | ||
# 186.153.146.227 | ||
# 200.61.47.177 | ||
# 200.61.47.17 | ||
# 200.61.47.33 | ||
# 200.45.69.30 | ||
# 200.61.47.179 | ||
# 200.61.47.233 | ||
# 200.61.47.41 | ||
# 200.61.47.221 | ||
# 200.61.47.220 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
''' | ||
Faraday Penetration Test IDE - Community Version | ||
Copyright (C) 2013 Infobyte LLC (http://www.infobytesec.com/) | ||
See the file 'doc/LICENSE' for the license information | ||
''' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
''' | ||
Faraday Penetration Test IDE - Community Version | ||
Copyright (C) 2013 Infobyte LLC (http://www.infobytesec.com/) | ||
See the file 'doc/LICENSE' for the license information | ||
''' | ||
|
||
import model.guiapi | ||
|
||
|
||
class ChangeController(object): | ||
def __init__(self): | ||
self.workspace = None | ||
|
||
def setWorkspace(self, workspace): | ||
self.workspace = workspace | ||
|
||
def loadChanges(self, changes): | ||
# first, we notify the changes | ||
for change in changes: | ||
model.guiapi.notification_center.changeFromInstance(change) | ||
# then we reload the workspace | ||
self.workspace.load() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.