This repository has been archived by the owner on Apr 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 720
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
232 changed files
with
30,981 additions
and
213 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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,173 @@ | ||
from Core.loaders.Stealth.PackagesUI import * | ||
from PyQt4.QtWebKit import QWebView | ||
|
||
""" | ||
Description: | ||
This program is a module for wifi-pumpkin.py. Report FIles Logger PDF or HTML | ||
Copyright: | ||
Copyright (C) 2015-2016 Marcos Nesster P0cl4bs Team | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/> | ||
""" | ||
|
||
class frm_ReportLogger(PumpkinModule): | ||
''' called report logger in files ''' | ||
def __init__(self,sessions,parent = None): | ||
super(frm_ReportLogger, self).__init__(parent) | ||
self.setWindowTitle('WiFi-Pumpkin - Report Logger') | ||
self.loadtheme(self.configure.XmlThemeSelected()) | ||
self.setGeometry(0,0,320,400) | ||
self.Main = QVBoxLayout() | ||
self.sessions = sessions | ||
self.center() | ||
self.GUI() | ||
|
||
def addcheckListView_loggerFIles(self,unchecked,key,enable=None,checked=None,session=''): | ||
# add in listview all logger files | ||
empty = Refactor.exportHtml(unchecked,sessionID=session)[key] | ||
for loggerfile in empty: | ||
item = QStandardItem(loggerfile) | ||
check = Qt.Checked if checked == True else Qt.Unchecked | ||
item.setCheckState(check) | ||
item.setEnabled(enable) | ||
item.setCheckable(True) | ||
self.model.appendRow(item) | ||
|
||
def get_all_items_Unchecked(self): | ||
# get all items desabled from row | ||
all_items_row = {} | ||
for index in range(self.model.rowCount()): | ||
item = self.model.item(index) | ||
if item.isCheckable() and item.checkState() == Qt.Unchecked: | ||
all_items_row[str(item.text())] = False | ||
return all_items_row | ||
|
||
def convertIt(self,printer): | ||
# generate file pdf | ||
self.ExportPDF.print_(printer) | ||
QMessageBox.information(self, 'WiFi Pumpkin Report PDF', 'file PDF has been generated with success.') | ||
|
||
def exportFilesSystem(self): | ||
# export HTML or pdf file | ||
all_unchecked = self.get_all_items_Unchecked() | ||
if not self.checkHTML.isChecked() and not self.checkPDF.isChecked(): | ||
return QMessageBox.warning(self, 'WiFi Pumpkin Options', | ||
'You have to select a <strong>option</strong> file type for export.') | ||
if len(all_unchecked.keys()) == 9: | ||
return QMessageBox.warning(self, 'WiFi Pumpkin empty session', | ||
'logger:ERROR Could not find log files.') | ||
|
||
sessions_activated = '' | ||
apname = self.configure.Settings.get_setting('accesspoint','APname') | ||
for key in self.sessions.keys(): | ||
if str(self.CB_Data_Logger.currentText()) == self.sessions[key]['started']: | ||
contents = Refactor.exportHtml(all_unchecked,key, | ||
[self.sessions[key]['started'],self.sessions[key]['stoped']],apname) | ||
sessions_activated = key | ||
break | ||
if sessions_activated == '': | ||
contents = Refactor.exportHtml(all_unchecked,sessions_activated) | ||
|
||
if self.checkHTML.isChecked(): | ||
filename = QFileDialog.getSaveFileNameAndFilter(self, | ||
'Save File Logger as HTML','report.html','HTML (*.html)') | ||
if len(filename[0]) != 0: | ||
with open(str(filename[0]),'w') as filehtml: | ||
filehtml.write(contents['HTML']),filehtml.close() | ||
QMessageBox.information(self, 'WiFi Pumpkin Report HTML', 'file has been saved with success.') | ||
|
||
elif self.checkPDF.isChecked(): | ||
filename = QFileDialog.getSaveFileNameAndFilter(self, | ||
'Save File Logger as PDF','report.pdf','PDF (*.pdf)') | ||
if len(filename[0]) != 0: | ||
self.ExportPDF.setHtml(contents['HTML']) | ||
printer = QPrinter() | ||
printer.setPageSize(QPrinter.A4) | ||
printer.setOutputFormat(QPrinter.PdfFormat) | ||
printer.setOutputFileName(filename[0]) | ||
self.convertIt(printer) | ||
|
||
@pyqtSlot(QModelIndex) | ||
def combo_clicked(self, session): | ||
# get activated logger files | ||
self.model.clear() | ||
sessions_activated = '' | ||
for key in self.sessions.keys(): | ||
if session == self.sessions[key]['started']: | ||
self.labelStart.setText(self.sessions[key]['started']) | ||
self.labelStop.setText(self.sessions[key]['stoped']) | ||
sessions_activated = key | ||
break | ||
all_unchecked = self.get_all_items_Unchecked() | ||
self.addcheckListView_loggerFIles(all_unchecked,'activated_Files',enable=True, | ||
checked=True,session=sessions_activated) | ||
self.addcheckListView_loggerFIles(all_unchecked,'empty_files',enable=False, | ||
checked=False,session=sessions_activated) | ||
|
||
def GUI(self): | ||
self.frm0 = QFormLayout() | ||
self.model = QStandardItemModel() | ||
self.viewlogger = QListView() | ||
self.widget = QWidget() | ||
self.layout = QVBoxLayout(self.widget) | ||
|
||
self.ExportPDF = QWebView() | ||
|
||
# check all files logger empty or round | ||
self.viewlogger.setModel(self.model) | ||
self.layout.addLayout(self.frm0) | ||
|
||
# group file type | ||
self.GroupBoxFile = QGroupBox() | ||
self.layoutGroupFile = QVBoxLayout() | ||
self.GroupBoxFile.setLayout(self.layoutGroupFile) | ||
self.GroupBoxFile.setTitle('Options:') | ||
self.checkHTML = QRadioButton('HTML') | ||
self.checkPDF = QRadioButton('PDF') | ||
self.layoutGroupFile.addWidget(self.checkHTML) | ||
self.layoutGroupFile.addWidget(self.checkPDF) | ||
|
||
# group informations | ||
self.GroupBoxINFO = QGroupBox() | ||
self.layoutGroupINFO = QFormLayout() | ||
self.GroupBoxINFO.setLayout(self.layoutGroupINFO) | ||
self.GroupBoxINFO.setTitle('Information:') | ||
self.labelStart = QLabel() | ||
self.labelStop = QLabel() | ||
self.layoutGroupINFO.addRow('started AP at:',self.labelStart) | ||
self.layoutGroupINFO.addRow('stoped AP at:',self.labelStop) | ||
|
||
# get all session data add combobox | ||
self.CB_Data_Logger = QComboBox(self) | ||
all_sessions = [] | ||
for key in self.sessions.keys(): | ||
all_sessions.append(self.sessions[key]['started']) | ||
all_sessions.append('select All logger file...') | ||
self.CB_Data_Logger.addItems(all_sessions) | ||
self.connect(self.CB_Data_Logger, SIGNAL('activated(QString)'), self.combo_clicked) | ||
index = self.CB_Data_Logger.findText(all_sessions[len(all_sessions)-2], Qt.MatchFixedString) | ||
self.CB_Data_Logger.setCurrentIndex(index) | ||
self.combo_clicked(self.CB_Data_Logger.currentText()) | ||
|
||
self.btnSave = QPushButton('Export') | ||
self.btnSave.clicked.connect(self.exportFilesSystem) | ||
|
||
self.frm0.addRow('Session:',self.CB_Data_Logger) | ||
self.frm0.addRow(self.GroupBoxINFO) | ||
self.frm0.addRow(self.viewlogger) | ||
self.frm0.addRow(self.GroupBoxFile) | ||
self.frm0.addRow(self.btnSave) | ||
|
||
self.Main.addWidget(self.widget) | ||
self.setLayout(self.Main) |
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.