INNER CODE UNIT · Python
counter
volkandindar/agartha · Agartha.py:651
counter = counter + 1
listLFI = list(set(listLFI))
listLFI.sort(reverse=True)
self._tabDictResultDisplay.setText(''.join(map(str, listLFI)))
clipboard = Toolkit.getDefaultToolkit().getSystemClipboard()
clipboard.setContents(StringSelection(self._tabDictResultDisplay.getText()), None)
self._lblStatusLabel.setText('Payload list for "' + self._txtTargetPath.text + '" path returns with '+ str(len(listLFI)) + ' result, and they have been copied to your clipboard. Please make sure payload encoding is disabled.')
return
def funcSQLi(self):
self._lblStatusLabel.setForeground (Color.black)
if self._cbTimeBased.isSelected() or self._cbStackedSQL.isSelected() or self._cbUnionBased.isSelected():
if not self._cbMysqlBased.isSelected() and not self._cbMssqlBased.isSelected() and not self._cbPostgreBased.isSelected() and not self._cbOracleBased.isSelected():
self._lblStatusLabel.setForeground (Color.red)
self._lblStatusLabel.setText('Please pick a database!')
self._tabDictResultDisplay.setText('')
return