(dbms)
| 567 | # Comparison methods |
| 568 | @staticmethod |
| 569 | def isDbms(dbms): |
| 570 | if not kb.get("testMode") and all((Backend.getDbms(), Backend.getIdentifiedDbms())) and Backend.getDbms() != Backend.getIdentifiedDbms(): |
| 571 | singleTimeWarnMessage("identified ('%s') and fingerprinted ('%s') DBMSes differ. If you experience problems in enumeration phase please rerun with '--flush-session'" % (Backend.getIdentifiedDbms(), Backend.getDbms())) |
| 572 | return Backend.getIdentifiedDbms() == aliasToDbmsEnum(dbms) |
| 573 | |
| 574 | @staticmethod |
| 575 | def isFork(fork): |
no test coverage detected